/* ── Base ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Source Sans 3', system-ui, sans-serif;
}

/* ── Marquee Animation ──────────────────────────────────────────────────── */
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee {
    animation: marquee 30s linear infinite;
    display: inline-flex;
    white-space: nowrap;
}
.animate-marquee:hover { animation-play-state: paused; }

/* ── Smooth Scrolling Offset ────────────────────────────────────────────── */
html { scroll-padding-top: 80px; }

/* ── Sticky jump-nav active link ────────────────────────────────────────── */
.jump-nav a.active {
    background: #1a3a6b;
    color: #fff;
}

/* ── Table responsive wrapper ───────────────────────────────────────────── */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── Line clamp ──────────────────────────────────────────────────────────── */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── File input custom style ────────────────────────────────────────────── */
input[type="file"]::-webkit-file-upload-button {
    cursor: pointer;
}

/* ── Print styles ───────────────────────────────────────────────────────── */
@media print {
    header, footer, nav, .no-print { display: none !important; }
    body { font-size: 12pt; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; }
}

/* ── Focus ring ─────────────────────────────────────────────────────────── */
:focus-visible {
    outline: 2px solid #2a5298;
    outline-offset: 2px;
}

/* ── Scrollbar ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ── Section spacing ────────────────────────────────────────────────────── */
.section-title { margin-bottom: 1rem; }

/* ── Card hover ─────────────────────────────────────────────────────────── */
.hover-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

/* ── Prose ──────────────────────────────────────────────────────────────── */
.prose p { margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.25rem; }
