/**
 * PGRI Custom CSS
 * Pairs with Tailwind CDN loaded in layouts/app.blade.php
 */

/* Marquee animation */
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee {
    animation: marquee 30s linear infinite;
}

/* Base resets */
*      { box-sizing: border-box; }
body   { margin: 0; padding: 0; }
img    { max-width: 100%; height: auto; }

/* Scroll margin for deep-link anchors (sticky nav offset) */
.scroll-mt-40 { scroll-margin-top: 10rem; }

/* Muted foreground helper */
.text-muted-foreground { color: #64748b; }
.border-input          { border-color: #e2e8f0; }

/* Prose reset */
.prose h2 {
    font-size: 1.875rem;
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}
.prose p, .prose ul {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.prose ul {
    list-style: disc;
    padding-left: 1.5rem;
}
