/* ============================================================
   TEAM BOOGEYMAN V4 — Cadillac F1 Inspired Design System
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
    font-family: 'Barlow', sans-serif;
    background: #080c12;
    color: #fff;
    overflow-x: hidden;
    animation: fadeIn 0.2s ease forwards;
}

:root {
    --pink:   #FF00B4;
    --cyan:   #33F7FF;
    --dark:   #080c12;
    --dark2:  #0d1018;
    --dark3:  #12161f;
    --border: rgba(255,255,255,0.1);
    --muted:  rgba(255,255,255,0.5);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.0;
    letter-spacing: 0.01em;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.container--wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ===== NAVIGATION — split layout: links | logo | links ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: background 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease, border-color 0.4s ease;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.nav-right { justify-content: flex-end; }

.nav-left a, .nav-right a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    padding: 0.4rem 1rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-left a:hover, .nav-right a:hover { color: #fff; }

.nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.nav-cta-btn {
    background: var(--pink) !important;
    color: #fff !important;
    padding: 0.45rem 1.2rem !important;
    margin-left: 0.75rem !important;
}

.nav-cta-btn:hover { opacity: 0.85; }

/* Mobile nav */
.nav-mobile { display: none; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}
.hamburger span {
    width: 22px; height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px,7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* ===== HERO ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(8,12,18,0.55) 0%, rgba(8,12,18,0.15) 40%, rgba(8,12,18,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 1.5rem;
    display: block;
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 8.5rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.hero h2 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75rem 2rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover { background: #e0009e; }
.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: #fff; }
.btn-gold-outline {
    background: transparent;
    color: #C3A84B;
    border: 1px solid #C3A84B;
}
.btn-gold-outline:hover { background: #C3A84B; color: #080c12; }
.btn-blue { background: #1B6AFF; color: #fff; }
.btn-blue:hover { background: #0f57e0; }

/* ===== IMAGE STRIP ===== */
.image-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background: #000;
}

.image-strip-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.image-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.85);
}

.image-strip-item:hover img {
    transform: scale(1.06);
    filter: brightness(1);
}

/* ===== NEXT RACE / COUNTDOWN ===== */
.race-section {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.race-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.race-info {
    padding: 4rem 3rem 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
}

.race-kicker {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.75rem;
}

.race-name {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.0;
    margin-bottom: 0.5rem;
}

.race-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
}

.countdown-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
}

.countdown-block { text-align: center; }

.countdown-num {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    color: #fff;
}

.countdown-sep {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 0.3rem;
    align-self: flex-end;
}

.countdown-lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-top: 0.3rem;
}

.race-img {
    position: relative;
    overflow: hidden;
}

.race-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===== STATEMENT SECTION ===== */
.statement-section {
    position: relative;
    padding: 10rem 0;
    text-align: center;
    background: url('dewey-and-bogeyman-blog-2_1800x.webp') center/cover no-repeat;
    overflow: hidden;
}
.statement-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8,12,18,0.78);
}
.statement-section .container {
    position: relative;
    z-index: 1;
}

.statement-section h2 {
    font-size: clamp(2.5rem, 7vw, 6rem);
    line-height: 1.0;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.statement-section h2 em {
    font-style: normal;
    color: var(--pink);
}

.statement-section p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

/* ===== CHAPTER / STORY SECTION ===== */
.chapter-section {
    background: var(--dark2);
    padding: 7rem 0;
    border-top: 1px solid var(--border);
}

.chapter-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 1rem;
}

.chapter-section h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.chapter-section h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--muted);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 580px;
}

.chapter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    margin-bottom: 4rem;
}

.chapter-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.chapter-grid img:hover { filter: brightness(1); }

.chapter-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 4rem;
}

.chapter-stat {
    background: var(--dark2);
    padding: 2.5rem 2rem;
    text-align: center;
}

.chapter-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: block;
}

.chapter-stat-lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.5rem;
    display: block;
}

/* ===== DRIVER / TEAM PROFILES ===== */
.drivers-section {
    padding: 7rem 0 0;
    border-top: 1px solid var(--border);
}

.drivers-header {
    margin-bottom: 5rem;
}

.drivers-header h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 0.75rem;
}

.drivers-header h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
    color: var(--muted);
    letter-spacing: 0.02em;
    line-height: 1.6;
    max-width: 500px;
}

.driver-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--border);
}

.driver-card {
    position: relative;
    overflow: hidden;
    background: var(--dark2);
}

.driver-card + .driver-card {
    border-left: 1px solid var(--border);
}

.driver-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.driver-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
    filter: grayscale(10%);
}

.driver-card:hover .driver-img-wrap img {
    transform: scale(1.03);
}

.driver-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(8,12,18,0.98) 0%, rgba(8,12,18,0.6) 50%, transparent 100%);
    padding: 3rem 2.5rem 2.5rem;
}

.driver-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-top: 1.5rem;
}

.driver-stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 0.2rem;
}

.driver-stat-value {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    display: block;
}

.driver-name {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.0;
    margin-bottom: 0.25rem;
}

.driver-role {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 1rem;
    display: block;
}

.driver-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-top: 0.75rem;
    transition: color 0.2s ease;
}
.driver-instagram:hover { color: var(--pink); }
.driver-instagram img { width: 14px; height: 14px; opacity: 0.6; }

/* ===== LATEST NEWS ===== */
.news-section {
    padding: 7rem 0;
    background: var(--dark);
    border-top: 1px solid var(--border);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.news-card {
    background: var(--dark2);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background 0.2s ease;
}

.news-card:hover { background: var(--dark3); }

.news-card-img-wrap {
    overflow: hidden;
    position: relative;
}

.news-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-img { transform: scale(1.04); }

.news-card-date {
    position: absolute;
    top: 0; left: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--dark);
    color: var(--muted);
    padding: 0.3rem 0.75rem;
}

.news-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-card-body h3 {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    line-height: 1.35;
    color: #fff;
    transition: color 0.2s ease;
}

.news-card:hover .news-card-body h3 { color: var(--pink); }

.news-card-body p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ===== PARTNERS ===== */
.partners-section {
    padding: 6rem 0;
    background: var(--dark2);
    border-top: 1px solid var(--border);
}

.partners-section h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.partners-section > .container > p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 3.5rem;
    letter-spacing: 0.03em;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border);
}

.partner-cell {
    background: var(--dark2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    gap: 0.75rem;
    transition: background 0.2s ease;
    text-decoration: none;
}

.partner-cell:hover { background: var(--dark3); }

.partner-cell img {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0.6) grayscale(0.2);
    transition: filter 0.2s ease;
}

.partner-cell:hover img { filter: brightness(1) grayscale(0); }

.partner-cell span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    text-align: center;
}

/* ===== FOOTER ===== */
footer {
    background: #05070e;
    border-top: 1px solid var(--border);
}

.footer-car {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 0 auto;
    opacity: 0.18;
    padding: 3rem 2rem 0;
}

.footer-tagline {
    text-align: center;
    padding: 1rem 0 3rem;
}

.footer-tagline p {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.12);
    line-height: 2;
}

.footer-main {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand img { height: 32px; margin-bottom: 1rem; display: block; }

.footer-brand p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    max-width: 240px;
}

.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col ul a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

.footer-col ul a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.06em;
}

/* ===== SCROLL REVEAL ===== */
.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== UTILITY CLASSES (inner pages) ===== */
.section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C3A84B;
    display: block;
    margin-bottom: 0.5rem;
}
.section-heading {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

/* ===== NAV ACTIVE STATE ===== */
.nav-active {
    color: #fff !important;
    opacity: 1 !important;
    position: relative;
}
.nav-active::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--pink);
}

/* ===== NAV SCROLL EFFECT ===== */
#mainNav.scrolled {
    background: rgba(8,12,18,0.80);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .chapter-grid { grid-template-columns: 1fr 1fr; }
    .chapter-grid img:last-child { display: none; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    /* Nav */
    .nav-inner { grid-template-columns: 1fr auto; }
    .nav-left { display: none; }
    .nav-right { display: none; }
    .nav-logo { justify-content: flex-start; }
    .hamburger { display: flex; }
    .nav-mobile {
        display: none;
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: rgba(8,12,18,0.99);
        padding: 2rem 2.5rem;
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        gap: 1rem;
    }
    .nav-mobile.active { display: flex; }
    .nav-mobile a {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
        text-decoration: none;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border);
        transition: color 0.2s;
    }
    .nav-mobile a:hover { color: #fff; }

    .image-strip { grid-template-columns: repeat(3, 1fr); }
    .image-strip-item:nth-child(4),
    .image-strip-item:nth-child(5) { display: none; }

    .race-inner { grid-template-columns: 1fr; }
    .race-info { border-right: none; border-bottom: 1px solid var(--border); padding: 3rem 0; }
    .race-img { min-height: 240px; }

    .driver-row { grid-template-columns: 1fr; }
    .driver-card + .driver-card { border-left: none; border-top: 1px solid var(--border); }

    .news-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .chapter-grid { grid-template-columns: 1fr; }
    .chapter-stats { grid-template-columns: repeat(3, 1fr); }
    .chapter-stat { padding: 1.5rem 0.4rem; }
    .chapter-stat-num { font-size: 2.8rem; }
    .chapter-stat-lbl { font-size: 1.2rem; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .page-hero-content,
    .sponsor-hero-content { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
}
