/* Explorya custom styles — extracted from element templates. Load LAST in <head>. */

/* ===== home-slider ===== */
    :root {
        --explorya-hero-navy: #0f2038;
        --explorya-hero-blue: #1e5fbf;
        --explorya-hero-green: #1e8e6a;
        --explorya-hero-text: #4a5872;
        --explorya-hero-muted: #9aa4b6;
    }

    .explorya-home-hero {
        position: relative;
        overflow: hidden;
        background: #fff;
    }

    .explorya-home-hero::before {
        content: "";
        position: absolute;
        top: -160px;
        right: -120px;
        width: 540px;
        height: 540px;
        border-radius: 50%;
        background: radial-gradient(
            circle,
            rgba(30, 95, 191, 0.14),
            transparent 68%
        );
        pointer-events: none;
        z-index: 0;
    }

    .explorya-home-hero .hero-slider {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .explorya-home-hero .swiper-slide {
        height: auto;
    }

    .explorya-hero-slide {
        width: min(1340px, calc(100% - 56px));
        min-height: 680px;
        margin: 0 auto;
        padding: 60px 0 74px;
        display: grid;
        grid-template-columns: 1.02fr 0.98fr;
        gap: 56px;
        align-items: center;
    }

    .explorya-hero-copy {
        position: relative;
        z-index: 2;
    }

    .explorya-hero-eyebrow {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 30px;
        color: var(--explorya-hero-blue);
        font-family: monospace;
        font-size: 12px;
        letter-spacing: 0.16em;
        line-height: 1.4;
        text-transform: uppercase;
    }

    .explorya-hero-eyebrow-line {
        width: 34px;
        height: 1px;
        flex: 0 0 34px;
        background: var(--explorya-hero-blue);
    }

    .explorya-hero-eyebrow-muted {
        color: var(--explorya-hero-muted);
    }

    .explorya-hero-title {
        max-width: 650px;
        margin: 0;
        color: var(--explorya-hero-navy);
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(64px, 7.2vw, 112px);
        font-weight: 500;
        letter-spacing: -0.045em;
        line-height: 0.88;
    }

    .explorya-hero-title em {
        color: var(--explorya-hero-blue);
        font-weight: inherit;
    }

    .explorya-hero-description {
        max-width: 500px;
        margin: 34px 0 0;
        color: var(--explorya-hero-text);
        font-size: 19px;
        line-height: 1.65;
    }

    .explorya-hero-actions {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 18px;
        margin-top: 36px;
    }

    .explorya-hero-primary,
    .explorya-hero-secondary {
        min-height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 13px 24px;
        border-radius: 40px;
        font-size: 15px;
        font-weight: 700;
        line-height: 1;
        text-decoration: none;
        transition:
            transform 0.2s ease,
            background-color 0.2s ease,
            border-color 0.2s ease;
    }

    .explorya-hero-primary {
        color: #fff;
        background: var(--explorya-hero-blue);
        border: 1px solid var(--explorya-hero-blue);
    }

    .explorya-hero-primary:hover {
        color: #fff;
        background: #174f9e;
        border-color: #174f9e;
        transform: translateY(-2px);
    }

    .explorya-hero-secondary {
        color: var(--explorya-hero-navy);
        background: transparent;
        border: 1px solid rgba(15, 32, 56, 0.22);
    }

    .explorya-hero-textlink {
        color: var(--explorya-hero-navy);
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        border-bottom: 1px solid rgba(15, 32, 56, 0.35);
        padding-bottom: 3px;
        transition:
            color 0.2s ease,
            border-color 0.2s ease;
    }

    .explorya-hero-textlink:hover {
        color: var(--explorya-hero-blue);
        border-color: var(--explorya-hero-blue);
    }

    .explorya-hero-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 44px;
        margin-top: 40px;
        padding-top: 34px;
        border-top: 1px solid rgba(15, 32, 56, 0.1);
    }

    .explorya-hero-stat-value {
        color: var(--explorya-hero-navy);
        font-family: Georgia, "Times New Roman", serif;
        font-size: 42px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: -0.02em;
    }

    .explorya-hero-stat-label {
        margin-top: 11px;
        color: var(--explorya-hero-muted);
        font-family: monospace;
        font-size: 11px;
        letter-spacing: 0.08em;
        line-height: 1.5;
        text-transform: uppercase;
    }

    .explorya-hero-secondary:hover {
        color: var(--explorya-hero-blue);
        border-color: var(--explorya-hero-blue);
        transform: translateY(-2px);
    }

    .explorya-hero-visual {
        position: relative;
        min-width: 0;
    }

    .explorya-hero-image-frame {
        position: relative;
        min-height: 540px;
        overflow: hidden;
        border-radius: 26px;
        background: #e9eef6;
        box-shadow: 0 30px 70px rgba(15, 32, 56, 0.16);
    }

    .explorya-hero-image-frame::after {
        content: "";
        position: absolute;
        inset: 0;
        /* Split hero keeps the image clean (no dark overlay), matching the design. */
        background: linear-gradient(
            180deg,
            rgba(15, 32, 56, 0) 60%,
            rgba(15, 32, 56, 0.12) 100%
        );
        pointer-events: none;
    }

    .explorya-hero-image {
        width: 100%;
        height: 100%;
        min-height: 540px;
        display: block;
        object-fit: cover;
    }

    .explorya-verified-badge {
        position: absolute;
        top: 24px;
        left: 24px;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 9px 13px;
        color: #fff;
        background: rgba(15, 32, 56, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 40px;
        backdrop-filter: blur(8px);
        font-family: monospace;
        font-size: 10.5px;
        letter-spacing: 0.06em;
        line-height: 1;
        text-transform: uppercase;
    }

    .explorya-verified-icon {
        width: 22px;
        height: 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 22px;
        border-radius: 50%;
        background: var(--explorya-hero-green);
    }

    .explorya-destination-card {
        position: absolute;
        left: -30px;
        bottom: -26px;
        z-index: 3;
        width: 290px;
        max-width: calc(100% - 24px);
        display: block;
        padding: 20px;
        color: #fff;
        background: #1e5fbf;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 14px;
        box-shadow: 0 24px 60px rgba(18, 52, 94, 0.42);
    }

    .explorya-destination-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 11px;
    }

    .explorya-destination-label {
        color: #c7dbf7;
        font-family: monospace;
        font-size: 9.5px;
        letter-spacing: 0.08em;
        line-height: 1.3;
        text-transform: uppercase;
    }

    .explorya-destination-coords {
        color: #c7dbf7;
        font-family: monospace;
        font-size: 10px;
        letter-spacing: 0.04em;
        white-space: nowrap;
    }

    .explorya-destination-name {
        margin: 0 0 16px;
        color: #fff;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 27px;
        font-weight: 600;
        line-height: 1.05;
    }

    .explorya-destination-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 15px;
    }

    .explorya-destination-meta-label {
        margin-bottom: 5px;
        color: #c7dbf7;
        font-family: monospace;
        font-size: 9.5px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        line-height: 1.3;
    }

    .explorya-destination-meta-value {
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;
    }

    .explorya-destination-meta-accent {
        color: #9be9c4;
    }

    .explorya-destination-status {
        display: flex;
        align-items: center;
        gap: 7px;
        padding-top: 13px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        color: rgba(255, 255, 255, 0.86);
        font-family: monospace;
        font-size: 10px;
        white-space: nowrap;
    }

    .explorya-destination-status-dot {
        width: 6px;
        height: 6px;
        flex: 0 0 6px;
        border-radius: 50%;
        background: #9be9c4;
    }

    .explorya-home-hero .swiper-pagination {
        position: absolute;
        right: auto;
        bottom: 26px !important;
        left: 50%;
        z-index: 5;
        width: auto !important;
        transform: translateX(-50%);
    }

    .explorya-home-hero .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        margin: 0 5px !important;
        background: rgba(30, 95, 191, 0.34);
        opacity: 1;
        transition:
            width 0.25s ease,
            border-radius 0.25s ease,
            background-color 0.25s ease;
    }

    .explorya-home-hero .swiper-pagination-bullet-active {
        width: 26px;
        border-radius: 10px;
        background: var(--explorya-hero-blue);
    }

    .explorya-hero-nav {
        position: absolute;
        top: 50%;
        z-index: 5;
        width: 44px;
        height: 44px;
        display: none;
        align-items: center;
        justify-content: center;
        color: var(--explorya-hero-navy);
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(15, 32, 56, 0.14);
        border-radius: 50%;
        box-shadow: 0 10px 30px rgba(15, 32, 56, 0.12);
        cursor: pointer;
        transform: translateY(-50%);
        transition:
            color 0.2s ease,
            border-color 0.2s ease,
            background-color 0.2s ease;
    }

    .explorya-hero-nav:hover {
        color: #fff;
        background: var(--explorya-hero-blue);
        border-color: var(--explorya-hero-blue);
    }

    .explorya-hero-prev {
        left: 18px;
    }

    .explorya-hero-next {
        right: 18px;
    }

    .explorya-hero-nav.swiper-button-disabled {
        opacity: 0.35;
        cursor: default;
    }

    @media (max-width: 1199.98px) {
        .explorya-hero-slide {
            min-height: 620px;
            grid-template-columns: 1fr 0.92fr;
            gap: 38px;
        }

        .explorya-hero-image-frame,
        .explorya-hero-image {
            min-height: 480px;
        }

        .explorya-hero-nav {
            display: none;
        }
    }

    @media (max-width: 991.98px) {
        .explorya-home-hero::before {
            top: -220px;
            right: -250px;
        }

        .explorya-hero-slide {
            width: min(100% - 40px, 760px);
            min-height: auto;
            padding: 50px 0 70px;
            grid-template-columns: 1fr;
            gap: 42px;
        }

        .explorya-hero-copy {
            text-align: center;
        }

        .explorya-hero-eyebrow,
        .explorya-hero-actions {
            justify-content: center;
        }

        .explorya-hero-title,
        .explorya-hero-description {
            margin-right: auto;
            margin-left: auto;
        }

        .explorya-hero-title {
            max-width: 700px;
        }

        .explorya-hero-image-frame,
        .explorya-hero-image {
            min-height: 500px;
        }

        /* Keep the floating card inside the viewport once the layout stacks. */
        .explorya-destination-card {
            left: 16px;
            bottom: -24px;
        }
    }

    @media (max-width: 576px) {
        .explorya-hero-slide {
            width: calc(100% - 30px);
            padding: 38px 0 62px;
            gap: 32px;
        }

        .explorya-hero-eyebrow {
            gap: 9px;
            margin-bottom: 22px;
            font-size: 9px;
            letter-spacing: 0.11em;
        }

        .explorya-hero-eyebrow-line {
            width: 22px;
            flex-basis: 22px;
        }

        .explorya-hero-title {
            font-size: clamp(52px, 17vw, 72px);
            line-height: 0.92;
        }

        .explorya-hero-description {
            margin-top: 24px;
            font-size: 16px;
            line-height: 1.6;
        }

        .explorya-hero-actions {
            gap: 12px;
            margin-top: 27px;
        }

        .explorya-hero-primary,
        .explorya-hero-secondary {
            width: 100%;
        }

        .explorya-hero-image-frame,
        .explorya-hero-image {
            min-height: 420px;
            border-radius: 19px;
        }

        .explorya-verified-badge {
            top: 14px;
            left: 14px;
            font-size: 9px;
        }

        .explorya-destination-card {
            left: 12px;
            bottom: -20px;
            padding: 16px;
        }

        .explorya-destination-name {
            font-size: 19px;
            margin-bottom: 12px;
        }

        .explorya-destination-meta {
            gap: 12px;
            margin-bottom: 12px;
        }

        .explorya-hero-stats {
            gap: 30px;
            margin-top: 32px;
            padding-top: 28px;
        }

        .explorya-hero-stat-value {
            font-size: 34px;
        }

        .explorya-home-hero .swiper-pagination {
            bottom: 19px !important;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .explorya-home-hero *,
        .explorya-home-hero *::before,
        .explorya-home-hero *::after {
            scroll-behavior: auto !important;
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }

/* ============================================================
   Explorya home sections (Categories, Marquee, Manifesto,
   Featured Stories, Podcast, Newsletter, Video)
   Shares the hero design system: Georgia serif display,
   monospace labels, same colour tokens.
   ============================================================ */

:root {
    --ex-navy: #0f2038;
    --ex-navy-deep: #12345e;
    --ex-blue: #1e5fbf;
    --ex-green: #1e8e6a;
    --ex-text: #4a5872;
    --ex-muted: #7c88a0;
    --ex-light: #eef4fc;
    --ex-serif: Georgia, "Times New Roman", serif;
    --ex-mono: "Spline Sans Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

.ex-section {
    background: #fff;
    padding: 70px 0;
}

.ex-container {
    width: min(1340px, calc(100% - 56px));
    margin: 0 auto;
}

.ex-eyebrow {
    margin-bottom: 16px;
    color: var(--ex-blue);
    font-family: var(--ex-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ex-eyebrow-center {
    text-align: center;
}

.ex-eyebrow-light {
    color: #8fb6f0;
}

.ex-heading {
    margin: 0;
    color: var(--ex-navy);
    font-family: var(--ex-serif);
    font-size: clamp(42px, 5.4vw, 74px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 0.92;
}

.ex-heading em {
    font-style: italic;
    font-weight: inherit;
}

.ex-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.ex-section-head-row {
    align-items: flex-end;
}

.ex-section-intro {
    max-width: 340px;
    margin: 0;
    color: var(--ex-text);
    font-size: 16px;
    line-height: 1.6;
}

.ex-textlink {
    color: var(--ex-navy);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 32, 56, 0.4);
    padding-bottom: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.ex-textlink:hover {
    color: var(--ex-blue);
    border-color: var(--ex-blue);
}

.ex-textlink-nowrap {
    white-space: nowrap;
}

/* ===== Marquee ===== */
.ex-marquee {
    overflow: hidden;
    padding: 16px 0;
    background: #fff;
    border-top: 1px solid rgba(15, 32, 56, 0.12);
    border-bottom: 1px solid rgba(15, 32, 56, 0.12);
}

.ex-marquee-track {
    display: flex;
    width: max-content;
    animation: exMarquee 34s linear infinite;
}

.ex-marquee-group {
    display: flex;
    align-items: center;
    gap: 26px;
    padding-right: 26px;
    color: var(--ex-blue);
    font-family: var(--ex-serif);
    font-style: italic;
    font-size: 26px;
    white-space: nowrap;
}

@keyframes exMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== Categories ===== */
.ex-cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.ex-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 440px;
    padding: 24px 20px;
    overflow: hidden;
    border-radius: 14px;
    background: var(--ex-navy-deep);
    color: #fff;
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ex-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(18, 52, 94, 0.28);
}

.ex-tile-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ex-tile:hover .ex-tile-img {
    transform: scale(1.06);
}

.ex-tile-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(18, 52, 94, 0.14) 0%,
        rgba(18, 52, 94, 0.3) 42%,
        rgba(11, 28, 52, 0.92) 100%
    );
}

.ex-tile-top {
    position: absolute;
    top: 18px;
    left: 20px;
    right: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ex-tile-num {
    font-family: var(--ex-serif);
    font-size: 44px;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.92);
}

.ex-tile-arrow {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    transition: all 0.35s ease;
}

.ex-tile:hover .ex-tile-arrow {
    background: #fff;
    border-color: #fff;
    color: var(--ex-navy-deep);
}

.ex-tile-body {
    position: relative;
}

.ex-tile-title {
    margin: 0 0 10px;
    color: #fff;
    font-family: var(--ex-serif);
    font-size: 29px;
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.01em;
}

.ex-tile-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

/* ===== Manifesto ===== */
.ex-manifesto {
    background: var(--ex-light);
    border-radius: 20px;
    padding: 70px 56px;
    text-align: center;
}

.ex-manifesto-quote {
    max-width: 1000px;
    margin: 0 auto;
    color: var(--ex-navy);
    font-family: var(--ex-serif);
    font-size: clamp(28px, 4.2vw, 54px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.01em;
}

.ex-manifesto-quote em {
    font-style: italic;
    color: var(--ex-blue);
}

/* ===== Featured Stories ===== */
.ex-stories-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 34px;
}

.ex-lead {
    color: var(--ex-navy);
    text-decoration: none;
}

.ex-lead-media {
    position: relative;
    aspect-ratio: 16 / 11;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 16px;
    background: #e8edf5;
}

.ex-lead-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ex-lead:hover .ex-lead-media img {
    transform: scale(1.04);
}

.ex-lead-cat {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 13px;
    background: rgba(15, 32, 56, 0.6);
    backdrop-filter: blur(6px);
    border-radius: 30px;
    color: #fff;
    font-family: var(--ex-mono);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ex-lead-title {
    max-width: 580px;
    margin: 0;
    color: var(--ex-navy);
    font-family: var(--ex-serif);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.01em;
}

.ex-lead-excerpt {
    max-width: 560px;
    margin: 16px 0 0;
    color: var(--ex-text);
    font-size: 16px;
    line-height: 1.6;
}

.ex-lead-meta {
    margin-top: 18px;
    color: var(--ex-muted);
    font-family: var(--ex-mono);
    font-size: 11.5px;
}

.ex-side-col {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.ex-side {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 22px;
    align-items: center;
    color: var(--ex-navy);
    text-decoration: none;
}

.ex-side-media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    background: #e8edf5;
}

.ex-side-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ex-side:hover .ex-side-media img {
    transform: scale(1.05);
}

.ex-side-cat {
    margin-bottom: 10px;
    color: var(--ex-blue);
    font-family: var(--ex-mono);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ex-side-title {
    margin: 0;
    color: var(--ex-navy);
    font-family: var(--ex-serif);
    font-size: 25px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.01em;
}

.ex-side-date {
    margin-top: 10px;
    color: var(--ex-muted);
    font-family: var(--ex-mono);
    font-size: 11px;
}

.ex-browse {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 26px;
    border-radius: 14px;
    background: var(--ex-blue);
    color: #fff;
    text-decoration: none;
}

.ex-browse span {
    max-width: 210px;
    font-family: var(--ex-serif);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.05;
}

.ex-browse svg {
    flex-shrink: 0;
}

/* ===== Podcast ===== */
.ex-pod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ex-ep {
    display: flex;
    flex-direction: column;
    color: var(--ex-navy);
    text-decoration: none;
}

.ex-ep-media {
    position: relative;
    aspect-ratio: 16 / 10;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 14px;
    background: #e8edf5;
}

.ex-ep-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ex-ep:hover .ex-ep-media img {
    transform: scale(1.05);
}

.ex-ep-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 52, 94, 0.05), rgba(18, 52, 94, 0.35));
}

.ex-ep-play {
    position: absolute;
    left: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    transition: background 0.3s ease;
}

.ex-ep:hover .ex-ep-play {
    background: var(--ex-blue);
}

.ex-ep:hover .ex-ep-play svg {
    fill: #fff;
}

.ex-ep-length {
    position: absolute;
    right: 14px;
    top: 14px;
    padding: 6px 11px;
    border-radius: 30px;
    background: rgba(14, 15, 18, 0.5);
    backdrop-filter: blur(6px);
    color: #fff;
    font-family: var(--ex-mono);
    font-size: 10.5px;
    letter-spacing: 0.05em;
}

.ex-ep-tag {
    margin-bottom: 10px;
    color: var(--ex-blue);
    font-family: var(--ex-mono);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ex-ep-title {
    margin: 0;
    color: var(--ex-navy);
    font-family: var(--ex-serif);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.01em;
}

.ex-ep-host {
    margin-top: 12px;
    color: var(--ex-muted);
    font-family: var(--ex-mono);
    font-size: 11.5px;
}

/* ===== Newsletter ===== */
.ex-newsletter {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 72px 56px;
    background: var(--ex-navy-deep);
}

.ex-newsletter-ghost {
    position: absolute;
    top: -50px;
    right: 10px;
    font-family: var(--ex-serif);
    font-style: italic;
    font-size: 240px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
    user-select: none;
    pointer-events: none;
}

.ex-newsletter-inner {
    position: relative;
    max-width: 600px;
}

.ex-newsletter-title {
    margin: 0;
    color: #fff;
    font-family: var(--ex-serif);
    font-size: clamp(38px, 4.6vw, 62px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.01em;
}

.ex-newsletter-title em {
    font-style: italic;
    color: #8fb6f0;
}

.ex-newsletter-text {
    max-width: 480px;
    margin: 22px 0 0;
    color: #c4d2e8;
    font-size: 17px;
    line-height: 1.6;
}

.ex-newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.ex-newsletter-form input {
    flex: 1;
    min-width: 240px;
    padding: 17px 26px;
    border-radius: 46px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    outline: none;
}

.ex-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.ex-newsletter-form button {
    padding: 17px 34px;
    border: none;
    border-radius: 46px;
    background: #fff;
    color: var(--ex-navy-deep);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.ex-newsletter-form button:hover {
    transform: translateY(-2px);
}

/* ===== Video ===== */
.ex-video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #0e0f12;
    border: 1px solid rgba(15, 32, 56, 0.12);
    box-shadow: 0 30px 70px rgba(18, 52, 94, 0.22);
}

.ex-video-el {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
    object-fit: cover;
    background: #0e0f12;
}

.ex-video-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 30px;
    background: rgba(30, 95, 191, 0.92);
    pointer-events: none;
    color: #fff;
    font-family: var(--ex-mono);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ex-video-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9be9c4;
}

/* ===== Responsive ===== */
@media (max-width: 1199.98px) {
    .ex-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .ex-newsletter-ghost {
        font-size: 180px;
    }
}

@media (max-width: 991.98px) {
    .ex-section {
        padding: 56px 0;
    }
    .ex-stories-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .ex-pod-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ex-manifesto,
    .ex-newsletter {
        padding: 54px 34px;
    }
    .ex-newsletter-ghost {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .ex-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ex-tile {
        min-height: 360px;
    }
    .ex-section-head {
        margin-bottom: 32px;
    }
}

@media (max-width: 575.98px) {
    .ex-cat-grid,
    .ex-pod-grid {
        grid-template-columns: 1fr;
    }
    .ex-tile {
        min-height: 340px;
    }
    .ex-side {
        grid-template-columns: 120px 1fr;
        gap: 16px;
    }
    .ex-manifesto,
    .ex-newsletter {
        padding: 40px 22px;
    }
    .ex-marquee-group {
        font-size: 20px;
    }
    .ex-newsletter-form input,
    .ex-newsletter-form button {
        width: 100%;
        flex: 1 1 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ex-marquee-track {
        animation: none;
    }
}
