/* ========== EXPERIENCE PAGE — "The Run of Show" ==========
   Producer-voice rebuild. Playfair carries three lines only
   (hero, timeline header, closing); Inter does call-sheet duty.
   All component colors are var() tokens; photo scrims use fixed
   dark rgba with fixed #fff text so both themes read correctly. */

/* ---------- Shared page primitives ---------- */
.ex-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 6px 18px;
    border-radius: 100px;
}
.ex-header {
    max-width: 720px;
    margin-bottom: 56px;
}
.ex-h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--text);
    margin-top: 20px;
}
.ex-sub {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 14px;
    max-width: 560px;
}

/* ================= HERO — "This is not that" ================= */
.ex-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 160px 0 100px;
}
.ex-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ex-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
}
@media (prefers-reduced-motion: no-preference) {
    .ex-hero-bg img {
        animation: exHeroDrift 26s ease-in-out infinite alternate;
    }
    @keyframes exHeroDrift {
        from { transform: scale(1.08); }
        to   { transform: scale(1.16); }
    }
}
/* Scrim: heavier on the left where the copy sits, melts into page bg
   at the bottom. Fixed-dark + fixed-white hero text = theme-safe. */
.ex-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.25) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.2) 55%, var(--bg) 100%);
}
.ex-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}
.ex-hero-content {
    max-width: 640px;
    text-align: left;
}
.ex-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.6vw, 4.4rem);
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    margin: 26px 0 20px;
}
.ex-hero-title .text-accent { color: var(--red-light); }
.ex-hero-sub {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 34px;
}
.ex-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 34px;
}
/* Ghost button sits on a photo: force readable white regardless of theme */
.ex-hero-actions .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.45);
}
.ex-hero-actions .btn-outline:hover {
    border-color: var(--red-light);
    color: var(--red-light);
}
.ex-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ex-chip {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.25);
    padding: 8px 20px;
    border-radius: 100px;
    transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
}
.ex-chip:hover {
    border-color: var(--red-light);
    color: var(--red-light);
    background: rgba(0,0,0,0.45);
    transform: translateY(-2px);
}

/* ================= WHAT HE ACTUALLY DOES ================= */
.ex-does {
    padding: 110px 0;
}
.ex-does-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
}
.ex-reel-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: var(--shadow);
}
.ex-reel-video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.ex-does-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.ex-does-list li {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}
.ex-does-list li:first-child { padding-top: 0; }
.ex-does-list li:last-child { border-bottom: none; }
.ex-does-idx {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--red);
    flex-shrink: 0;
}
.ex-does-list p {
    font-family: var(--font-sans);
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--text);
}

/* ================= CHOOSE YOUR FORMAT ================= */
.ex-formats {
    padding: 110px 0;
    background: var(--bg-elevated);
}
.ex-format-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ex-format-card {
    position: relative;
    display: block;
    min-height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s, box-shadow 0.5s;
}
.ex-format-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 16, 46, 0.45);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(200, 16, 46, 0.12);
}
/* CMS-filled photo zooms on hover (same treatment as .event-card) */
.ex-format-card .slot-img {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.ex-format-card:hover .slot-img {
    transform: scale(1.08);
}
/* Overlay above the CMS .slot-img (z-index: 2) — fixed dark scrim,
   fixed light text: reads correctly over photos in both themes */
.ex-format-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 28px;
    background: linear-gradient(180deg, transparent 22%, rgba(0,0,0,0.62) 55%, rgba(0,0,0,0.92) 100%);
    transition: background 0.4s;
}
.ex-format-card:hover .ex-format-overlay {
    background: linear-gradient(180deg, rgba(200,16,46,0.08) 0%, rgba(0,0,0,0.68) 55%, rgba(0,0,0,0.95) 100%);
}
.ex-format-kicker {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--red-light);
}
.ex-format-overlay h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}
.ex-format-desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
}
.ex-format-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
    /* The cards are bottom-anchored, so the title's vertical position depends
       on the total height of everything below it. Every element below the title
       is a fixed height EXCEPT the pill row, which wraps to two rows on some
       cards and one on others — that alone left the three "Choose Your Format"
       titles ragged (card 3 sat ~34px lower). Reserve two pill rows so the pill
       zone is equal across all three cards and the titles line up; the shorter
       card keeps its pills bottom-aligned so the pill/meta/CTA cluster stays
       tight and the slack sits above, next to the description. */
    min-height: 62px;
    align-content: flex-end;
}
.ex-format-pills span {
    font-family: var(--font-sans);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.28);
    padding: 5px 12px;
    border-radius: 100px;
}
.ex-format-meta {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
}
.ex-format-cta {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red-light);
    margin-top: 4px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.ex-format-card:hover .ex-format-cta {
    transform: translateX(6px);
}

/* Virtual & Hybrid strip */
.ex-virtual-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 24px;
    margin-top: 24px;
    padding: 22px 28px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    border-radius: var(--radius);
    background: var(--bg-card);
    scroll-margin-top: 120px;
}
.ex-virtual-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    white-space: nowrap;
}
.ex-virtual-strip p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}
.ex-virtual-strip a {
    color: var(--red);
    font-weight: 600;
    transition: color 0.3s;
}
.ex-virtual-strip a:hover { color: var(--red-light); }

/* ================= THE ROOM, MINUTE BY MINUTE ================= */
.ex-room {
    padding: 120px 0;
}
.ex-room .ex-header {
    margin-bottom: 72px;
}
/* One of the page's three Playfair lines */
.ex-room-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--text);
    margin-top: 22px;
}
.ex-timeline {
    max-width: 900px;
    margin: 0 auto;
}
.ex-timeline .ch-beat {
    margin-bottom: 4rem;
}
.ex-timeline .ch-beat:last-child {
    margin-bottom: 0;
}
.ex-beat-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: center;
}
.ex-beat-copy h3 {
    font-family: var(--font-sans);
    font-size: clamp(1.2rem, 2.4vw, 1.7rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 8px;
}
.ex-beat-copy p {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.ex-beat-photo {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
}
/* Spine dot per beat — small red tick that lights with the beat */
.ex-timeline .ch-beat::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.55rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--border);
    transition: border-color var(--ch-beat-dur, 600ms) var(--ch-beat-ease, ease),
                background var(--ch-beat-dur, 600ms) var(--ch-beat-ease, ease);
}
.ex-timeline .ch-beat.ch-beat-active::before {
    border-color: var(--red);
    background: var(--red);
}
@media (prefers-reduced-motion: reduce) {
    .ex-timeline .ch-beat::before {
        border-color: var(--red);
        background: var(--red);
        transition: none;
    }
}

/* ================= PROOF ================= */
.ex-proof {
    padding: 110px 0;
    background: var(--bg-elevated);
}
.ex-proof-card {
    position: relative;
    max-width: 860px;
    margin: 0 auto 40px;
    padding: 56px 48px 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    overflow: hidden;
}
.ex-proof-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), var(--glow-color) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.ex-proof-card:hover::before { opacity: 1; }
/* Timestamp chip — the page motif carried into the proof band */
.ex-when-chip {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    margin-bottom: 20px;
}
.ex-proof-stars {
    font-size: 1.3rem;
    color: var(--red);
    letter-spacing: 4px;
    margin-bottom: 20px;
}
.ex-proof-quote p {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-style: italic;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 26px;
}
.ex-proof-author {
    display: block;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}
.ex-proof-role {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}
.ex-mini-quotes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 860px;
    margin: 0 auto 48px;
}
.ex-mini-quote {
    padding: 24px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}
.ex-mini-quote p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 10px;
}
.ex-mini-quote footer {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.ex-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 56px;
}
.ex-badge {
    font-family: var(--font-sans);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text);
    border: 1px solid var(--border);
    background: var(--bg-card);
    padding: 10px 20px;
    border-radius: 100px;
    transition: border-color 0.35s, color 0.35s, transform 0.35s;
    cursor: default;
}
.ex-badge:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-3px);
}
.ex-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.ex-stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
}
.ex-stat span {
    font-family: var(--font-sans);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* ================= THE CH EFFECT ================= */
.ex-effect {
    padding: 110px 0;
}
.ex-effect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ex-effect-phase {
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.4s, transform 0.4s;
}
.ex-effect-phase:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.ex-effect-step {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--red);
}
.ex-effect-phase h3 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin: 10px 0 8px;
}
.ex-effect-phase p {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}
.ex-effect-roi {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 720px;
    margin-top: 40px;
    padding-left: 20px;
    border-left: 3px solid var(--red);
}

/* ================= PLANNER'S LOGISTICS ================= */
.ex-logistics {
    padding: 110px 0;
    background: var(--bg-elevated);
}
.ex-callsheet {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 44px 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}
.ex-callsheet::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), var(--glow-color) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.ex-callsheet:hover::before { opacity: 1; }
.ex-callsheet-label {
    font-family: var(--font-sans);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
}
.ex-needs {
    list-style: none;
}
.ex-needs li {
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.ex-needs li:last-child { border-bottom: none; }
.ex-needs-idx {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--red);
    flex-shrink: 0;
}
.ex-process-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    padding-top: 6px;
}
.ex-process-arrow {
    color: var(--red);
    font-weight: 400;
}
.ex-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ex-faq-item {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.ex-faq-item h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 10px;
}
.ex-faq-item p {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================= CLOSING BLOCK ================= */
.ex-close {
    position: relative;
    padding: 140px 0 120px;
    overflow: hidden;
}
.ex-close-bg {
    position: absolute;
    inset: 0;
}
.ex-close-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Fixed dark scrim + fixed light type: theme-safe over the photo */
.ex-close-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(0,0,0,0.78) 22%, rgba(0,0,0,0.88) 100%);
}
.ex-close-inner {
    position: relative;
    z-index: 2;
}
.ex-close-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
/* The page's third and final Playfair line */
.ex-close-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 18px;
}
.ex-close-content p {
    font-family: var(--font-sans);
    font-size: 1.08rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
}
.ex-deck-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
    padding: 32px 40px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.ex-deck-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red-light);
    margin-bottom: 8px;
}
.ex-deck-copy h3 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}
.ex-deck-copy p {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    max-width: 460px;
}
/* Deck button sits on the dark glass card: force white in both themes */
.ex-deck-card .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.45);
    flex-shrink: 0;
}
.ex-deck-card .btn-outline:hover {
    border-color: var(--red-light);
    color: var(--red-light);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .ex-does-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ex-format-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ex-format-card {
        min-height: 440px;
    }
    .ex-effect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ex-faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ex-callsheet {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 32px;
    }
}
@media (max-width: 768px) {
    .ex-hero {
        min-height: 72vh;
        padding: 140px 0 80px;
    }
    .ex-does,
    .ex-formats,
    .ex-room,
    .ex-proof,
    .ex-effect,
    .ex-logistics {
        padding: 80px 0;
    }
    .ex-header {
        margin-bottom: 40px;
    }
    .ex-beat-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ex-effect-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ex-mini-quotes {
        grid-template-columns: 1fr;
    }
    .ex-stat-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }
    .ex-proof-card {
        padding: 40px 24px;
    }
    .ex-format-card {
        min-height: 400px;
    }
    .ex-deck-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }
    .ex-close {
        padding: 110px 0 90px;
    }
    .ex-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
