/* ═══════════════════════════════════════════════════════════════════
   Viasat World — theme.css  v3.0.0
   Brand colours (Viasat Nature 2025 guidelines):
     Evergreen  #207102  — primary: footer, hero bar, section tabs
     Lizard     #B3F10B  — accent: titles, pills, CTAs, nav active
   ═══════════════════════════════════════════════════════════════════ */

/* ── Roobert @font-face ──────────────────────────────────────────── */
@font-face {
    font-family: 'Roobert';
    src: url('../fonts/Roobert-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roobert';
    src: url('../fonts/Roobert-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roobert';
    src: url('../fonts/Roobert-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roobert';
    src: url('../fonts/Roobert-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── Reset / base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--ch-body-bg, #ffffff);
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Fixed header offset — non-home pages */
body.has-fixed-header {
    padding-top: 88px;
}
/* Home page — hero goes behind fixed header */
body.home.has-fixed-header {
    padding-top: 0;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--ch-primary, #207102); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ch-primary-dark, #165001); }

/* ── Layout helpers ──────────────────────────────────────────────── */
.content-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* ── Section label tab ───────────────────────────────────────────── */
.section-label-wrap {
    margin-bottom: 24px;
    line-height: 0;
}
.section-label {
    display: inline-block;
    background: var(--ch-primary, #207102);
    color: var(--ch-accent, #B3F10B);
    font-family: 'Roobert', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 0;
    line-height: 1.4;
}
.section-label-bar {
    display: block;
    height: 4px;
    background: var(--ch-primary, #207102);
    width: 100%;
}

/* ── HEADER ──────────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 12px 20px;
    transition: padding 0.3s ease;
}
.site-header.is-scrolled { padding: 6px 20px; }

.site-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 1rem;
    padding: 0 20px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Scrolled state — white pill */
.site-header.is-scrolled .site-header__inner {
    background: rgba(255,255,255,0.97);
    border-color: rgba(229,231,235,0.6);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ── Non-home pages: header always white, no transparent phase ───── */
/* The hero only exists on the front page. On all other pages the     */
/* header sits over a white body, so it must start in its white state */
body:not(.home) .site-header .site-header__inner {
    background: rgba(255,255,255,0.97);
    border-color: rgba(229,231,235,0.6);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ── Nav links ───────────────────────────────────────────────────── */
.site-nav--primary { flex: 1; }
.site-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
}
.site-nav__list a {
    display: block;
    padding: 6px 12px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: color 0.2s;
    text-decoration: none;
    /* Default (over hero): white text */
    color: #ffffff;
}
.site-nav__list a:hover {
    color: var(--ch-accent, #B3F10B);
}
.site-nav__list .current-menu-item > a {
    color: var(--ch-accent, #B3F10B);
}

/* When header is scrolled (white background): dark text */
.site-header.is-scrolled .site-nav__list a { color: #1a1a1a; }
.site-header.is-scrolled .site-nav__list a:hover { color: var(--ch-primary, #207102); }
.site-header.is-scrolled .site-nav__list .current-menu-item > a { color: var(--ch-primary, #207102); }

/* Non-home pages: always dark text (header always white) */
body:not(.home) .site-nav__list a { color: #1a1a1a; }
body:not(.home) .site-nav__list a:hover { color: var(--ch-primary, #207102); }
body:not(.home) .site-nav__list .current-menu-item > a { color: var(--ch-primary, #207102); }

/* Logo */
.site-header__logo {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
}
.site-header__logo img { height: 44px; width: auto; display: block; }

/* Right actions */
.site-header__actions {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.site-header__icon-btn {
    background: none; border: none; cursor: pointer;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px;
    color: rgba(255,255,255,0.9);
    transition: color 0.2s, background 0.2s;
}
.site-header__icon-btn:hover { background: rgba(255,255,255,0.15); }
.site-header.is-scrolled .site-header__icon-btn,
body:not(.home) .site-header__icon-btn { color: #374151; }
.site-header.is-scrolled .site-header__icon-btn:hover,
body:not(.home) .site-header__icon-btn:hover { background: rgba(0,0,0,0.06); color: #1a1a1a; }

/* Mobile toggle */
.site-header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px; height: 16px;
    background: none; border: none;
    cursor: pointer; padding: 0;
}
.site-header__menu-toggle span {
    display: block; width: 100%; height: 2px;
    background: rgba(255,255,255,0.9); border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.site-header.is-scrolled .site-header__menu-toggle span,
body:not(.home) .site-header__menu-toggle span { background: #374151; }
.site-header__menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.site-header__menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.site-nav--mobile {
    display: none;
    position: fixed;
    top: 88px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 190;
    padding: 16px 24px 24px;
}
.site-nav--mobile.is-open { display: block; }
.site-nav--mobile__list { list-style: none; }
.site-nav--mobile__list a {
    display: block;
    padding: 14px 0;
    font-family: 'Roobert', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #1a1a1a;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    text-decoration: none;
}
.site-nav--mobile__list a:hover { color: var(--ch-primary, #207102); }

@media (max-width: 900px) {
    .site-nav--primary { display: none; }
    .site-header__menu-toggle { display: flex; }
    .site-header__logo { position: static; transform: none; margin: 0 auto; }
}

/* ── HERO ────────────────────────────────────────────────────────── */
/* Hero fills exactly one viewport — operator strip always starts below the fold.
   100dvh = dynamic viewport height (accounts for mobile browser chrome).
   100vh fallback for browsers that don't support dvh. */
.viasat-hero {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
}

.viasat-hero__slider {
    position: relative;
    flex: 1;
    min-height: 180px;
    overflow: hidden;
    background: #111;
}

/* ── MOBILE HERO — clean stack: big image on top, slim green bar below ── */
/* v3.083: !important used to defeat any cached specificity from earlier versions */
@media (max-width: 600px) {
    .viasat-hero {
        position: static !important;
        display: flex !important;
        height: 100vh !important;
        height: 100dvh !important;
    }
    .viasat-hero__slider {
        position: relative !important;
        inset: auto !important;
        flex: 1 1 auto !important;
        min-height: 280px !important;
    }
    .viasat-hero__info {
        position: static !important;
        flex: 0 0 auto !important;
        padding: 14px 0 16px !important;
        max-height: none !important;
        overflow: visible !important;
    }

    /* Slim the green bar content so the image dominates */
    .viasat-hero__info-inner   { min-height: 0 !important; }
    .viasat-hero__meta         {
        display: flex !important;
        font-size: 0.7rem !important;
        margin-top: 12px !important;
    }
    .viasat-hero__synopsis     {
        display: block !important;
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }
    .viasat-hero__badge        { margin-bottom: 6px !important; }
    .viasat-hero__title        { font-size: 22px !important; line-height: 1.15 !important; margin-bottom: 8px !important; }
    .viasat-hero__cta          { padding: 9px 22px !important; font-size: 0.8rem !important; }
}

.viasat-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.viasat-hero__slide.is-active { opacity: 1; z-index: 1; }
.viasat-hero__slide img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
}
.viasat-hero__slide-overlay {
    position: absolute; inset: 0;
    /* Top gradient: darkens nav area for readability */
    /* Bottom gradient: darkens title/text area */
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 22%),
        linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.55) 100%);
}

/* Arrows */
.viasat-hero__prev,
.viasat-hero__next {
    position: absolute;
    top: 50%; z-index: 10;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; transition: background 0.2s;
}
.viasat-hero__prev { left: 20px; }
.viasat-hero__next { right: 20px; }
.viasat-hero__prev:hover,
.viasat-hero__next:hover { background: rgba(0,0,0,0.6); }

/* Dots */
.viasat-hero__dots {
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex; gap: 8px; align-items: center;
}
.viasat-hero__dot {
    height: 8px; border-radius: 999px;
    background: rgba(255,255,255,0.45);
    width: 8px; padding: 0;
    border: none; cursor: pointer;
    transition: width 0.3s, background 0.3s;
}
.viasat-hero__dot.is-active {
    background: var(--ch-accent, #B3F10B);
    width: 28px;
}

/* Dark green info bar */
.viasat-hero__info {
    background: var(--ch-primary, #207102);
    padding: 12px 0 16px;
}
.viasat-hero__info-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 20px;
    position: relative; min-height: 0;
}
.viasat-hero__info-panel { display: none; }
.viasat-hero__info-panel.is-active { display: block; }

/* Short-viewport laptops (typical 1366×768 / 1440×900 windows):
   tighten info bar so image gets a bigger share of the visible height. */
@media (min-width: 768px) and (max-height: 900px) {
    .viasat-hero__info { padding: 8px 0 10px; }
    .viasat-hero__title { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 4px; }
    .viasat-hero__synopsis { font-size: 0.82rem; line-height: 1.4; margin-bottom: 8px; }
    .viasat-hero__badge { padding: 3px 10px; font-size: 0.58rem; margin-top: 4px; }

    /* Put the CTA and meta line on the same row so the green bar stays slim
       while still showing all content. The meta floats next to the button. */
    .viasat-hero__cta {
        padding: 6px 18px; font-size: 0.76rem;
        display: inline-block; vertical-align: middle;
        margin-right: 16px;
    }
    .viasat-hero__meta {
        display: inline-flex !important;
        margin-top: 0 !important;
        font-size: 0.68rem;
        vertical-align: middle;
    }
}

/* Hero badge */
.viasat-hero__badge {
    display: inline-block;
    font-family: 'Roobert', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.viasat-hero__badge--best-of-day {
    background: var(--ch-accent, #B3F10B);
    color: var(--ch-primary, #207102);
}
.viasat-hero__badge--premier {
    background: transparent;
    color: var(--ch-accent, #B3F10B);
    border: 1.5px solid var(--ch-accent, #B3F10B);
}

.viasat-hero__title {
    font-family: 'Roobert', sans-serif;
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 600;
    color: var(--ch-accent, #B3F10B);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.15;
    margin-bottom: 8px;
    max-width: 680px;
}

/* Desktop: badge floats left so title sits on the same row */
@media (min-width: 601px) {
    .viasat-hero__badge {
        float: left;
        margin-right: 14px;
        margin-top: 6px;        /* visually align with title baseline */
        margin-bottom: 0;
    }
    .viasat-hero__synopsis,
    .viasat-hero__cta { clear: left; }   /* synopsis & CTA reset to new row below */
}
.viasat-hero__synopsis {
    font-family: 'Roobert', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 10px;
}
.viasat-hero__meta {
    display: flex; gap: 8px; flex-wrap: wrap;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    margin-top: 8px;
    align-items: center;
}
.viasat-hero__cta {
    display: inline-block;
    padding: 8px 22px;
    background: var(--ch-accent, #B3F10B);
    color: var(--ch-primary, #207102);
    font-family: 'Roobert', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 6px;
    border: none;
    transition: background 0.2s;
    text-decoration: none;
}
.viasat-hero__cta:hover {
    background: var(--ch-accent, #B3F10B);
    filter: brightness(0.9);
    color: var(--ch-primary, #207102);
}

/* ── OPERATOR LOGOS ──────────────────────────────────────────────── */
.operator-logos {
    background: #f3f4f6;
    padding: 20px 0 24px;
    border-bottom: 1px solid #e5e7eb;
}
.operator-logos__inner {
    max-width: 1280px; margin: 0 auto; padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.operator-logos__label {
    font-family: 'Roobert', sans-serif;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
    flex-shrink: 0;
}
.operator-logos__strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.operator-logos__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border: 1.5px solid #ffffff;
    border-radius: 999px;
    background: #ffffff;
    font-family: 'Roobert', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    white-space: nowrap;
}
.operator-logos__badge img { height: 18px; width: auto; }

/* ── DISCOVER MORE carousel ──────────────────────────────────────── */
.discover-more {
    padding: 48px 0 52px;
    background: #ffffff;
}
.discover-more__inner {
    max-width: 1280px; margin: 0 auto; padding: 0 20px;
}
.discover-more__track-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.discover-more__arrow {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--ch-primary, #207102);
    border: 2px solid var(--ch-accent, #B3F10B);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--ch-accent, #B3F10B);
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}
.discover-more__arrow:hover { background: var(--ch-primary-dark, #165001); }

.discover-more__track {
    display: flex;
    gap: 16px;
    overflow: hidden;
    flex: 1;
    scroll-behavior: smooth;
}
.discover-more__card { flex: 0 0 calc(25% - 12px); min-width: 200px; }
@media (max-width: 1100px) { .discover-more__card { flex: 0 0 calc(33.33% - 11px); } }
@media (max-width: 760px)  { .discover-more__card { flex: 0 0 calc(50% - 8px); } }
@media (max-width: 480px)  { .discover-more__card { flex: 0 0 calc(80% - 8px); } }

.discover-more__card-link { text-decoration: none; color: inherit; display: block; }
.discover-more__card-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 2/3;
    background: #e5e7eb;
    margin-bottom: 10px;
}
.discover-more__card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.discover-more__card-link:hover .discover-more__card-thumb img { transform: scale(1.04); }
.discover-more__card-accent-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--ch-accent, #B3F10B);
}
.discover-more__card-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}
.discover-more__card-title {
    font-family: 'Roobert', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 4px;
}
.discover-more__card-meta {
    font-family: 'Roobert', sans-serif;
    font-size: 0.72rem;
    color: #6b7280;
    font-weight: 500;
}

/* ── EPG section wrapper ─────────────────────────────────────────── */
.epg-section { padding: 0 0 48px; }
.epg-section__inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.epg-section__inner .section-label-wrap { padding-top: 48px; }
/* Android fix: ensure EPG root spans full width, no overflow clipping on cards */
.epg-section [data-vepg-root] { width: 100%; box-sizing: border-box; }

/* Cap homepage EPG at 6 cards — prevents orphan row when 7th card appears */
.epg-section .vepg-grid > *:nth-child(n+7) { display: none; }

/* ── NEWSLETTER SECTION ─────────────────────────────────────────── */
/* Outer section: white/light bg with padding so the card floats */
.newsletter-section {
    background: #ffffff;
    padding: 48px 20px;
}

/* The rounded card */
.newsletter-card {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: var(--ch-primary, #207102);
    display: flex;
    align-items: stretch;
    min-height: 280px;
}

/* Left: quilt image — fills 45% width */
.newsletter-card__quilt {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}
.newsletter-card__quilt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Right: form area */
.newsletter-card__form-wrap {
    flex: 1;
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.newsletter-card__heading {
    font-family: 'Roobert', sans-serif;
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

/* Form: stacked — input full width, button below */
.newsletter-card__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
}
.newsletter-card__input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    border: none;
    background: #ffffff;
    color: #1a1a1a;
    font-family: 'Roobert', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: box-shadow 0.2s;
}
.newsletter-card__input::placeholder { color: #9ca3af; }
.newsletter-card__input:focus {
    box-shadow: 0 0 0 3px rgba(179,241,11,0.45);
}
.newsletter-card__btn {
    align-self: flex-start;
    padding: 13px 36px;
    border-radius: 8px;
    background: var(--ch-accent-safe, #B3F10B);
    color: var(--ch-primary, #207102);
    font-family: 'Roobert', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-card__btn:hover { background: var(--ch-accent-safe, #B3F10B); filter: brightness(0.9); }

/* No quilt: centre the form */
.newsletter-card:not(.has-quilt) .newsletter-card__form-wrap {
    align-items: center;
    text-align: center;
    padding: 56px 40px;
}
.newsletter-card:not(.has-quilt) .newsletter-card__form {
    align-items: center;
    width: 100%;
    max-width: 460px;
}
.newsletter-card:not(.has-quilt) .newsletter-card__btn {
    align-self: center;
    width: 100%;
}

/* Responsive */
@media (max-width: 780px) {
    .newsletter-card { flex-direction: column; }
    .newsletter-card__quilt {
        flex: 0 0 220px;
        height: 220px;
        width: 100%;
    }
    .newsletter-card__form-wrap { padding: 36px 28px; }
    .newsletter-card__btn { align-self: stretch; text-align: center; }
}
@media (max-width: 480px) {
    .newsletter-section { padding: 32px 16px; }
    .newsletter-card__form-wrap { padding: 28px 20px; }
}

/* ── BLOG GALLERY section ────────────────────────────────────────── */
.blog-gallery-section { padding: 48px 0; }

/* ── ARCHIVE / POST GRID ─────────────────────────────────────────── */
.archive-header { margin-bottom: 32px; }
.archive-header__title {
    font-family: 'Roobert', sans-serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.archive-header__desc { color: #6b7280; font-size: 0.95rem; }

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
@media (max-width: 900px)  { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .post-grid { grid-template-columns: 1fr; } }

.post-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s, transform 0.2s;
}
.post-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}
.post-card__thumb { display: block; aspect-ratio: 16/9; overflow: hidden; }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.post-card:hover .post-card__thumb img { transform: scale(1.04); }
.post-card__body { padding: 18px; }
.post-card__cat {
    display: inline-block;
    font-family: 'Roobert', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ch-primary, #207102);
    background: rgba(32,113,2,0.08);
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.post-card__title {
    font-family: 'Roobert', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 8px;
}
.post-card__title a { color: #1a1a1a; text-decoration: none; }
.post-card__title a:hover { color: var(--ch-primary, #207102); }
.post-card__excerpt { font-size: 0.85rem; color: #6b7280; line-height: 1.6; margin-bottom: 12px; }
.post-card__meta { font-size: 0.75rem; color: #9ca3af; }

/* ── SINGLE POST ─────────────────────────────────────────────────── */
.site-main--single .content-wrap { max-width: 900px; }
.single-post__hero { margin: -40px -20px 32px; aspect-ratio: 21/9; overflow: hidden; }
.single-post__hero img { width: 100%; height: 100%; object-fit: cover; }
.single-post__title {
    font-family: 'Roobert', sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 12px 0 10px;
}
.single-post__meta { font-size: 0.82rem; color: #6b7280; display: flex; gap: 8px; flex-wrap: wrap; }
.single-post__content { font-size: 1rem; line-height: 1.8; color: #374151; }
.single-post__content h2,
.single-post__content h3 { font-family: 'Roobert', sans-serif; font-weight: 600; color: #1a1a1a; margin: 28px 0 12px; }
.single-post__content p { margin-bottom: 18px; }
.single-post__content blockquote {
    border-left: 4px solid var(--ch-accent, #B3F10B);
    padding-left: 20px;
    color: #4b5563;
    font-style: italic;
    margin: 24px 0;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.site-footer {
    background: var(--ch-primary, #207102);
    padding: 40px 0 32px;
}
.site-footer__inner {
    max-width: 1280px; margin: 0 auto; padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}
.site-footer__logo img { height: 52px; width: auto; }

.site-footer__nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}
.site-footer__nav-list a {
    padding: 6px 12px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    border-radius: 6px;
    text-decoration: none;
    transition: color 0.2s;
}
.site-footer__nav-list a:hover { color: var(--ch-accent, #B3F10B); }

.site-footer__copy {
    font-family: 'Roobert', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
}

/* ── PAGINATION ──────────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; margin-top: 16px; }
.pagination .nav-links { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border: 1.5px solid #e5e7eb; border-radius: 8px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.85rem; font-weight: 600; color: #374151;
    text-decoration: none; transition: all 0.2s;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--ch-primary, #207102);
    border-color: var(--ch-primary, #207102);
    color: #fff;
}

/* ── ENTRY CONTENT ───────────────────────────────────────────────── */
.entry-content { max-width: 740px; }
.entry-content > * + * { margin-top: 1.25em; }
.entry-content h2 { font-family: 'Roobert', sans-serif; font-size: 1.6rem; font-weight: 600; color: #1a1a1a; }
.entry-content h3 { font-family: 'Roobert', sans-serif; font-size: 1.25rem; font-weight: 600; color: #1a1a1a; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .discover-more__arrow { width: 36px; height: 36px; }
    .single-post__hero { margin: -40px -20px 24px; aspect-ratio: 16/9; }
}


/* ═══════════════════════════════════════════════════════════════════
   MISSING SECTIONS — added in v3.1
   Matches Figma: ShowsGrid, PremierOfMonth, FeaturedShows, VideoGallery
   4-column Footer
   ═══════════════════════════════════════════════════════════════════ */

/* ── SHOWS GRID / CATEGORIES section ────────────────────────────── */
.shows-grid-section {
    padding: 72px 0 96px;
    background: #f3f4f6;
    position: relative;
    overflow: hidden;
}
/* Corner bracket SVGs — inline, filled, rounded inner corner, colour via --ch-primary */
.corner-bracket {
    position: absolute;
    width: 60px; height: 60px;
    z-index: 1;
}
@media (min-width: 768px) { .corner-bracket { width: 70px; height: 70px; } }
.corner-bracket--tl { top: 20px; left: max(20px, calc((100% - 1280px) / 2 + 20px)); }
.corner-bracket--tr { top: 20px; right: max(20px, calc((100% - 1280px) / 2 + 20px)); }
.corner-bracket--bl { bottom: 20px; left: max(20px, calc((100% - 1280px) / 2 + 20px)); }
.corner-bracket--br { bottom: 20px; right: max(20px, calc((100% - 1280px) / 2 + 20px)); }

.shows-grid-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 110px;
    position: relative; z-index: 2;
}
@media (max-width: 900px) {
    /* On narrower screens, brackets shrink and we don't need such big inset */
    .shows-grid-inner { padding: 0 60px; }
}
@media (max-width: 700px) {
    .shows-grid-inner { padding: 0 30px; }
}
/* Centred heading + subtitle (matches Figma Categories layout) */
.shows-grid__heading {
    text-align: center;
    margin-bottom: 48px;
}
.shows-grid__label-wrap {
    display: inline-block;
    margin-bottom: 16px;
}
/* Override section-label-bar to not span full width here */
.shows-grid__label-wrap .section-label-bar {
    display: none;
}
.shows-grid__subtitle {
    font-family: 'Roobert', sans-serif;
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 4px;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
/* When exactly 3 cards: keep 3 columns down to tablet, single below */
.shows-grid--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .shows-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .shows-grid--3col { grid-template-columns: 1fr; } }
@media (max-width: 560px)  { .shows-grid { grid-template-columns: 1fr; } }

.shows-card { display: block; text-decoration: none; }
.shows-card__image {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 3/4;
    background: #e5e7eb;
}
.shows-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.shows-card:hover .shows-card__image img { transform: scale(1.08); }
.shows-card__image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
}
.shows-card__body {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}
.shows-card__title {
    font-family: 'Roobert', sans-serif;
    font-size: 1.15rem; font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em; margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.shows-card__tagline {
    font-family: 'Roobert', sans-serif;
    font-size: 0.82rem; color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}

.shows-grid__cta { display: flex; justify-content: center; margin-top: 8px; }

/* Shared outline button */
.btn-outline-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px;
    border: 2px solid var(--ch-primary, #207102);
    color: var(--ch-primary, #207102);
    font-family: 'Roobert', sans-serif;
    font-weight: 600; font-size: 0.9rem;
    border-radius: 8px;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.btn-outline-primary:hover {
    background: var(--ch-primary, #207102);
    color: var(--ch-accent, #B3F10B);
}

/* ── PREMIERS / SHOWS section ───────────────────────────────────── */
.premiers-section {
    background: var(--ch-primary, #207102);
    padding: 72px 0;
}
/* "Shows" label variant — Lizard bg, Evergreen text (inverse of standard label) */
.section-label--shows {
    background: var(--ch-accent, #B3F10B) !important;
    color: var(--ch-primary, #207102) !important;
}
.premiers-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 20px;
}
/* Section label on dark background */
.section-label--on-dark {
    color: var(--ch-accent, #B3F10B) !important;
}
.section-label-bar--accent {
    background: var(--ch-accent, #B3F10B) !important;
}
.premiers-subtitle {
    font-family: 'Roobert', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    margin-top: 12px;
    margin-bottom: 40px;
}

.premiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .premiers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .premiers-grid { grid-template-columns: 1fr; } }

.premier-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s, transform 0.3s;
}
.premier-card:hover {
    box-shadow: 0 20px 56px rgba(0,0,0,0.3);
    transform: translateY(-4px);
}
.premier-card__link { display: block; text-decoration: none; color: inherit; }
.premier-card__thumb {
    position: relative;
    height: 220px; overflow: hidden;
}
.premier-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.premier-card:hover .premier-card__thumb img { transform: scale(1.08); }
.premier-card__thumb::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}
.premier-card__badge {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    padding: 5px 12px;
    background: var(--ch-accent, #B3F10B);
    color: var(--ch-primary, #207102);
    border-radius: 999px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
}
.premier-card__body { padding: 20px 22px 24px; }
.premier-card__tagline {
    font-family: 'Roobert', sans-serif;
    color: var(--ch-accent-dark, #8fbe09);
    font-weight: 600; font-size: 0.78rem;
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.premier-card__title {
    font-family: 'Roobert', sans-serif;
    font-size: 1.05rem; font-weight: 600;
    color: var(--ch-primary, #207102);
    line-height: 1.35; margin-bottom: 10px;
    transition: color 0.2s;
}
.premier-card:hover .premier-card__title { color: var(--ch-primary-dark, #165001); }
.premier-card__desc {
    font-family: 'Roobert', sans-serif;
    color: #6b7280; font-size: 0.82rem;
    line-height: 1.6; margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.premier-card__meta {
    border-top: 1px solid #e5e7eb;
    padding-top: 12px; margin-bottom: 16px;
    display: flex; flex-direction: column; gap: 5px;
}
.premier-card__meta-item {
    display: flex; align-items: center; gap: 6px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.75rem; color: #9ca3af;
}
.premier-card__meta-item svg { color: var(--ch-primary, #207102); flex-shrink: 0; }
.premier-card__btn {
    display: block; width: 100%;
    padding: 11px;
    background: var(--ch-primary, #207102);
    color: #ffffff;
    border: none; border-radius: 8px;
    font-family: 'Roobert', sans-serif;
    font-weight: 600; font-size: 0.88rem;
    text-align: center; text-decoration: none;
    transition: background 0.25s, color 0.25s;
}
.premier-card:hover .premier-card__btn {
    background: var(--ch-accent, #B3F10B);
    color: var(--ch-primary, #207102);
}

/* ── FEATURED SHOWS / LATEST NEWS ───────────────────────────────── */
.featured-section {
    background: #ffffff;
    padding: 72px 0;
}
.featured-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 20px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
@media (max-width: 900px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .featured-grid { grid-template-columns: 1fr; } }

.featured-card { display: block; text-decoration: none; }
.featured-card__image {
    position: relative;
    overflow: hidden; border-radius: 14px;
    aspect-ratio: 4/5; background: #e5e7eb;
}
.featured-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.featured-card:hover .featured-card__image img { transform: scale(1.06); }
.featured-card__image::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.42);
}
.featured-card__body {
    position: absolute; inset: 0; z-index: 2;
    padding: 24px;
    display: flex; flex-direction: column;
    justify-content: flex-end;
}
.featured-card__cat {
    display: inline-block;
    padding: 5px 14px;
    background: var(--ch-accent, #B3F10B);
    color: var(--ch-primary, #207102);
    border-radius: 999px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.75rem; font-weight: 600;
    margin-bottom: 10px;
    align-self: flex-start;
}
.featured-card__title {
    font-family: 'Roobert', sans-serif;
    font-size: 1.2rem; font-weight: 600;
    color: #ffffff; line-height: 1.3;
    margin-bottom: 8px;
}
.featured-card__date {
    font-family: 'Roobert', sans-serif;
    font-size: 0.78rem; color: rgba(255,255,255,0.8);
}

.featured-footer { margin-top: 8px; }
.section-read-more {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Roobert', sans-serif;
    color: var(--ch-primary, #207102); font-weight: 600;
    font-size: 0.95rem; text-decoration: none;
    background: none; border: none; cursor: pointer;
    transition: color 0.2s;
}
.section-read-more:hover { color: var(--ch-primary-dark, #165001); }

/* ── VIDEO GALLERY ───────────────────────────────────────────────── */
.video-gallery-section {
    background: #f9fafb;
    padding: 72px 0;
}
.video-gallery-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 20px;
}
.video-gallery__header { margin-bottom: 36px; }

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .video-grid { grid-template-columns: 1fr; } }

.video-card { display: block; text-decoration: none; }
.video-card__thumb {
    position: relative;
    overflow: hidden; border-radius: 10px;
    aspect-ratio: 16/9; background: #e5e7eb;
    margin-bottom: 12px;
}
.video-card__thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.35s ease;
}
.video-card:hover .video-card__thumb img { transform: scale(1.05); }
.video-card__play {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.38);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.video-card:hover .video-card__play { opacity: 1; }
.video-card__play-btn {
    width: 60px; height: 60px;
    background: var(--ch-primary, #207102);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s, background 0.2s;
}
.video-card:hover .video-card__play-btn {
    transform: scale(1.1);
    background: var(--ch-primary-dark, #165001);
}

/* YouTube logo badge in bottom-left of thumbnail */
.video-card__yt-badge {
    position: absolute; bottom: 8px; left: 10px;
    display: flex; align-items: center;
    opacity: 0.9;
}
.video-card__title {
    font-family: 'Roobert', sans-serif;
    font-size: 0.9rem; font-weight: 500;
    color: #1a1a1a; line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    transition: color 0.2s;
}
.video-card:hover .video-card__title { color: var(--ch-primary, #207102); }
.video-card__views {
    font-family: 'Roobert', sans-serif;
    font-size: 0.78rem; color: #6b7280;
    display: flex; align-items: center; gap: 5px;
}

.video-gallery__cta { display: flex; justify-content: center; }

/* ── FOOTER — 4-column layout ────────────────────────────────────── */
.site-footer {
    background: var(--ch-primary, #207102);
}
.site-footer__top {
    padding: 56px 0 40px;
}
.site-footer__top-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
@media (max-width: 900px) {
    .site-footer__top-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .site-footer__top-inner { grid-template-columns: 1fr; }
}

.site-footer__logo-link img {
    height: 44px; width: auto; display: block;
    margin-bottom: 14px;
}
.site-footer__tagline {
    font-family: 'Roobert', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 280px;
}

.site-footer__nav-heading {
    font-family: 'Roobert', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
}
.site-footer__nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer__nav-list a {
    font-family: 'Roobert', sans-serif;
    font-size: 0.88rem; font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__social {
    display: flex; flex-wrap: wrap; gap: 10px;
}
.site-footer__social-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: #ffffff; text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.site-footer__social-link:hover {
    background: var(--ch-accent, #B3F10B);
    color: var(--ch-primary, #207102);
}
/* Footer YouTube play triangle:
   Default — channel primary colour so it's visible against the white icon body.
   Hover   — white so it's visible against the primary-coloured icon body.     */
.site-footer__social-link svg polygon {
    fill: var(--ch-primary, #207102);
    transition: fill 0.2s;
}
.site-footer__social-link:hover svg polygon {
    fill: #ffffff;
}

/* Bottom bar */
.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.site-footer__bottom-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 20px;
    text-align: center;
}
.site-footer__copy {
    font-family: 'Roobert', sans-serif;
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
}
.site-footer__copy a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.site-footer__copy a:hover { color: var(--ch-accent, #B3F10B); }

/* ── Blog gallery: homepage shows Featured Articles only ──────────── */
.blog-gallery--featured-only .blog-gallery-latest-stories  { display: none !important; }
.blog-gallery--featured-only .blog-gallery-more-stories    { display: none !important; }

/* Hide the plugin's own section heading — theme label replaces it */
.blog-gallery--featured-only .blog-gallery-featured-stories
    > .blog-gallery-section-header                         { display: none !important; }

/* Indent the label wrap to align with the max-width inner container */
.blog-gallery__section-label-wrap {
    max-width: 1400px;
    margin: 0 auto 0;
    padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════════════════
   SHOWS / PREMIERS CAROUSEL  (pc- prefix = "premier-carousel")
   ═══════════════════════════════════════════════════════════════════ */
.pc-carousel { position: relative; }

.pc-track-wrap {
    overflow: hidden;
    /* Show 3 cards + gutters */
}
.pc-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}

/* Each card: fixed width = (100% - 2×gap) / 3 */
.pc-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    transition: transform 0.25s, box-shadow 0.25s;
}
.pc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}
.pc-card__link { display: block; text-decoration: none; color: inherit; }

/* Thumbnail — landscape 16:9 */
.pc-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1a1a1a;
}
.pc-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.pc-card:hover .pc-card__thumb img { transform: scale(1.04); }
.pc-card__badge {
    position: absolute; top: 12px; right: 12px;
    padding: 4px 12px;
    background: var(--ch-accent, #B3F10B);
    color: var(--ch-primary, #207102);
    border-radius: 999px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.62rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
}

/* Card body */
.pc-card__body { padding: 18px 20px 20px; }
.pc-card__title {
    font-family: 'Roobert', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: #1a1a1a; line-height: 1.3;
    margin-bottom: 6px;
}
.pc-card__tagline {
    font-family: 'Roobert', sans-serif;
    font-size: 0.82rem; font-weight: 500;
    color: var(--ch-primary, #207102);
    margin-bottom: 10px;
    font-style: italic;
}
.pc-card__desc {
    font-family: 'Roobert', sans-serif;
    font-size: 0.82rem; color: #6b7280;
    line-height: 1.6; margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pc-card__meta {
    display: flex; flex-direction: column; gap: 5px;
    margin-bottom: 16px;
}
.pc-card__meta-item {
    display: flex; align-items: center; gap: 6px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.75rem; color: #9ca3af;
}
.pc-card__meta-item svg { color: var(--ch-primary, #207102); flex-shrink: 0; }

.pc-card__btn {
    display: block; width: 100%;
    padding: 11px 0;
    background: var(--ch-primary, #207102);
    color: #ffffff;
    border-radius: 8px;
    font-family: 'Roobert', sans-serif;
    font-weight: 600; font-size: 0.88rem;
    text-align: center;
    transition: background 0.2s;
}
.pc-card:hover .pc-card__btn {
    background: var(--ch-primary-dark, #165001);
}

/* Dots */
.pc-dots {
    display: flex; justify-content: center;
    align-items: center; gap: 8px;
    margin-top: 32px;
}
.pc-dot {
    height: 10px; border-radius: 999px;
    width: 10px; padding: 0;
    border: none; cursor: pointer;
    background: rgba(255,255,255,0.35);
    transition: width 0.3s, background 0.3s;
}
.pc-dot.is-active {
    background: var(--ch-accent, #B3F10B);
    width: 36px;
}

/* Responsive */
@media (max-width: 900px) {
    .pc-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 560px) {
    .pc-card { flex: 0 0 calc(85% - 10px); }
}

/* ═══════════════════════════════════════════════════════════════════
   DISCOVER MORE TO WATCH  (dm- prefix)
   ═══════════════════════════════════════════════════════════════════ */
.dm-section {
    background: #ffffff;
    padding: 72px 0 80px;
}
.dm-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Centred heading */
.dm-heading { text-align: center; margin-bottom: 52px; }
.dm-title {
    font-family: 'Roobert', sans-serif;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--ch-primary, #207102);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 12px;
}
/* Short Lizard underline bar beneath title */
.dm-title-bar {
    display: block;
    width: 56px;
    height: 4px;
    background: var(--ch-accent, #B3F10B);
    margin: 0 auto 20px;
    border-radius: 2px;
}
.dm-subtitle {
    font-family: 'Roobert', sans-serif;
    font-size: 0.95rem;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Carousel row — arrows outside track */
.dm-carousel {
    display: flex;
    align-items: center;
    gap: 16px;
}
.dm-track-wrap { flex: 1; overflow: hidden; }
.dm-track {
    display: flex;
    gap: 20px;
    transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}

/* Arrow buttons */
.dm-arrow {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--ch-primary, #207102);
    border: none;
    color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    z-index: 2;
}
.dm-arrow:hover { background: var(--ch-primary-dark, #165001); transform: scale(1.08); }
.dm-arrow:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

/* Cards — portrait with image + dark overlay + bottom text */
.dm-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
    text-decoration: none;
    background: #1a1a1a;
    transition: transform 0.28s, box-shadow 0.28s;
}
.dm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}
.dm-card__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.dm-card:hover .dm-card__img { transform: scale(1.05); }

/* Overlay: only a bottom fade so text is readable, no green tint over image */
/* .dm-card__overlay removed — no dark gradient on discover more cards */
.dm-card__body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 22px 26px;
    z-index: 2;
}
.dm-card__title {
    font-family: 'Roobert', sans-serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--ch-accent, #B3F10B);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin: 0 0 8px;
    line-height: 1.2;
}
.dm-card__desc {
    font-family: 'Roobert', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Dots */
.dm-dots {
    display: flex; justify-content: center;
    align-items: center; gap: 8px;
    margin-top: 32px;
}
.dm-dot {
    height: 10px; border-radius: 999px; width: 10px;
    border: none; cursor: pointer; padding: 0;
    background: #d1d5db;
    transition: width 0.3s, background 0.3s;
}
.dm-dot.is-active {
    background: var(--ch-accent, #B3F10B);
    width: 36px;
}

/* Responsive */
@media (max-width: 860px) {
    .dm-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 560px) {
    .dm-card { flex: 0 0 calc(82% - 10px); }
    .dm-arrow { width: 38px; height: 38px; }
}

/* ═══════════════════════════════════════════════════════════════════
   OPERATOR LOGOS STRIP — centred, horizontal marquee animation
   ═══════════════════════════════════════════════════════════════════ */
.op-strip {
    background: #cbcbcb;
    border-bottom: 1px solid #b5b5b5;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    overflow: hidden;
}
.op-strip__label {
    font-family: 'Roobert', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b7280;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Track wrapper — clips the scrolling content */
.op-strip__track-wrap {
    flex: 1;
    overflow: hidden;
    /* Fade edges so logos scroll in/out smoothly */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.op-strip__track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: op-scroll 28s linear infinite;
}
/* Pause on hover */
.op-strip__track-wrap:hover .op-strip__track {
    animation-play-state: paused;
}

@keyframes op-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* -50% because track is duplicated */
}

.op-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    text-decoration: none;
}
.op-logo img {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}
.op-logo__num {
    font-family: 'Roobert', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: #374151;
    letter-spacing: 0.03em;
    line-height: 1;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .op-strip__track { animation: none; }
    .op-strip__track-wrap { -webkit-mask-image: none; mask-image: none; }
    .op-strip { flex-wrap: wrap; gap: 12px 24px; justify-content: center; }
}

@media (max-width: 600px) {
    .op-strip__label { display: none; }
}

/* ── Full Width page template ────────────────────────────────────── */
/* No padding or max-width constraints — shortcodes fill the viewport */
.site-main--full-width {
    width: 100%;
    padding-top: 0;
}
/* The blog gallery and EPG plugins handle their own internal padding */
.site-main--full-width .blog-gallery-scope .blog-gallery-container,
.site-main--full-width .vepg-bar,
.site-main--full-width [class*="vepg-"] {
    /* Let plugins breathe at full width */
    max-width: 100%;
}

/* ── TV Schedule page — constrain EPG with padding ──────────────── */
/* The EPG root is [data-vepg-root], rendered directly inside the page content */
.site-main--full-width [data-vepg-root] {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 64px;
    box-sizing: border-box;
}
/* The sticky day-nav bar stretches edge-to-edge but keeps inner content padded */
.site-main--full-width .vepg-bar {
    /* override the max-width from above for just this element */
    margin-left: calc(-24px);
    margin-right: calc(-24px);
    padding-left: 24px;
    padding-right: 24px;
    width: calc(100% + 48px);
    max-width: calc(1280px + 48px);
}

/* ── Full-width page section label (e.g. TV Schedule heading) ────── */
.full-width-page-label {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SINGLE SERIES PAGE  (vsei-series- prefix)
   ═══════════════════════════════════════════════════════════════════ */
.vsei-series-main { background: #ffffff; }

/* ── Hero ──────────────────────────────────────────────────────── */
.vsei-series-hero {
    position: relative;
    width: 100%;
    height: clamp(260px, 35vw, 480px);
    overflow: hidden;
    background: #111;
}
.vsei-series-hero img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 60%;
    display: block;
}
.vsei-series-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
}

/* ── Body wrapper ──────────────────────────────────────────────── */
.vsei-series-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px 64px;
}

/* ── Section label ─────────────────────────────────────────────── */
.vsei-section-label-wrap {
    margin-bottom: 24px;
}

/* ── Header: title, pills, meta, synopsis ──────────────────────── */
.vsei-series-header { margin-bottom: 40px; }
.vsei-series-title {
    font-family: 'Roobert', sans-serif;
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    line-height: 1.1;
}
.vsei-series-pills,
.vsei-series-pills-row {
    display: flex; flex-wrap: wrap;
    column-gap: 8px; row-gap: 16px;
    margin-bottom: 18px;
}
.vsei-pill {
    display: inline-block;
    padding: 5px 14px;
    border: 1.5px solid var(--ch-primary, #207102);
    border-radius: 999px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.78rem; font-weight: 600;
    color: var(--ch-primary, #207102);
    text-decoration: none;
    background: transparent;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.vsei-pill:hover {
    background: var(--ch-primary, #207102);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--ch-primary-rgb, 32,113,2), 0.25);
}
.vsei-series-meta-row {
    display: flex; flex-wrap: wrap; gap: 6px 20px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.85rem; color: #6b7280;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
}
.vsei-series-meta-row span strong { color: #374151; }
.vsei-series-synopsis {
    font-family: 'Roobert', sans-serif;
    font-size: 1rem; color: #374151;
    line-height: 1.7; margin: 16px 0 0;
}

/* ── Section spacing ────────────────────────────────────────────── */
.vsei-series-section { margin-bottom: 52px; }

/* ── Photos grid ────────────────────────────────────────────────── */
.vsei-photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
@media (max-width: 700px) { .vsei-photos-grid { grid-template-columns: repeat(2, 1fr); } }
.vsei-photo-item {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    background: #e5e7eb;
}
.vsei-photo-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.vsei-photo-item:hover img { transform: scale(1.06); }

/* ── AI enriched content ────────────────────────────────────────── */
.vsei-series-content {
    font-family: 'Roobert', sans-serif;
    font-size: 0.95rem; color: #374151;
    line-height: 1.75;
}
.vsei-series-content h2 {
    font-size: 1.35rem; font-weight: 700;
    color: #1a1a1a; margin: 28px 0 10px;
}
.vsei-series-content h3 {
    font-size: 1.1rem; font-weight: 600;
    color: #1a1a1a; margin: 22px 0 8px;
}
.vsei-series-content p { margin-bottom: 14px; }
.vsei-series-content strong { color: #1a1a1a; }

/* ── Episodes list ──────────────────────────────────────────────── */
.vsei-season-title {
    font-family: 'Roobert', sans-serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--ch-primary, #207102);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.vsei-ep-list { display: flex; flex-direction: column; gap: 12px; }
.vsei-ep--hidden { display: none !important; }

/* Episode card — white card, green left border accent */
.vsei-ep-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid var(--ch-primary, #207102);
    border-radius: 0 10px 10px 0;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, border-left-color 0.2s;
}
.vsei-ep-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Left side: badge + title + synopsis */
.vsei-ep-card__left { flex: 1; min-width: 0; }
.vsei-ep-card__badge-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.vsei-ep-card__badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--ch-primary, #207102);
    color: var(--ch-accent, #B3F10B);
    border-radius: 4px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
    flex-shrink: 0;
}
.vsei-ep-card__title {
    font-family: 'Roobert', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: #1a1a1a; margin: 0;
    line-height: 1.3;
}
.vsei-ep-card:hover .vsei-ep-card__title { color: var(--ch-primary, #207102); }
.vsei-ep-card__desc {
    font-family: 'Roobert', sans-serif;
    font-size: 0.85rem; color: #4b5563;
    line-height: 1.65; margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Air time — sits below synopsis in left column */
.vsei-ep-card__airtime {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: #6b7280;
}
.vsei-ep-card__airtime svg { flex-shrink: 0; color: #9ca3af; }
.vsei-ep-card__airtime-text {
    display: flex;
    align-items: center;
    gap: 6px;
}
.vsei-ep-card__airtime-date {
    font-family: 'Roobert', sans-serif;
    font-size: 0.8rem; font-weight: 600;
    color: #374151;
}
.vsei-ep-card__airtime-time {
    font-family: 'Roobert', sans-serif;
    font-size: 0.8rem;
    color: #6b7280;
}
.vsei-ep-card__airtime-time::before {
    content: '·';
    margin-right: 6px;
    color: #d1d5db;
}

/* Right: thumbnail */
.vsei-ep-card__thumb {
    flex-shrink: 0;
    width: 160px; height: 90px;
    border-radius: 8px; overflow: hidden;
    background: #e5e7eb;
}
.vsei-ep-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.vsei-ep-card:hover .vsei-ep-card__thumb img { transform: scale(1.05); }

.vsei-ep-more-wrap { margin-top: 20px; }

@media (max-width: 600px) {
    .vsei-ep-card { flex-direction: column; }
    .vsei-ep-card__thumb { width: 100%; height: 180px; }
}

/* ── More shows grid ────────────────────────────────────────────── */
.vsei-more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 760px) { .vsei-more-grid { grid-template-columns: repeat(2, 1fr); } }
.vsei-more-card { display: block; text-decoration: none; }
.vsei-more-card__thumb {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 12px; overflow: hidden;
    background: #e5e7eb; margin-bottom: 10px;
}
.vsei-more-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.vsei-more-card:hover .vsei-more-card__thumb img { transform: scale(1.06); }
.vsei-more-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 16px;
    opacity: 0; transition: opacity 0.3s;
}
.vsei-more-card:hover .vsei-more-card__overlay { opacity: 1; }
.vsei-more-card__see-more {
    font-family: 'Roobert', sans-serif;
    font-size: 0.82rem; font-weight: 700;
    color: #ffffff;
    padding: 8px 20px;
    background: var(--ch-primary, #207102);
    border-radius: 6px;
}
.vsei-more-card__title {
    font-family: 'Roobert', sans-serif;
    font-size: 0.9rem; font-weight: 600;
    color: #1a1a1a; line-height: 1.3;
}
.vsei-more-card:hover .vsei-more-card__title { color: var(--ch-primary, #207102); }

/* ── Articles grid ──────────────────────────────────────────────── */
.vsei-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 600px) { .vsei-articles-grid { grid-template-columns: 1fr; } }
.vsei-article-card {
    display: flex; gap: 16px;
    align-items: flex-start;
    text-decoration: none; color: inherit;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.vsei-article-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.vsei-article-card__thumb {
    flex-shrink: 0;
    width: 100px; height: 70px;
    border-radius: 8px; overflow: hidden;
    background: #e5e7eb;
}
.vsei-article-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.vsei-article-card__body { flex: 1; min-width: 0; }
.vsei-article-card__cat {
    display: inline-block;
    font-family: 'Roobert', sans-serif;
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--ch-primary, #207102);
    margin-bottom: 6px;
}
.vsei-article-card__title {
    font-family: 'Roobert', sans-serif;
    font-size: 0.9rem; font-weight: 600;
    color: #1a1a1a; line-height: 1.35;
    margin: 0 0 8px;
}
.vsei-article-card__read {
    display: inline-flex; align-items: center; gap: 4px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.78rem; font-weight: 600;
    color: var(--ch-primary, #207102);
    text-decoration: none;
    transition: color 0.2s;
}
.vsei-article-card:hover .vsei-article-card__read { color: var(--ch-primary-dark, #165001); }

/* ── Back link ──────────────────────────────────────────────────── */
.vsei-back-link {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}
.vsei-back-link a {
    font-family: 'Roobert', sans-serif;
    font-size: 0.88rem; font-weight: 600;
    color: var(--ch-primary, #207102);
    text-decoration: none;
    transition: color 0.2s;
}
.vsei-back-link a:hover { color: var(--ch-primary-dark, #165001); }

/* ═══════════════════════════════════════════════════════════════════
   VIDEOS PAGE  (vp- prefix)
   ═══════════════════════════════════════════════════════════════════ */
.vp-main {
    background: #ffffff;
    min-height: 60vh;
}
.vp-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 64px;
}

/* ── Filter bar ─────────────────────────────────────────────────── */
.vp-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.vp-filter-search {
    position: relative;
    flex: 1;
    max-width: 320px;
}
.vp-filter-input {
    width: 100%;
    padding: 11px 40px 11px 16px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.88rem;
    color: #374151;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s;
}
.vp-filter-input:focus { border-color: var(--ch-primary, #207102); }
.vp-filter-icon {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}
.vp-filter-sort-wrap {
    position: relative;
}
.vp-filter-sort {
    appearance: none;
    padding: 11px 40px 11px 16px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #374151;
    background: #ffffff;
    cursor: pointer;
    outline: none;
    min-width: 160px;
    transition: border-color 0.2s;
}
.vp-filter-sort:focus { border-color: var(--ch-primary, #207102); }

/* ── Video grid ─────────────────────────────────────────────────── */
.vp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 860px) { .vp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .vp-grid { grid-template-columns: 1fr; } }

/* ── Video card ─────────────────────────────────────────────────── */
.vp-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.vp-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    background: #1a1a1a;
    margin-bottom: 12px;
}
.vp-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.vp-card:hover .vp-card__thumb img { transform: scale(1.05); }

.vp-card__placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

/* Play overlay — visible on hover */
.vp-card__play-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.vp-card:hover .vp-card__play-overlay { opacity: 1; }
.vp-card__play-btn {
    width: 56px; height: 56px;
    background: var(--ch-primary, #207102);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--ch-accent, #B3F10B);
    transition: transform 0.2s;
}
.vp-card:hover .vp-card__play-btn { transform: scale(1.1); }

/* Duration badge — bottom right */
.vp-card__duration {
    position: absolute;
    bottom: 8px; right: 8px;
    padding: 3px 8px;
    background: rgba(0,0,0,0.85);
    color: #ffffff;
    font-family: 'Roobert', sans-serif;
    font-size: 0.72rem; font-weight: 600;
    border-radius: 4px;
}

/* Card text */
.vp-card__body {}
.vp-card__title {
    font-family: 'Roobert', sans-serif;
    font-size: 0.88rem; font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin: 0;
    transition: color 0.2s;
}
.vp-card:hover .vp-card__title { color: var(--ch-primary, #207102); }

/* Empty state */
.vp-empty {
    text-align: center;
    padding: 60px 0;
    color: #6b7280;
    font-family: 'Roobert', sans-serif;
}
.vp-empty a { color: var(--ch-primary, #207102); font-weight: 600; }

/* ── EPG card links ───────────────────────────────────────────────── */
/* Wrapper anchor added by theme.js around matched .vepg-card elements */
a.vepg-link {
    display: contents; /* invisible wrapper — card keeps its grid layout */
    text-decoration: none;
    color: inherit;
}
/* Clickable cards get a subtle hover lift */
a.vepg-link .vepg-card {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
a.vepg-link:hover .vepg-card {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
/* Tint the title green on hover to signal it's a link */
a.vepg-link:hover .vepg-title {
    color: var(--ch-primary, #207102);
}

/* Footer: spaced second heading within same column */
.site-footer__nav-heading--spaced {
    margin-top: 28px;
}
/* Footer nav menu output from wp_nav_menu — strip default list styles */
.site-footer__nav-list,
.site-footer ul.site-footer__nav-list {
    list-style: none;
    margin: 0; padding: 0;
}

/* Social icon inactive state (no URL set yet in Customiser) */
.site-footer__social-link--inactive {
    opacity: 0.35;
    cursor: default;
}

/* Newsletter embed container — lets Mailchimp/etc style their own form */
.newsletter-card__embed {
    max-width: 420px;
}
/* Override embed form elements to inherit brand colours */
.newsletter-card__embed input[type="email"],
.newsletter-card__embed input[type="text"] {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    border: none;
    background: #ffffff;
    color: #1a1a1a;
    font-family: 'Roobert', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 12px;
    box-sizing: border-box;
}
.newsletter-card__embed input[type="submit"],
.newsletter-card__embed button[type="submit"] {
    padding: 13px 36px;
    border-radius: 8px;
    background: var(--ch-accent, #B3F10B);
    color: var(--ch-primary, #207102);
    font-family: 'Roobert', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-card__embed input[type="submit"]:hover,
.newsletter-card__embed button[type="submit"]:hover {
    background: var(--ch-accent-dark, #8fbe09);
}

/* ── Header social icons (desktop only) ─────────────────────────── */
.site-header__social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 4px;
}
.site-header__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s;
}
.site-header__social-link:hover {
    background: rgba(255,255,255,0.3);
}
@media (max-width: 768px) {
    .site-header__social { display: none; }
}

/* ── Operator strip: static (no animation) ──────────────────────── */
.op-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 14px 24px;
    background: #cbcbcb;
    border-bottom: 1px solid #b5b5b5;
}
.op-strip__logos {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}
/* Remove old scrolling track styles */
.op-strip__track-wrap,
.op-strip__track { display: none !important; }

/* EPG number now displays per-logo via .op-logo__num */

/* ── EPG "View Full Schedule" CTA ───────────────────────────────── */
.epg-section__cta {
    display: flex;
    justify-content: center;
    padding: 28px 0 8px;
}

/* ── Hero: stronger overlay + mobile layout + entrance animation ─── */
/* Stronger gradient overlay on desktop */
.viasat-hero__image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 30%,
        rgba(0,0,0,0.5) 70%,
        rgba(0,0,0,0.7) 100%
    );
    pointer-events: none;
}

/* Entrance animation — info bar slides up on page load */
@keyframes hero-info-up {
    from { transform: translateY(24px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.viasat-hero__info {
    animation: hero-info-up 0.6s cubic-bezier(0.4,0,0.2,1) both;
    animation-delay: 0.2s;
}

/* Mobile hero layout — matches Figma */
@media (max-width: 768px) {
    /* Image takes upper 60% of viewport */
    .viasat-hero {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 0;
    }
    .viasat-hero__slides {
        position: relative;
        width: 100%;
        aspect-ratio: 4/3;
        flex-shrink: 0;
    }
    .viasat-hero__image {
        position: absolute; inset: 0;
        height: 100%;
    }
    /* Info bar sits below image, solid Evergreen background */
    .viasat-hero__info {
        position: relative;
        background: var(--ch-primary, #207102);
        padding: 20px 20px 24px;
        width: 100%;
    }
    .viasat-hero__info-panel {
        display: none;
    }
    .viasat-hero__info-panel.is-active {
        display: block;
    }
    .viasat-hero__title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    .viasat-hero__synopsis {
        font-size: 0.88rem;
        line-height: 1.6;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    /* Arrows on mobile — smaller, inside the image area */
    .viasat-hero__arrow {
        width: 36px; height: 36px;
        background: rgba(0,0,0,0.5);
        top: auto;
        bottom: 12px;
    }
    .viasat-hero__arrow--prev { left: 16px; }
    .viasat-hero__arrow--next { right: 16px; }
    /* Dots move inside image on mobile */
    .viasat-hero__dots {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ── Shows archive: search bar ──────────────────────────────────── */
.vsei-filter { flex-wrap: wrap; gap: 10px; }
.vsei-filter__search-wrap {
    position: relative;
    flex: 1;
    min-width: 220px;
    max-width: 320px;
}
.vsei-filter__search {
    width: 100%;
    padding: 10px 36px 10px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.88rem;
    color: #374151;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.vsei-filter__search:focus { border-color: var(--ch-primary, #207102); }
.vsei-filter__search-icon {
    position: absolute;
    right: 10px; top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

/* ── Site-wide search overlay ────────────────────────────────────── */
.site-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(4px);
}
.site-search-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}
.site-search-overlay__inner {
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
    transform: translateY(-16px);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.site-search-overlay.is-open .site-search-overlay__inner {
    transform: translateY(0);
}
.site-search-overlay__form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.site-search-overlay__input {
    flex: 1;
    padding: 18px 20px;
    border: none;
    outline: none;
    font-family: 'Roobert', sans-serif;
    font-size: 1.1rem;
    color: #1a1a1a;
    background: transparent;
}
.site-search-overlay__input::placeholder { color: #9ca3af; }
.site-search-overlay__submit {
    padding: 0 20px;
    background: var(--ch-primary, #207102);
    border: none;
    color: #ffffff;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}
.site-search-overlay__submit:hover { background: var(--ch-primary-dark, #165001); }
.site-search-overlay__close {
    padding: 0 16px;
    background: transparent;
    border: none;
    color: #9ca3af;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}
.site-search-overlay__close:hover { color: #1a1a1a; }
.site-search-overlay__hint {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-family: 'Roobert', sans-serif;
    font-size: 0.82rem;
    margin-top: 12px;
}
/* Prevent body scroll when search open */
body.search-open { overflow: hidden; }

/* ── Social icons — light/dark header states ────────────────────── */
/* Default (homepage hero — dark background behind header): white icons */
.site-header .site-header__social-link {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
}
/* Non-home pages AND scrolled state → white header, dark icons */
body:not(.home) .site-header .site-header__social-link,
.site-header.is-scrolled .site-header__social-link {
    background: rgba(0,0,0,0.06);
    color: var(--ch-primary, #207102);
}
body:not(.home) .site-header .site-header__social-link:hover,
.site-header.is-scrolled .site-header__social-link:hover {
    background: var(--ch-primary, #207102);
    color: #ffffff;
}
/* YouTube play triangle — green on all states so it's always visible */
.site-header__social-link svg polygon {
    fill: var(--ch-primary, #207102);
}
/* On hover (homepage top): icon bg goes green, triangle flips to white */
.site-header .site-header__social-link:hover svg polygon {
    fill: #ffffff;
}
/* Scrolled / non-home: triangle white by default, flips to primary on hover */
body:not(.home) .site-header .site-header__social-link svg polygon,
.site-header.is-scrolled .site-header__social-link svg polygon {
    fill: #ffffff;
}
body:not(.home) .site-header .site-header__social-link:hover svg polygon,
.site-header.is-scrolled .site-header__social-link:hover svg polygon {
    fill: var(--ch-primary, #207102);
}

/* Homepage top hover: green background so the hover is visible */
.site-header:not(.is-scrolled) .site-header__social-link:hover {
    background: var(--ch-primary, #207102);
    color: #ffffff;
}

/* ── Shows filter: genre left, search right ─────────────────────── */
.vsei-filter__form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}
.vsei-filter__left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.vsei-filter__search-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s;
}
.vsei-filter__search-wrap:focus-within {
    border-color: var(--ch-primary, #207102);
}
.vsei-filter__search {
    padding: 10px 12px;
    border: none;
    outline: none;
    font-family: 'Roobert', sans-serif;
    font-size: 0.88rem;
    color: #374151;
    width: 220px;
    background: transparent;
}
.vsei-filter__search-btn {
    padding: 0 12px;
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 38px;
    transition: color 0.2s;
}
.vsei-filter__search-btn:hover { color: var(--ch-primary, #207102); }

/* ── Episode air time display ────────────────────────────────────── */
.vsei-ep-card__meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}
.vsei-ep-card__airtime {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ch-primary, #207102);
}
.vsei-ep-card__airtime svg { flex-shrink: 0; color: var(--ch-primary, #207102); }

/* Series page year — styled as a subtle pill matching genre pills */
.vsei-series-year {
    font-family: 'Roobert', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b7280;
    padding: 5px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 999px;
    background: transparent;
}

/* ── Where To Watch — operator logos on series page ──────────────── */
.vsei-wtw__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px 36px;
    padding: 28px;
    background: #cbcbcb;
    border: 1px solid #b5b5b5;
    border-radius: 12px;
}
.vsei-wtw__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, opacity 0.2s;
    text-decoration: none;
}
.vsei-wtw__logo:hover { transform: translateY(-2px); }
.vsei-wtw__logo img {
    max-height: 44px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.2s;
    opacity: 0.9;
}
.vsei-wtw__logo:hover img { opacity: 1; }

@media (max-width: 560px) {
    .vsei-wtw__grid { gap: 20px; padding: 18px; }
    .vsei-wtw__logo img { max-height: 36px; max-width: 110px; }
}

/* ── Series archive — card grid ──────────────────────────────────── */
.vsei-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin: 32px 0;
}
.vsei-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.vsei-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* Card thumbnail */
.vsei-card .thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f3f4f6;
    display: block;
}
.vsei-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.vsei-card:hover .thumb img { transform: scale(1.05); }

/* Card body */
.vsei-card .body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.vsei-card h2.h3 {
    font-family: 'Roobert', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.3;
}
.vsei-card h2.h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.vsei-card:hover h2.h3 a { color: var(--ch-primary, #207102); }

.vsei-card .p {
    font-family: 'Roobert', sans-serif;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card meta footer — year + genre */
.vsei-card .meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 14px;
    margin-top: auto;
    border-top: 1px solid #f3f4f6;
    font-family: 'Roobert', sans-serif;
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}
.vsei-card .meta span:first-child { color: var(--ch-primary, #207102); }

@media (max-width: 560px) {
    .vsei-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Header for the archive page */
.vsei-wrap { max-width: 1280px; margin: 0 auto; padding: 40px 24px; }
.vsei-header {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.vsei-title {
    font-family: 'Roobert', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}
.vsei-filter select {
    padding: 9px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-family: 'Roobert', sans-serif;
    font-size: 0.88rem;
    background: #fff;
    min-width: 180px;
    cursor: pointer;
}
.vsei-filter button {
    padding: 9px 22px;
    border: 1.5px solid var(--ch-primary, #207102);
    border-radius: 8px;
    background: transparent;
    color: var(--ch-primary, #207102);
    font-family: 'Roobert', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.vsei-filter button:hover {
    background: var(--ch-primary, #207102);
    color: #fff;
}

/* ── EPG home AJAX loading spinner ─────────────────────────── */
.epg-home-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 60px 20px;
}
.epg-home-loading__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ch-primary, #207102);
    opacity: 0.3;
    animation: epg-loading-pulse 1.2s ease-in-out infinite;
}
.epg-home-loading__dot:nth-child(2) { animation-delay: 0.2s; }
.epg-home-loading__dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes epg-loading-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.3); }
}

/* ── Season lazy-load spinner ───────────────────────────────── */
.vsei-season-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 48px 20px;
}
.vsei-season-loading__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--ch-primary, #207102);
    opacity: 0.3;
    animation: vsei-pulse 1.2s ease-in-out infinite;
}
.vsei-season-loading__dot:nth-child(2) { animation-delay: 0.2s; }
.vsei-season-loading__dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes vsei-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.3); }
}

/* ── Blog gallery home page — hide built-in pagination, show CTA button ── */
.blog-gallery-section .blog-gallery__pagination,
.blog-gallery-section .wpp-pagination,
.blog-gallery-section nav.pagination,
.blog-gallery-section .page-numbers { display: none !important; }

.blog-gallery__cta {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}





/* ── Home page news section container ──────────────────────────── */
.home-news-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Blog gallery mobile — single column on small screens */
@media (max-width: 600px) {
    .blog-gallery-scope .blog-gallery-featured-grid { grid-template-columns: 1fr !important; }
    .blog-gallery-scope .blog-gallery-container     { padding: 32px 0 !important; }
}

/* ── Mobile overflow prevention ─────────────────────────────────── */
html { overflow-x: hidden; }
body { overflow-x: hidden; position: relative; }
