/* Donald Voetberg — Brand Hub | MSUB #15356D, #F0B310 */
:root {
    --msub-blue: #15356D;
    --msub-blue-hover: #1a4085;
    --msub-gold: #F0B310;
    --msub-gold-hover: #f5c420;
    --bg-dark: #0d0d0d;
    --text-light: #e0e8f0;
    --text-muted: #a8c0e8;
    --section-padding: 58px;
}

* { box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 56px;
}

/* ----- Global Sticky Header (shrink 30% on scroll) ----- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 56px;
    background: rgba(13, 13, 13, 0.95);
    border-bottom: 2px solid var(--msub-gold);
    backdrop-filter: blur(10px);
    transition: height 0.25s ease, padding 0.25s ease;
}
.site-header.scrolled {
    height: 40px;
    padding: 0 16px;
}
.site-header.scrolled .site-logo { font-size: 0.95rem; }
.site-header.scrolled .header-cta { padding: 6px 14px; font-size: 0.75rem; }
.header-latest {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--msub-gold);
    color: var(--msub-blue);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, padding 0.25s ease, font-size 0.25s ease;
}
.header-latest:hover {
    background: var(--msub-gold-hover);
}
.header-latest i { font-size: 0.85rem; }
.site-header.scrolled .header-latest { padding: 4px 12px; font-size: 0.7rem; }
@media (max-width: 900px) {
    .header-latest { display: none; }
}
.site-logo {
    font-weight: 800;
    font-size: 1.1rem;
    transition: font-size 0.25s ease;
    color: var(--msub-gold);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.site-logo:hover { color: var(--msub-gold-hover); }
.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.site-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.site-nav a:hover {
    color: var(--msub-gold);
    background: rgba(240, 179, 16, 0.1);
}
.header-cta {
    display: inline-block;
    background: var(--msub-gold);
    color: var(--msub-blue);
    padding: 8px 18px;
    transition: background 0.2s, transform 0.2s, padding 0.25s ease, font-size 0.25s ease;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s, transform 0.2s;
}
.header-cta:hover {
    background: var(--msub-gold-hover);
    transform: scale(1.03);
}

/* Hamburger (mobile) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--msub-gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}
@media (max-width: 768px) {
    .site-nav {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(13, 13, 13, 0.98);
        padding: 16px;
        border-bottom: 2px solid var(--msub-gold);
        transform: translateY(-100%);
        visibility: hidden;
        transition: transform 0.3s, visibility 0.3s;
    }
    .site-nav.open {
        transform: translateY(0);
        visibility: visible;
    }
    .site-nav a { padding: 12px; width: 100%; text-align: center; }
    .nav-toggle { display: block; }
    .header-cta { margin-left: auto; margin-right: 8px; }
}

/* ----- Site-wide Footer (socials small & unobtrusive) ----- */
.site-footer {
    margin-top: 58px;
    padding: 40px 20px 28px;
    background: var(--msub-blue);
    border-top: 3px solid var(--msub-gold);
    text-align: center;
}
/* ----- Footer social: flexbox + brand buttons ----- */
.site-footer .footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.footer-follow {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 12px;
    text-align: center;
}
.site-footer .footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.site-footer .footer-social-btn:hover {
    color: #fff;
    transform: scale(1.12);
}
.site-footer .footer-social-btn.btn-instagram {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}
.site-footer .footer-social-btn.btn-tiktok {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.site-footer .footer-social-btn.btn-x {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.site-footer .footer-social-btn.btn-youtube {
    background: #FF0000;
}
.site-footer .footer-social-btn.btn-strava {
    background: #FC4C02;
}
.site-footer .footer-social-btn.btn-reddit {
    background: #FF4500;
}
.site-footer .footer-contact {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin-top: 16px;
}
.site-footer .footer-contact a {
    color: var(--msub-gold);
    font-weight: 700;
    text-decoration: none;
}
.site-footer .footer-contact a:hover { text-decoration: underline; }
.site-footer .footer-tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
}

/* ----- Hero Video (80% desktop, 100% mobile) ----- */
.hero-video-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}
.hero-video-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-width: 769px) {
    .hero-video-wrapper {
        width: 80%;
        max-width: 640px;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }
}

/* ----- Sunday Journal CTA Bar (~100px) ----- */
.journal-cta-bar {
    background: var(--msub-blue);
    padding: 0 20px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 2px solid var(--msub-gold);
    border-bottom: 2px solid var(--msub-gold);
}
.journal-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 24px;
    max-width: 720px;
    width: 100%;
}
.journal-cta-teaser {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 12px 0 0;
}
.journal-cta-teaser-sub {
    margin-top: 4px;
    font-size: 1rem;
    font-weight: 500;
}
.journal-cta-teaser a {
    color: var(--msub-gold);
    font-weight: 600;
    text-decoration: none;
}
.journal-cta-teaser a:hover { text-decoration: underline; }
.journal-cta-text {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}
.journal-cta-btn {
    display: inline-block;
    background: var(--msub-gold);
    color: var(--msub-blue) !important;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s, transform 0.2s;
}
.journal-cta-btn:hover {
    background: var(--msub-gold-hover);
    transform: scale(1.03);
}

/* ----- Identity Block (above pillars) ----- */
.identity-block {
    padding: var(--section-padding) 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.identity-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--msub-gold);
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}
.identity-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0 0 16px;
}
.identity-subtitle .sub-spash { color: #ff6b7a; }
.identity-subtitle .sub-msub-gold { color: var(--msub-gold); }
.identity-subtitle .sub-msub-blue { color: #6ba3e8; }
.identity-subtitle .sub-msub-link {
    color: #6ba3e8;
    text-decoration: none;
}
.identity-subtitle .sub-msub-link:hover { text-decoration: underline; }
.identity-cta {
    display: inline-block;
    background: var(--msub-gold);
    color: var(--msub-blue);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    transition: background 0.2s, transform 0.2s;
}
.identity-cta:hover {
    background: var(--msub-gold-hover);
    transform: scale(1.02);
}
.identity-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}
.identity-latest {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    background: var(--msub-gold);
    color: var(--msub-blue);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.identity-latest:hover {
    background: var(--msub-gold-hover);
    transform: scale(1.04);
}
.identity-latest i { font-size: 0.95rem; }

/* ----- 3 Pillars (Data Sheet feel) ----- */
.pillars-section {
    padding: var(--section-padding) 20px;
    max-width: 960px;
    margin: 0 auto;
}
.pillars-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--msub-gold);
    letter-spacing: -0.02em;
    margin: 0 0 32px;
    text-align: center;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.pillar-card {
    background: rgba(21, 53, 109, 0.25);
    border: 1px solid rgba(240, 179, 16, 0.25);
    border-radius: 12px;
    padding: 24px;
}
.pillar-heading {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--msub-gold);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.pillar-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0 0 16px;
}
.pillar-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--msub-gold);
    text-decoration: none;
    transition: color 0.2s;
}
.pillar-link:hover { color: var(--msub-gold-hover); }
.pillar-coming-soon {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    font-style: italic;
}
@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Legacy hero/cta (for subpages) ----- */
.hero-cta {
    display: inline-block;
    background: var(--msub-gold);
    color: var(--msub-blue);
    padding: 14px 28px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.hero-cta:hover {
    background: var(--msub-gold-hover);
    transform: scale(1.05);
}

/* ----- Featured Video (9:16 vertical) ----- */
.featured-video-section {
    padding: var(--section-padding) 20px;
    text-align: center;
    background: rgba(13, 13, 13, 0.6);
}
.featured-video-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--msub-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 24px;
}
.featured-video-wrapper {
    aspect-ratio: 9 / 16;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.featured-video-compact {
    padding: 32px 20px;
}
.featured-video-compact .featured-video-wrapper {
    max-width: 300px;
    width: 70%;
}
.featured-video-compact .featured-video-title {
    margin-bottom: 16px;
}

/* Video tile (clickable card for YouTube links) */
.video-tile {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 520px;
    margin: 0 auto;
    padding: 16px 24px;
    background: rgba(21, 53, 109, 0.35);
    border: 1px solid rgba(240, 179, 16, 0.25);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-light);
    transition: border-color 0.2s, transform 0.2s;
}
.video-tile:hover {
    border-color: rgba(240, 179, 16, 0.5);
    transform: translateY(-2px);
}
.video-tile-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 0, 0, 0.15);
    color: #ff4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.video-tile-body { flex: 1; min-width: 0; }
.video-tile-label {
    display: block;
    font-size: 0.7rem;
    color: #8a9fb8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.video-tile-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--msub-gold);
}
.video-tile:hover .video-tile-title { color: var(--msub-gold-hover); }
.video-tile-arrow {
    color: #8a9fb8;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.video-tile:hover .video-tile-arrow { color: var(--msub-gold); }

.featured-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

/* ----- Latest Video (YouTube Shorts link) ----- */
.latest-video-section {
    padding: 24px 20px;
    text-align: center;
    background: rgba(13, 13, 13, 0.6);
}
.latest-video-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--msub-gold);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid var(--msub-gold);
    border-radius: 24px;
    transition: background 0.2s, color 0.2s;
}
.latest-video-link:hover {
    background: var(--msub-gold);
    color: var(--msub-blue);
}
.latest-video-link i { font-size: 1.2rem; }

/* ----- Page content wrapper ----- */
.page-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 20px 48px;
}

/* ----- Section headings ----- */
.section-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--msub-gold);
    margin: 0 0 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ----- What's Happening (condensed) ----- */
.events-section { margin-bottom: 32px; }
.events-list { list-style: none; margin: 0; padding: 0; }
.events-list li { margin-bottom: 8px; }
.events-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.events-list a:hover { color: var(--msub-gold); }
.events-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }
.schedule-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--msub-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}
.schedule-link:hover { text-decoration: underline; }

/* ----- In The News (homepage) ----- */
.news-section {
    background: var(--msub-blue);
    padding: var(--section-padding) 20px 68px;
}
.news-section-inner {
    max-width: 960px;
    margin: 0 auto;
}
.news-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--msub-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 24px;
    text-align: center;
}
.news-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.news-card {
    display: flex;
    flex-direction: column;
    background: rgba(13, 13, 13, 0.4);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: var(--text-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 140px;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
.news-card .news-date {
    font-size: 0.7rem;
    color: #8a9fb8;
    font-variant-numeric: tabular-nums;
    margin-bottom: 6px;
    order: 0;
}
.news-card .news-source {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--msub-gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
    order: 1;
}
.news-card .news-headline {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-light);
    order: 2;
    flex: 1;
}
.news-card:hover .news-headline { color: #fff; }

@media (max-width: 768px) {
    .news-cards {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .news-card {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: start;
    }
}

/* ----- Recent Posts ----- */
.recent-posts-section {
    background: var(--bg-dark);
    padding: var(--section-padding) 20px 40px;
    border-bottom: 1px solid rgba(240, 179, 16, 0.15);
}
.recent-posts-inner {
    max-width: 960px;
    margin: 0 auto;
}
.recent-posts-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--msub-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 24px;
    text-align: center;
}
.recent-posts-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.recent-post-card {
    display: flex;
    flex-direction: column;
    background: rgba(21, 53, 109, 0.3);
    border: 1px solid rgba(240, 179, 16, 0.2);
    border-radius: 10px;
    padding: 14px 16px;
    text-decoration: none;
    color: var(--text-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.recent-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    border-color: rgba(240, 179, 16, 0.45);
}
.recent-post-date {
    font-size: 0.68rem;
    color: #8a9fb8;
    font-variant-numeric: tabular-nums;
    margin-bottom: 4px;
}
.recent-post-platform {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--msub-gold);
    letter-spacing: 0.04em;
    margin-bottom: 7px;
}
.recent-post-platform i {
    margin-right: 4px;
}
/* Clickable platform row — brand-colored icons + gold labels (archive + index) */
.recent-post-platform-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 8px;
}
.recent-post-pf-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--msub-gold);
    border-radius: 4px;
    transition: opacity 0.15s ease, color 0.15s ease;
}
.recent-post-pf-link:hover {
    opacity: 0.92;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.recent-post-pf-link:focus-visible {
    outline: 2px solid var(--msub-gold);
    outline-offset: 2px;
}
.recent-post-pf-link i {
    font-size: 1rem;
    line-height: 1;
}
.recent-post-pf-label {
    color: var(--msub-gold);
}
.recent-post-pf-link--youtube i {
    color: #ff0033;
}
.recent-post-pf-link--instagram i {
    color: #e4405f;
}
.recent-post-pf-link--tiktok i {
    color: #25f4ee;
}
.recent-post-pf-link--x i {
    color: #e7e9ea;
}
div.recent-post-card {
    cursor: default;
}
.recent-post-title {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-light);
    flex: 1;
}
.recent-post-card:hover .recent-post-title { color: #fff; }
.recent-post-card-dual {
    cursor: default;
}
.recent-post-card-dual .recent-post-also a {
    color: var(--msub-gold);
    font-weight: 600;
    text-decoration: none;
}
.recent-post-card-dual .recent-post-also a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}
.recent-post-card-dual .recent-post-also-sep {
    color: #6b7d94;
    font-weight: 400;
}
.recent-post-also {
    font-size: 0.68rem;
    color: #8a9fb8;
    margin-top: 8px;
}
.recent-post-also i {
    margin-left: 4px;
    font-size: 0.72rem;
}
.recent-posts-archive-note {
    text-align: center;
    font-size: 0.88rem;
    color: #8a9fb8;
    line-height: 1.5;
    margin: 28px 0 0;
    max-width: 28em;
    margin-left: auto;
    margin-right: auto;
}
.recent-posts-archive-note a {
    color: var(--msub-gold);
    font-weight: 600;
    text-decoration: none;
}
.recent-posts-archive-note a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.archive-page-media {
    border-top: 1px solid rgba(240, 179, 16, 0.2);
}
.recent-posts-archive-note.archive-media-lead {
    margin-top: 0;
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .recent-posts-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .recent-posts-cards {
        grid-template-columns: 1fr;
    }
}

/* ----- Running Stats ----- */
.stats-section { margin-bottom: 32px; }
.stats-list { list-style: none; margin: 0; padding: 0; }
.stats-list li { margin-bottom: 8px; }
.stats-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.stats-list a:hover { color: var(--msub-gold); }

/* ----- Sub-page layout ----- */
.subpage-hero {
    padding: 40px 20px 32px;
    text-align: center;
    background: linear-gradient(180deg, rgba(21,53,109,0.3) 0%, transparent 100%);
    border-bottom: 1px solid rgba(240, 179, 16, 0.3);
}
.subpage-hero h1 { color: var(--msub-gold); margin-bottom: 8px; }
.subpage-hero p { color: var(--text-muted); max-width: 480px; margin: 0 auto; }
