
  :root {
    --ink: oklch(0.18 0.012 60);
    --ink-2: oklch(0.32 0.012 60);
    --ink-3: oklch(0.50 0.012 60);
    --paper: oklch(0.975 0.008 85);
    --paper-2: oklch(0.945 0.010 85);
    --paper-3: oklch(0.905 0.012 85);
    --rule: oklch(0.86 0.012 80);
    --rule-strong: oklch(0.72 0.014 75);
    --brand: oklch(0.72 0.15 60);       /* solar gold */
    --brand-deep: oklch(0.52 0.16 55);
    --brand-ink: oklch(0.25 0.08 55);
    --live: oklch(0.62 0.22 25);         /* warm red for "no ar" */
    --accent: oklch(0.55 0.14 220);       /* editorial blue accent */
  }
  [data-palette="dusk"] {
    --brand: oklch(0.60 0.17 330);
    --brand-deep: oklch(0.42 0.18 325);
    --brand-ink: oklch(0.22 0.09 325);
    --accent: oklch(0.58 0.14 250);
  }
  [data-palette="forest"] {
    --brand: oklch(0.58 0.14 155);
    --brand-deep: oklch(0.40 0.14 155);
    --brand-ink: oklch(0.22 0.08 155);
    --accent: oklch(0.55 0.14 60);
  }
  [data-palette="press"] {
    --brand: oklch(0.52 0.22 28);
    --brand-deep: oklch(0.40 0.22 28);
    --brand-ink: oklch(0.20 0.10 28);
    --accent: oklch(0.35 0.02 60);
  }

  [data-mode="dark"] {
    --ink: oklch(0.96 0.008 80);
    --ink-2: oklch(0.82 0.010 80);
    --ink-3: oklch(0.64 0.012 80);
    --paper: oklch(0.15 0.010 60);
    --paper-2: oklch(0.20 0.010 60);
    --paper-3: oklch(0.26 0.012 60);
    --rule: oklch(0.30 0.012 70);
    --rule-strong: oklch(0.42 0.014 70);
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: 'IBM Plex Sans', system-ui, sans-serif;
    background: var(--paper);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  .serif { font-family: 'IBM Plex Serif', Georgia, serif;  letter-spacing: -0.01em; }
  .mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

  a { color: inherit; text-decoration: none; }
  a.headline:hover h2, a.headline:hover h3, a.headline:hover h4 { color: var(--brand-deep); }

  .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ===== TOP UTILITY BAR ===== */
  .utility {
    background: var(--ink);
    color: var(--paper);
    font-size: 12px;
    border-bottom: 1px solid var(--ink);
  }
  .utility-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    gap: 16px;
  }
  .utility-left {
    display: flex;
    align-items: center;
    gap: 18px;
    color: oklch(0.82 0.008 80);
  }
  .utility-left .date { text-transform: uppercase; letter-spacing: 0.08em; }
  .utility-left .weather { display: flex; align-items: center; gap: 6px; }
  .utility-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .utility-right a { color: oklch(0.82 0.008 80); }
  .utility-right a:hover { color: var(--brand); }
  .pill-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px;
    background: var(--live);
    color: white;
    border-radius: 2px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 10px;
  }
  .pulse {
    width: 6px; height: 6px; border-radius: 50%; background: white;
    animation: pulse 1.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.8); }
  }

  /* ===== TICKER ===== */
  .ticker {
    background: var(--paper-3);
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
    position: relative;
  }
  .ticker-row {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 34px;
  }
  .ticker-label {
    background: var(--brand);
    color: var(--brand-ink);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 12px 7px 24px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  }
  .ticker-track {
    overflow: hidden;
    flex: 1;
    mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
  }
  .ticker-content {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: slide 70s linear infinite;
    font-size: 13px;
    color: var(--ink-2);
  }
  .ticker-content span.dot { color: var(--brand-deep); }
  @keyframes slide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ===== MASTHEAD ===== */
  .masthead {
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    padding: 22px 0 18px;
  }
  .masthead-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
  }
  .masthead-side.left { display: flex; gap: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); }
  .masthead-side.right { display: flex; gap: 10px; justify-content: flex-end; align-items: center; }
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo img {
    height: 54px;
    width: auto;
    display: block;
  }
  [data-mode="dark"] .logo img { filter: brightness(0) invert(1) drop-shadow(0 0 0 var(--paper)); }
  [data-mode="dark"] .logo.keep-color img { filter: none; }
  .tagline {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-3);
    text-align: center;
    margin-top: 4px;
  }
  .btn {
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 8px 14px;
    border-radius: 2px;
    cursor: pointer;
    border: 1px solid var(--rule-strong);
    background: transparent;
    color: var(--ink);
    transition: all 0.15s;
  }
  .btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .btn-primary {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .btn-primary:hover { background: var(--brand-deep); border-color: var(--brand-deep); }
  .icon-btn {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--rule);
    border-radius: 2px;
    cursor: pointer;
    background: transparent;
    color: var(--ink-2);
  }
  .icon-btn:hover { color: var(--brand-deep); border-color: var(--brand-deep); }

  /* ===== PRIMARY NAV ===== */
  .nav {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(8px);
    background: color-mix(in oklch, var(--paper) 92%, transparent);
  }
  .nav-row {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 48px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .nav-row::-webkit-scrollbar { display: none; }
  .nav-item {
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink-2);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
  }
  .nav-item:hover { color: var(--ink); }
  .nav-item.active {
    color: var(--ink);
    border-bottom-color: var(--brand);
  }
  .nav-item.highlight {
    color: var(--brand-deep);
    font-weight: 700;
  }
  .nav-divider { width: 1px; height: 20px; background: var(--rule); margin: 0 4px; }
  .nav-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--rule);
    border-radius: 2px;
    padding: 6px 10px;
    background: var(--paper-2);
    width: 240px;
    flex-shrink: 0;
  }
  .nav-search input {
    border: none;
    outline: none;
    background: transparent;
    font: inherit;
    font-size: 13px;
    color: var(--ink);
    flex: 1;
    min-width: 0;
  }
  .nav-search input::placeholder { color: var(--ink-3); }

  /* ===== HERO ===== */
  .hero {
    padding: 28px 0 12px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    border-top: 2px solid var(--ink);
    padding-top: 20px;
  }
  .hero-main {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    border-right: 1px solid var(--rule);
    padding-right: 24px;
  }
  .hero-lead .kicker, .kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-deep);
    margin-bottom: 10px;
  }
  .kicker::before {
    content: "";
    width: 20px; height: 2px; background: var(--brand);
  }
  .hero-title {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 0 0 12px;
    color: var(--ink);
    
    text-wrap: balance;
  }
  .hero-dek {
    font-size: 17px;
    line-height: 1.45;
    color: var(--ink-2);
    margin: 0 0 16px;
    max-width: 44ch;
    text-wrap: pretty;
  }
  .byline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .byline .author { color: var(--ink); font-weight: 600; text-transform: none; letter-spacing: 0; }
  .byline::before {
    content: "";
    display: inline-block;
    width: 20px; height: 20px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  }

  .media {
    background: var(--paper-3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .media.ratio-16-9 { aspect-ratio: 16 / 9; }
  .media.ratio-4-3 { aspect-ratio: 4 / 3; }
  .media.ratio-1-1 { aspect-ratio: 1 / 1; }
  .media.ratio-3-4 { aspect-ratio: 3 / 4; }
  .media .stripes {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      135deg,
      oklch(0.90 0.012 85),
      oklch(0.90 0.012 85) 18px,
      oklch(0.88 0.012 85) 18px,
      oklch(0.88 0.012 85) 36px
    );
  }
  [data-mode="dark"] .media .stripes {
    background: repeating-linear-gradient(
      135deg,
      oklch(0.26 0.012 60),
      oklch(0.26 0.012 60) 18px,
      oklch(0.22 0.012 60) 18px,
      oklch(0.22 0.012 60) 36px
    );
  }
  .media .label {
    position: relative;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-3);
    background: var(--paper);
    padding: 4px 10px;
    border: 1px solid var(--rule);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 2;
  }
  .media .duration {
    position: absolute;
    right: 10px; bottom: 10px;
    background: oklch(0.15 0.01 60 / 0.85);
    color: white;
    padding: 3px 8px;
    border-radius: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    z-index: 3;
    backdrop-filter: blur(4px);
  }
  .media .play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.2s;
    background: oklch(0.18 0.012 60 / 0.2);
  }
  a.headline:hover .media .play { opacity: 1; }
  .media .play-circle {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--brand);
    color: var(--brand-ink);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 40px oklch(0.18 0.01 60 / 0.3);
  }

  .hero-lead .media { margin-bottom: 16px; }

  .hero-secondary {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .secondary-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule);
  }
  .secondary-card:last-child { border-bottom: none; padding-bottom: 0; }
  .secondary-card .media { aspect-ratio: 4 / 3; }
  .secondary-card h3 {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-weight: 600;
    font-size: 19px;
    line-height: 1.14;
    letter-spacing: -0.015em;
    margin: 0 0 6px;
    color: var(--ink);
    text-wrap: balance;
  }
  .secondary-card .meta {
    font-size: 11px;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
  }

  /* Hero right column - list */
  .hero-aside {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .aside-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--ink);
  }
  .aside-header h4 {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-weight: 700;
    font-size: 22px;
    margin: 0;
    letter-spacing: -0.02em;
  }
  .aside-header .more {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-3);
    display: flex; align-items: center; gap: 4px;
  }
  .aside-list {
    display: flex;
    flex-direction: column;
  }
  .aside-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
  }
  .aside-item:last-child { border-bottom: none; }
  .aside-item .num {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1;
    color: var(--brand-deep);
    font-style: italic;
  }
  .aside-item h5 {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    margin: 0 0 4px;
    color: var(--ink);
    letter-spacing: -0.01em;
    text-wrap: balance;
  }
  .aside-item .meta {
    font-size: 10px;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ===== NO AR AGORA BAND ===== */
  .on-air {
    background: var(--ink);
    color: var(--paper);
    padding: 20px 0;
    margin-top: 24px;
  }
  .on-air-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
  }
  .on-air-badge {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .on-air-badge .pill-live { font-size: 11px; padding: 5px 10px; }
  .on-air-badge .label {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-style: italic;
    font-size: 20px;
    color: oklch(0.92 0.008 80);
  }
  .on-air-title {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.015em;
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
  .on-air-title .ep { color: var(--brand); font-style: italic; font-weight: 400; }
  .on-air-actions { display: flex; gap: 10px; }
  .on-air-actions .btn {
    color: var(--paper);
    border-color: oklch(0.4 0.01 60);
  }
  .on-air-actions .btn:hover { background: var(--paper); color: var(--ink); }
  .on-air-actions .btn-primary {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--brand-ink);
  }
  .on-air-actions .btn-primary:hover { background: oklch(0.82 0.15 60); border-color: oklch(0.82 0.15 60); }

  .progress {
    grid-column: 1 / -1;
    height: 3px;
    background: oklch(0.3 0.01 60);
    margin-top: 14px;
    position: relative;
    overflow: hidden;
  }
  .progress-fill {
    position: absolute; inset: 0;
    width: 37%;
    background: var(--brand);
    animation: progress 40s linear infinite;
  }
  @keyframes progress {
    from { width: 37%; }
    to { width: 95%; }
  }

  /* ===== SECTION HEADERS ===== */
  .section {
    padding: 40px 0;
    border-top: 1px solid var(--rule);
  }
  .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 20px;
    flex-wrap: wrap;
  }
  .section-head-left { display: flex; flex-direction: column; gap: 2px; }
  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-deep);
  }
  .section-title {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.025em;
    margin: 2px 0 0;
    color: var(--ink);
  }
  .section-title em { font-style: italic; font-weight: 400; color: var(--brand-deep); }
  .section-sub {
    font-size: 14px;
    color: var(--ink-3);
    margin-top: 8px;
    max-width: 48ch;
  }
  .section-filters {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    align-items: center;
  }
  .filter-chip {
    font-size: 12px;
    font-weight: 500;
    padding: 7px 12px;
    border: 1px solid var(--rule);
    border-radius: 999px;
    cursor: pointer;
    color: var(--ink-2);
    background: transparent;
    transition: all 0.12s;
  }
  .filter-chip:hover { border-color: var(--ink); color: var(--ink); }
  .filter-chip.active {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }

  /* ===== SERIES GRID ===== */
  /* ── Grid de séries ──────────────────────────────────────────────────── */
  .series-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  /* ── Card de série ────────────────────────────────────────────────────── */
  .series-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }

  /* Wrapper da imagem — position:relative para o overlay */
  .series-card-media {
    position: relative;
    overflow: hidden;
  }
  .series-card-media .media {
    aspect-ratio: 3 / 4;
    transition: transform 0.35s ease;
    display: block;
  }
  .series-card:hover .series-card-media .media {
    transform: scale(1.03);
  }

  /* Gradiente escuro sobre a imagem */
  .series-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      oklch(0.10 0.01 60 / 0.92) 0%,
      oklch(0.10 0.01 60 / 0.55) 45%,
      transparent 75%
    );
    z-index: 1;
    pointer-events: none;
  }

  /* Overlay com título sobre a imagem */
  .series-card-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 20px 16px 16px;
    z-index: 2;
    color: white;
  }
  .series-card-kicker {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 6px;
    opacity: 0.95;
  }
  .series-card-title {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 6px;
    color: white;
    text-wrap: balance;
  }
  /* Resumo: visível sempre, sutil */
  .series-card-desc {
    font-size: 12px;
    color: oklch(0.82 0.008 80);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Rodapé do card — botão editorial */
  .series-card-footer {
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-top: 2px solid var(--brand);
    padding: 12px 16px;
    transition: background 0.15s, border-color 0.15s;
  }
  .series-card:hover .series-card-footer {
    background: var(--ink);
    border-color: var(--ink);
  }
  .series-card-btn {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    transition: color 0.15s;
  }
  .series-card:hover .series-card-btn {
    color: var(--paper);
  }

  /* ===== FEATURED SERIES ROW ===== */
  .featured-series {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .featured-series .media { aspect-ratio: 4 / 3; }
  .featured-series .content h3 {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 8px 0 14px;
    text-wrap: balance;
  }
  .featured-series .content p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-2);
    margin: 0 0 20px;
    max-width: 52ch;
  }
  .featured-series .stats {
    display: flex;
    gap: 28px;
    padding: 16px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 22px;
  }
  .featured-series .stat .num {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    color: var(--brand-deep);
  }
  .featured-series .stat .lab {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    margin-top: 4px;
  }

  /* ===== ARTICLES & OPINIÃO ===== */
  .two-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
  }
  .article-list { display: flex; flex-direction: column; }
  .article-item {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--rule);
  }
  .article-item:first-child { padding-top: 0; }
  .article-item .media { aspect-ratio: 4 / 3; }
  .article-item h3 {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 6px 0 8px;
    text-wrap: balance;
  }
  .article-item p {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.5;
    margin: 0 0 10px;
    max-width: 58ch;
  }
  .article-item .meta {
    font-size: 11px;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .opinion-panel {
    background: var(--paper-2);
    padding: 24px;
    border-top: 3px solid var(--brand);
  }
  .opinion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 16px;
  }
  .opinion-header h4 {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: 26px;
    margin: 0;
    letter-spacing: -0.02em;
  }
  .opinion-item {
    padding: 16px 0;
    border-bottom: 1px dashed var(--rule);
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }
  .opinion-item:last-child { border-bottom: none; padding-bottom: 0; }
  .opinion-item .avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    position: relative;
    overflow: hidden;
  }
  .opinion-item .avatar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 4px, oklch(1 0 0 / 0.08) 4px, oklch(1 0 0 / 0.08) 8px);
  }
  .opinion-item .author-name {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 2px;
  }
  .opinion-item h5 {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    margin: 4px 0 0;
    letter-spacing: -0.01em;
    text-wrap: balance;
  }
  .opinion-item .role {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-3);
  }

  /* ===== EQUIPE ===== */
  .team-section { background: var(--paper-2); }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
  .team-card {
    text-align: left;
    cursor: pointer;
  }
  .team-card .media {
    aspect-ratio: 1 / 1;
    margin-bottom: 10px;
    border-radius: 2px;
    transition: filter 0.2s;
  }
  .team-card:hover .media { filter: brightness(1.05) saturate(1.1); }
  .team-card .name {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 2px;
  }
  .team-card .role {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-3);
  }

  /* ===== GUESTS ===== */
  .guests-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .guest-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 14px;
    padding: 16px;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    cursor: pointer;
    transition: all 0.15s;
  }
  .guest-card:hover { border-color: var(--ink); transform: translateY(-2px); }
  .guest-card .media { aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden; }
  .guest-card .name {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 2px 0 4px;
  }
  .guest-card .blurb {
    font-size: 12px;
    color: var(--ink-2);
    line-height: 1.4;
    margin: 0 0 8px;
  }
  .guest-card .episodes {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-deep);
  }

  /* ===== NEWSLETTER ===== */
  .newsletter {
    background: var(--ink);
    color: var(--paper);
    padding: 56px 0;
    margin-top: 0;
  }
  .newsletter-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .newsletter h3 {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-weight: 600;
    font-size: 44px;
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 0 0 12px;
    text-wrap: balance;
  }
  .newsletter h3 em { color: var(--brand); font-style: italic; font-weight: 400; }
  .newsletter p {
    font-size: 16px;
    color: oklch(0.85 0.008 80);
    margin: 0;
    max-width: 48ch;
    line-height: 1.5;
  }
  .newsletter-form { display: flex; flex-direction: column; gap: 12px; }
  .newsletter-form .field {
    display: flex;
    border: 1px solid oklch(0.4 0.01 60);
    background: oklch(0.22 0.01 60);
    border-radius: 2px;
  }
  .newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font: inherit;
    color: white;
    padding: 14px 16px;
    font-size: 15px;
  }
  .newsletter-form input::placeholder { color: oklch(0.6 0.01 60); }
  .newsletter-form button {
    background: var(--brand);
    color: var(--brand-ink);
    border: none;
    padding: 0 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
  }
  .newsletter-form button:hover { background: oklch(0.82 0.15 60); }
  .newsletter-form .check { display: flex; gap: 8px; font-size: 12px; color: oklch(0.7 0.01 60); }

  /* ===== FOOTER ===== */
  .footer {
    background: oklch(0.12 0.01 60);
    color: oklch(0.72 0.008 80);
    padding: 48px 0 24px;
  }
  [data-mode="dark"] .footer { background: oklch(0.10 0.01 60); }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid oklch(0.25 0.01 60);
  }
  .footer h6 {
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 14px;
  }
  .footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
  .footer a:hover { color: var(--brand); }
  .footer-about .logo .mark { color: white; font-size: 38px; }
  .footer-about p { font-size: 13px; line-height: 1.5; margin: 12px 0 16px; max-width: 36ch; }
  .social { display: flex; gap: 8px; }
  .social a {
    width: 34px; height: 34px;
    border: 1px solid oklch(0.3 0.01 60);
    display: flex; align-items: center; justify-content: center;
    border-radius: 2px;
    color: oklch(0.72 0.008 80);
  }
  .social a:hover { background: var(--brand); color: var(--brand-ink); border-color: var(--brand); }
  .footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: oklch(0.55 0.01 60);
  }

  /* ===== APP DOWNLOAD STRIP ===== */
  .app-strip {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 28px 0;
    margin-top: 28px;
    border-top: 1px solid oklch(0.25 0.01 60);
    border-bottom: 1px solid oklch(0.25 0.01 60);
  }
  .app-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 700;
    margin-bottom: 8px;
  }
  .app-title {
    font-family: 'IBM Plex Serif', serif;
    color: white;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    text-wrap: balance;
  }
  .app-title em { font-style: italic; color: var(--brand); font-weight: 400; }
  .app-sub {
    margin: 0;
    font-size: 14px;
    color: oklch(0.75 0.008 80);
    max-width: 56ch;
    line-height: 1.5;
  }
  .app-badges {
    display: flex;
    gap: 10px;
    align-items: stretch;
  }
  .app-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: oklch(0.18 0.01 60);
    border: 1px solid oklch(0.30 0.01 60);
    border-radius: 8px;
    padding: 10px 18px;
    color: white;
    transition: all 0.15s;
    min-width: 168px;
  }
  .app-badge:hover { border-color: var(--brand); transform: translateY(-2px); color: white; background: oklch(0.22 0.01 60); }
  .app-badge .app-ico { color: white; flex-shrink: 0; }
  .app-badge-text { display: flex; flex-direction: column; line-height: 1.1; }
  .bt-small { font-size: 10px; color: oklch(0.72 0.008 80); letter-spacing: 0.04em; }
  .bt-big {
    font-family: 'IBM Plex Sans', system-ui, sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-top: 1px;
  }
  .app-qr {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 12px;
    border-radius: 8px;
    color: oklch(0.2 0.01 60);
  }
  .qr-grid {
    width: 48px; height: 48px;
    flex-shrink: 0;
    background:
      radial-gradient(circle at 15% 15%, black 20%, transparent 22%) 0 0/20% 20%,
      radial-gradient(circle at 85% 15%, black 20%, transparent 22%) 0 0/20% 20%,
      radial-gradient(circle at 15% 85%, black 20%, transparent 22%) 0 0/20% 20%,
      linear-gradient(45deg, black 25%, transparent 25%, transparent 50%, black 50%, black 75%, transparent 75%) 0 0/20% 20%,
      white;
    border: 1px solid oklch(0.85 0.01 80);
    border-radius: 4px;
    position: relative;
  }
  .qr-grid::after {
    content: "";
    position: absolute;
    inset: 35% 35% 35% 35%;
    background: var(--brand);
    border: 2px solid white;
    border-radius: 2px;
  }
  .qr-label {
    font-size: 10px;
    color: oklch(0.35 0.01 60);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  @media (max-width: 900px) {
    .app-strip { grid-template-columns: 1fr; gap: 20px; }
    .app-badges { flex-wrap: wrap; }
    .app-qr { display: none; }
  }

  /* ===== EPISODE OVERLAY ===== */
  .overlay-page {
    position: fixed;
    inset: 0;
    background: var(--paper);
    z-index: 100;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .overlay-page.open { transform: translateY(0); }
  .overlay-close {
    position: fixed;
    top: 20px; right: 20px;
    z-index: 200;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px oklch(0.18 0.01 60 / 0.3);
  }

  .ep-hero {
    position: relative;
    aspect-ratio: 21/9;
    max-height: 560px;
    overflow: hidden;
    background: var(--ink);
  }
  .ep-hero .media { position: absolute; inset: 0; }
  .ep-hero .overlay-tint {
    position: absolute; inset: 0;
    background: linear-gradient(to top, oklch(0.1 0.01 60 / 0.95), oklch(0.1 0.01 60 / 0.4) 60%, transparent);
    z-index: 2;
  }
  .ep-hero-content {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 3;
    color: white;
    padding: 40px 0;
  }
  .ep-hero-content .crumb {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    color: oklch(0.85 0.008 80);
  }
  .ep-hero-content .crumb em { color: var(--brand); font-style: italic; font-weight: 500; }
  .ep-hero-content h1 {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 68px;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
    max-width: 20ch;
    text-wrap: balance;
  }
  .ep-hero-content .meta-row {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: oklch(0.88 0.008 80);
    align-items: center;
    flex-wrap: wrap;
  }
  .ep-hero-content .meta-row .dot { width: 4px; height: 4px; background: oklch(0.6 0.01 60); border-radius: 50%; }

  .ep-body {
    padding: 48px 0 60px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
  }
  .ep-body .lead {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--ink);
    letter-spacing: -0.01em;
    text-wrap: pretty;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 24px;
  }
  .ep-body .prose p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    margin: 0 0 18px;
    max-width: 64ch;
  }
  .ep-body .prose p.drop::first-letter {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 64px;
    float: left;
    line-height: 0.9;
    padding: 4px 8px 0 0;
    font-weight: 600;
    color: var(--brand-deep);
  }
  .ep-aside-section {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--rule);
  }
  .ep-aside-section h5 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-deep);
    font-weight: 700;
    margin: 0 0 12px;
  }
  .ep-next-list { display: flex; flex-direction: column; gap: 14px; }
  .ep-next-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 10px 0;
    cursor: pointer;
    border-bottom: 1px dashed var(--rule);
  }
  .ep-next-item:last-child { border-bottom: none; }
  .ep-next-item .media { aspect-ratio: 16/9; }
  .ep-next-item h6 {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
  }
  .ep-next-item .dur { font-size: 11px; color: var(--ink-3); }

  /* ===== TWEAKS PANEL ===== */
  .tweaks-panel {
    position: fixed;
    bottom: 20px; right: 20px;
    width: 320px;
    background: var(--paper);
    border: 1px solid var(--rule-strong);
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 24px 60px oklch(0.18 0.01 60 / 0.25);
    z-index: 90;
    font-size: 13px;
    display: none;
  }
  .tweaks-panel.open { display: block; }
  .tweaks-panel h5 {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
  }
  .tweak-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid var(--rule);
  }
  .tweak-row:first-of-type { border-top: none; padding-top: 0; }
  .tweak-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    font-weight: 600;
  }
  .tweak-opts { display: flex; gap: 4px; flex-wrap: wrap; }
  .tweak-opts button {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid var(--rule);
    background: var(--paper);
    color: var(--ink-2);
    cursor: pointer;
    font-size: 12px;
    border-radius: 2px;
    min-width: 60px;
  }
  .tweak-opts button.active {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .swatches { display: flex; gap: 6px; }
  .swatch {
    width: 28px; height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--rule);
  }
  .swatch.active { border-color: var(--ink); transform: scale(1.1); }
  .swatch[data-swatch="solar"] { background: oklch(0.72 0.15 60); }
  .swatch[data-swatch="dusk"] { background: oklch(0.60 0.17 330); }
  .swatch[data-swatch="forest"] { background: oklch(0.58 0.14 155); }
  .swatch[data-swatch="press"] { background: oklch(0.52 0.22 28); }

  /* density */
  [data-density="relaxed"] .hero { padding: 44px 0 20px; }
  [data-density="relaxed"] .section { padding: 64px 0; }
  [data-density="relaxed"] .series-grid { grid-template-columns: repeat(3, 1fr); }

  /* ===== LIVE HUB ===== */
  .live-hub {
    position: relative;
    background: oklch(0.14 0.012 60);
    color: var(--paper);
    padding: 56px 0 48px;
    overflow: hidden;
    margin-top: 24px;
  }
  .live-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 700px 400px at 10% 0%, oklch(0.3 0.08 55 / 0.6), transparent 60%),
      radial-gradient(ellipse 600px 500px at 90% 100%, oklch(0.3 0.10 220 / 0.35), transparent 60%);
    pointer-events: none;
  }
  .live-container { position: relative; z-index: 2; }
  .live-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  .live-head-left { display: flex; align-items: center; gap: 20px; }
  .pill-live.xl {
    font-size: 13px; padding: 8px 14px;
    background: var(--live);
    font-family: 'IBM Plex Sans', system-ui, sans-serif;
    font-weight: 800;
    color: white;
    display: inline-flex; align-items: center; gap: 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .live-eyebrow {
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--brand); font-weight: 700; margin-bottom: 4px;
  }
  .live-title {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.025em;
    margin: 0;
    color: white;
  }
  .live-title em { color: var(--brand); font-style: italic; font-weight: 400; }
  .live-clock {
    text-align: right;
    border-left: 1px solid oklch(0.4 0.01 60);
    padding-left: 20px;
  }
  .clock-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 32px;
    font-weight: 500;
    color: var(--brand);
    letter-spacing: 0.02em;
    line-height: 1;
  }
  .clock-label {
    font-size: 11px;
    color: oklch(0.7 0.01 60);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
  }

  .live-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
  }

  /* PLAYER */
  .live-player {
    background: oklch(0.10 0.01 60);
    border: 1px solid oklch(0.25 0.01 60);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .player-video {
    position: relative;
    aspect-ratio: 16/9;
    background: oklch(0.05 0.005 60);
    overflow: hidden;
  }
  .player-video .stripes {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      135deg,
      oklch(0.22 0.012 60),
      oklch(0.22 0.012 60) 18px,
      oklch(0.18 0.012 60) 18px,
      oklch(0.18 0.012 60) 36px
    );
  }
  .player-watermark {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--live);
    color: white;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    border-radius: 2px;
    display: inline-flex; align-items: center; gap: 6px;
    z-index: 3;
    box-shadow: 0 4px 14px oklch(0.55 0.22 25 / 0.4);
  }
  .player-lower-third {
    position: absolute;
    left: 0; bottom: 0; right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, oklch(0.08 0.01 60 / 0.95), oklch(0.08 0.01 60 / 0.4) 60%, transparent);
    z-index: 3;
  }
  .lt-label {
    display: inline-block;
    background: var(--brand);
    color: var(--brand-ink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    padding: 3px 8px;
    border-radius: 2px;
    margin-bottom: 8px;
  }
  .lt-title {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 4px;
    color: white;
  }
  .lt-sub {
    font-size: 13px;
    color: oklch(0.85 0.008 80);
  }
  .player-center {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
  }
  .play-big {
    width: 84px; height: 84px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--brand-ink);
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 20px 50px oklch(0.5 0.16 55 / 0.5);
    transition: all 0.2s;
  }
  .play-big:hover { transform: scale(1.06); background: oklch(0.8 0.15 60); }
  .player-center.playing .play-big { opacity: 0; pointer-events: none; }
  .player-eq {
    position: absolute;
    left: 24px; top: 50%; transform: translateY(-50%);
    display: none;
    gap: 3px;
    height: 28px;
    align-items: flex-end;
    z-index: 3;
  }
  .player-eq span {
    width: 3px; background: var(--brand);
    animation: eq 0.9s ease-in-out infinite;
  }
  .player-eq span:nth-child(1) { animation-delay: 0s; height: 40%; }
  .player-eq span:nth-child(2) { animation-delay: 0.1s; height: 70%; }
  .player-eq span:nth-child(3) { animation-delay: 0.2s; height: 50%; }
  .player-eq span:nth-child(4) { animation-delay: 0.3s; height: 90%; }
  .player-eq span:nth-child(5) { animation-delay: 0.15s; height: 60%; }
  .player-eq span:nth-child(6) { animation-delay: 0.25s; height: 80%; }
  .player-eq span:nth-child(7) { animation-delay: 0.05s; height: 45%; }
  .player-eq span:nth-child(8) { animation-delay: 0.35s; height: 75%; }
  .player-video.playing .player-eq { display: flex; }
  @keyframes eq {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
  }

  .player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: oklch(0.12 0.01 60);
    border-top: 1px solid oklch(0.22 0.01 60);
    font-size: 12px;
    color: oklch(0.85 0.008 80);
  }
  .pc-btn {
    background: transparent;
    border: 1px solid oklch(0.25 0.01 60);
    color: oklch(0.85 0.008 80);
    padding: 6px 10px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .pc-btn:hover { border-color: var(--brand); color: var(--brand); }
  .pc-btn.sm { padding: 5px 9px; font-size: 10px; }
  .pc-live {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--live);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 10px;
  }
  .pc-live .pulse { background: var(--live); }
  .pc-title { color: white; font-weight: 500; }
  .pc-spacer { flex: 1; }
  .pc-vol { display: flex; align-items: center; gap: 8px; }
  .pc-vol input[type=range] {
    width: 80px; accent-color: var(--brand);
  }

  .player-meta {
    padding: 20px 24px;
    display: flex; justify-content: space-between; gap: 20px;
    border-top: 1px solid oklch(0.22 0.01 60);
    background: oklch(0.11 0.01 60);
  }
  .pm-title {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .pm-title em { font-style: italic; color: var(--brand); font-weight: 400; }
  .pm-sub { font-size: 13px; color: oklch(0.75 0.008 80); line-height: 1.5; max-width: 50ch; }
  .pm-right { text-align: right; flex-shrink: 0; }
  .viewers {
    font-size: 12px;
    color: oklch(0.82 0.008 80);
    display: inline-flex; align-items: center; gap: 6px;
    margin-bottom: 10px;
  }
  .viewers .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: oklch(0.65 0.18 145);
    animation: pulse 1.8s ease-in-out infinite;
  }
  .share-row { display: flex; gap: 6px; justify-content: flex-end; }

  .block-progress {
    padding: 14px 24px 20px;
    background: oklch(0.11 0.01 60);
    border-top: 1px solid oklch(0.22 0.01 60);
  }
  .bp-label {
    font-size: 11px;
    color: oklch(0.7 0.008 80);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: flex; justify-content: space-between;
  }
  .bp-label span { color: var(--brand); }
  .bp-bar {
    height: 4px;
    background: oklch(0.22 0.01 60);
    border-radius: 2px;
    overflow: hidden;
  }
  .bp-fill {
    height: 100%;
    background: linear-gradient(to right, var(--brand), oklch(0.82 0.12 80));
    width: 37%;
    transition: width 1s linear;
  }

  /* SCHEDULE */
  .live-schedule {
    background: oklch(0.10 0.01 60);
    border: 1px solid oklch(0.22 0.01 60);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .schedule-tabs {
    display: flex;
    border-bottom: 1px solid oklch(0.22 0.01 60);
    background: oklch(0.12 0.01 60);
  }
  .st-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: oklch(0.7 0.008 80);
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 10px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
  }
  .st-btn.active { color: white; border-bottom-color: var(--brand); background: oklch(0.10 0.01 60); }
  .schedule-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-height: 520px;
    overflow-y: auto;
  }
  .schedule-list::-webkit-scrollbar { width: 6px; }
  .schedule-list::-webkit-scrollbar-thumb { background: oklch(0.3 0.01 60); border-radius: 3px; }
  .sched-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid oklch(0.18 0.01 60);
    cursor: pointer;
    position: relative;
  }
  .sched-item:hover { background: oklch(0.14 0.01 60); }
  .sched-item.now {
    background: oklch(0.16 0.02 55);
    border-left: 3px solid var(--live);
    padding-left: 13px;
  }
  .sched-item.now::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--live);
  }
  .sched-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--brand);
    font-weight: 500;
    line-height: 1.3;
  }
  .sched-time .end { color: oklch(0.55 0.01 60); font-size: 10px; display: block; }
  .sched-body h6 {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 2px;
    color: white;
    letter-spacing: -0.01em;
    line-height: 1.15;
  }
  .sched-body .host {
    font-size: 11px;
    color: oklch(0.7 0.008 80);
  }
  .sched-tag {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 2px;
    align-self: flex-start;
    white-space: nowrap;
  }
  .sched-tag.ao-vivo { background: var(--live); color: white; }
  .sched-tag.est { background: var(--brand); color: var(--brand-ink); }
  .sched-tag.rep { background: oklch(0.22 0.01 60); color: oklch(0.7 0.008 80); }
  .sched-tag.esp { background: oklch(0.55 0.14 220); color: white; }
  .schedule-more {
    padding: 14px 16px;
    border-top: 1px solid oklch(0.22 0.01 60);
    font-size: 12px;
    color: var(--brand);
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .schedule-more:hover { background: oklch(0.14 0.01 60); }

  /* CHANNELS */
  .channels-strip {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid oklch(0.22 0.01 60);
  }
  .cs-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: oklch(0.7 0.008 80);
    font-weight: 700;
    margin-bottom: 12px;
  }
  .cs-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
  .channel-card {
    background: oklch(0.12 0.01 60);
    border: 1px solid oklch(0.22 0.01 60);
    border-radius: 3px;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 8px 1fr auto;
    gap: 10px;
    align-items: center;
    color: white;
    transition: all 0.15s;
  }
  .channel-card:hover { border-color: var(--brand); transform: translateY(-2px); }
  .channel-card.active { border-color: var(--brand); background: oklch(0.14 0.02 60); }
  .ch-dot { width: 8px; height: 8px; border-radius: 50%; }
  .ch-name { font-weight: 600; font-size: 13px; }
  .ch-now { font-size: 11px; color: oklch(0.68 0.008 80); margin-top: 2px; }
  .ch-live .pulse { background: var(--live); width: 8px; height: 8px; border-radius: 50%; display: block; }

  @media (max-width: 1100px) {
    .live-grid { grid-template-columns: 1fr; }
    .cs-list { grid-template-columns: repeat(2, 1fr); }
    .live-title { font-size: 32px; }
    .lt-title { font-size: 22px; }
    .player-meta { flex-direction: column; }
    .pm-right { text-align: left; }
    .share-row { justify-content: flex-start; }
  }

  @media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-main { grid-template-columns: 1fr; border-right: none; padding-right: 0; }
    .two-col { grid-template-columns: 1fr; }
    .featured-series { grid-template-columns: 1fr; gap: 20px; }
    .series-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .guests-row { grid-template-columns: 1fr; }
    .newsletter-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .masthead-side.left, .masthead-side.right { display: none; }
    .masthead-row { grid-template-columns: 1fr; }
    .ep-hero-content h1 { font-size: 40px; }
    .ep-body { grid-template-columns: 1fr; }
  }


/* Complementos TV Humana 2026, integração PHP */
.media img { width:100%; height:100%; object-fit:cover; display:block; position:absolute; inset:0; z-index:0; }
.media.has-img .stripes { opacity:.18; }
.card-link { display:block; }
.page-shell { padding:48px 0 72px; }
.page-title { font-family:'IBM Plex Serif', Georgia, serif; font-size:56px; line-height:1; margin:0 0 10px; letter-spacing:-.035em; }
.page-intro { color:var(--ink-2); max-width:70ch; font-size:17px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.content-card { border-top:3px solid var(--ink); background:var(--paper-2); padding:18px; min-height:100%; }
.content-card h3 { font-family:'IBM Plex Serif', Georgia, serif; font-size:24px; line-height:1.1; margin:12px 0 8px; }
.content-card p { color:var(--ink-2); }
.detail-layout { display:grid; grid-template-columns:minmax(0,1fr) 340px; gap:42px; align-items:start; }
.detail-content { font-size:18px; line-height:1.7; color:var(--ink-2); }
.detail-content h2,.detail-content h3 { font-family:'IBM Plex Serif', Georgia, serif; color:var(--ink); line-height:1.15; }
.detail-cover { margin:22px 0; }
.detail-cover .media { aspect-ratio:16/9; }
.sidebar-box { background:var(--paper-2); border-top:3px solid var(--brand); padding:20px; margin-bottom:20px; }
.sidebar-box h4 { margin:0 0 12px; font-family:'IBM Plex Serif', Georgia, serif; font-size:24px; }
.search-form-main { display:flex; gap:10px; margin:24px 0 32px; }
.search-form-main input { flex:1; padding:14px 16px; border:1px solid var(--rule); background:var(--paper); color:var(--ink); font:inherit; }
.alert-note { padding:14px 16px; border:1px solid var(--rule); background:var(--paper-2); color:var(--ink-2); }
@media(max-width:1100px){.grid-3,.grid-4,.detail-layout{grid-template-columns:1fr}.page-title{font-size:42px}.article-item{grid-template-columns:1fr}.article-item .media{order:-1}}

/* ===== PAGES EXTRAS (equipe, convidados, programação) ===== */

/* Page Shell comum */
.page-banner {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 0 40px;
  border-bottom: 3px solid var(--brand);
}
.page-banner .kicker { color: var(--brand); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.page-banner h1 { font-family: 'IBM Plex Serif', Georgia, serif; font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -.035em; margin: 0 0 12px; }
.page-banner .lead { color: oklch(0.78 0.008 80); max-width: 60ch; font-size: 17px; }

/* Equipe */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 48px 0; }
.team-card { background: var(--paper-2); border-top: 3px solid var(--brand); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.team-photo { aspect-ratio: 3/4; overflow: hidden; background: var(--paper-3); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .4s; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info { padding: 16px 18px 18px; }
.team-info .name { font-family: 'IBM Plex Serif', Georgia, serif; font-size: 18px; font-weight: 600; margin: 0 0 4px; }
.team-info .role { font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; }
.team-socials { margin-top: 10px; display: flex; gap: 8px; }
.team-socials a { color: var(--ink-3); font-size: 13px; }
.team-socials a:hover { color: var(--brand-deep); }

/* Convidados */
.guests-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 48px 0; }
.guest-card { display: flex; gap: 18px; padding: 20px; background: var(--paper-2); border-left: 3px solid var(--brand); align-items: flex-start; transition: background .2s; }
.guest-card:hover { background: var(--paper-3); }
.guest-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; object-position: top; flex-shrink: 0; border: 2px solid var(--rule); }
.guest-info .name { font-family: 'IBM Plex Serif', Georgia, serif; font-size: 17px; font-weight: 600; margin: 0 0 4px; }
.guest-info .role { font-size: 12px; color: var(--brand-deep); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.guest-info .bio { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* Programação */
.schedule-page { padding: 48px 0; }
.schedule-date-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--rule); margin-bottom: 32px; overflow-x: auto; }
.sdt-btn { background: none; border: none; font: inherit; font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--ink-3); padding: 12px 20px; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap; }
.sdt-btn.active { color: var(--ink); border-bottom-color: var(--brand); }
.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table tr { border-bottom: 1px solid var(--rule); }
.schedule-table tr:hover { background: var(--paper-2); }
.schedule-table td { padding: 14px 12px; vertical-align: middle; }
.sched-col-time { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--brand); width: 80px; white-space: nowrap; }
.sched-col-program { font-family: 'IBM Plex Serif', Georgia, serif; font-size: 16px; font-weight: 600; }
.sched-col-program small { display: block; font-family: 'IBM Plex Sans', sans-serif; font-size: 12px; color: var(--ink-3); font-weight: 400; margin-top: 2px; }
.sched-col-tag { text-align: right; }
.sched-col-tag .tag { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }
.tag-live { background: var(--live); color: white; }
.tag-estreia { background: var(--brand); color: var(--brand-ink); }
.tag-reprise { background: var(--paper-3); color: var(--ink-3); border: 1px solid var(--rule); }
.sched-row-now { background: oklch(0.96 0.015 55 / .3) !important; }
.sched-row-now .sched-col-time { color: var(--live); }

/* Episodio detail */
.ep-hero { background: var(--ink); color: var(--paper); padding: 0; position: relative; overflow: hidden; }
.ep-hero-bg { position: absolute; inset: 0; z-index: 0; }
.ep-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .18; filter: blur(2px); }
.ep-hero-content { position: relative; z-index: 1; padding: 60px 0 48px; }
.ep-hero-content .kicker { color: var(--brand); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.ep-hero-content h1 { font-family: 'IBM Plex Serif', Georgia, serif; font-size: clamp(32px, 5vw, 60px); line-height: 1.02; letter-spacing: -.035em; max-width: 18ch; margin: 0 0 16px; }
.ep-hero-content .lead { color: oklch(0.80 0.008 80); max-width: 60ch; font-size: 17px; line-height: 1.5; }
.ep-body { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 48px; padding: 48px 0 72px; align-items: start; }
.ep-player-wrap { position: relative; aspect-ratio: 16/9; background: #000; border-radius: 3px; overflow: hidden; }
.ep-player-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.ep-player-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: oklch(0.08 0.01 60); color: oklch(0.7 0.008 80); gap: 12px; }
.ep-actions { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }
.ep-meta-table { margin-top: 24px; }
.ep-meta-table tr td:first-child { font-weight: 700; color: var(--ink-3); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; padding-right: 16px; padding-bottom: 8px; }
.ep-meta-table tr td:last-child { color: var(--ink-2); }
.sidebar-related h4 { font-family: 'IBM Plex Serif', Georgia, serif; font-size: 20px; margin: 0 0 16px; border-bottom: 2px solid var(--brand); padding-bottom: 10px; }
.related-ep { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--rule); }
.related-ep:hover { background: var(--paper-2); margin: 0 -12px; padding: 12px; }
.related-ep .thumb { width: 80px; height: 54px; object-fit: cover; flex-shrink: 0; background: var(--paper-3); }
.related-ep .info .title { font-size: 14px; font-weight: 600; line-height: 1.3; margin-bottom: 2px; }
.related-ep .info .meta { font-size: 11px; color: var(--ink-3); }

/* Artigo detail */
/* ── Artigo: hero — imagem 50% esquerda, título 50% direita ── */
.article-hero {
  background: transparent;
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.article-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 420px;
}
@media(max-width:720px) {
  .article-hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .article-hero-img { aspect-ratio: 16/9 !important; }
}
.article-hero-img {
  overflow: hidden;
  background: var(--paper-3);
}
.article-hero-img--empty {
  background: var(--paper-2);
}
.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.article-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 48px 48px 48px 56px;
}
.article-hero .kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-deep);
}
.article-hero h1 {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin: 0;
}

/* ── Artigo: fundo transparente — anula background inline do HTML do banco ── */
.article-body {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 19px;
  line-height: 1.72;
  color: var(--ink-2);
  background: transparent !important;
}
.article-body * {
  background-color: transparent !important;
  background-image: none !important;
}
.article-body p { margin: 0 0 1.5em; }
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 56px; padding: 48px 0 72px; align-items: start; }
.article-body { font-family: 'IBM Plex Serif', Georgia, serif; font-size: 19px; line-height: 1.72; color: var(--ink-2); background: transparent; }
.article-body p { margin: 0 0 1.5em; }
.article-body h2, .article-body h3 { font-family: 'IBM Plex Serif', Georgia, serif; color: var(--ink); line-height: 1.1; letter-spacing: -.025em; margin: 1.8em 0 .6em; }
.article-body h2 { font-size: 32px; }
.article-body h3 { font-size: 24px; }
.article-byline { display: flex; align-items: center; gap: 12px; padding: 16px 0 24px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin-bottom: 32px; }
.article-byline .author-name { font-weight: 700; font-size: 14px; }
.article-byline .meta { font-size: 12px; color: var(--ink-3); }

/* Missão / Propósito */
.mission-body { max-width: 68ch; padding: 56px 0 72px; }
.mission-body h2 { font-family: 'IBM Plex Serif', Georgia, serif; font-size: 36px; font-weight: 600; letter-spacing: -.025em; margin: 2em 0 .5em; color: var(--ink); }
.mission-body h2:first-child { margin-top: 0; }
.mission-body p { font-size: 18px; line-height: 1.7; color: var(--ink-2); margin: 0 0 1.2em; }
.mission-body .highlight { font-family: 'IBM Plex Serif', Georgia, serif; font-size: 22px; line-height: 1.45; color: var(--ink); border-left: 4px solid var(--brand); padding-left: 20px; margin: 2em 0; }

/* Busca */
.search-header { padding: 48px 0 32px; border-bottom: 1px solid var(--rule); }
.search-header h1 { font-family: 'IBM Plex Serif', Georgia, serif; font-size: 40px; letter-spacing: -.03em; margin: 0 0 20px; }
.search-form { display: flex; gap: 0; max-width: 640px; }
.search-form input { flex: 1; padding: 14px 18px; border: 2px solid var(--rule); border-right: none; font: inherit; font-size: 16px; background: var(--paper); color: var(--ink); outline: none; }
.search-form input:focus { border-color: var(--brand); }
.search-form button { padding: 14px 24px; background: var(--ink); color: var(--paper); border: none; font: inherit; font-weight: 700; cursor: pointer; }
.search-form button:hover { background: var(--brand-deep); }
.search-results { padding: 40px 0 72px; }
.search-section-title { font-family: 'IBM Plex Serif', Georgia, serif; font-size: 26px; margin: 0 0 20px; padding-bottom: 10px; border-bottom: 2px solid var(--rule); }
.search-section-title em { color: var(--brand-deep); font-style: italic; }
.no-results { padding: 60px 0; text-align: center; color: var(--ink-3); font-size: 18px; }

/* Contato */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px 0 72px; }
.contact-form label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; color: var(--ink-2); }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 12px 14px; border: 1px solid var(--rule); background: var(--paper); color: var(--ink); font: inherit; font-size: 15px; margin-bottom: 18px; outline: none; border-radius: 2px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--brand); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-info h3 { font-family: 'IBM Plex Serif', Georgia, serif; font-size: 24px; margin: 0 0 16px; }
.contact-info p { color: var(--ink-2); line-height: 1.6; margin: 0 0 20px; }
.contact-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.contact-socials a { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--paper-2); border: 1px solid var(--rule); font-size: 13px; font-weight: 600; color: var(--ink); transition: all .15s; }
.contact-socials a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Ao Vivo */
.live-page { padding: 56px 0 72px; }
.live-page-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.live-iframe-wrap { position: relative; aspect-ratio: 16/9; background: #000; overflow: hidden; border-radius: 3px; }
.live-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.live-info-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--live); color: white; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 6px 12px; border-radius: 2px; margin-bottom: 16px; }
.live-on-air-title { font-family: 'IBM Plex Serif', Georgia, serif; font-size: 24px; font-weight: 600; margin: 0 0 8px; }
.live-on-air-sub { font-size: 14px; color: var(--ink-3); }

/* Privacidade / Termos */
.legal-body { max-width: 72ch; padding: 56px 0 72px; }
.legal-body h2 { font-family: 'IBM Plex Serif', Georgia, serif; font-size: 24px; margin: 2em 0 .5em; }
.legal-body p { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin: 0 0 1em; }
.legal-body ul { padding-left: 1.4em; color: var(--ink-2); }
.legal-body li { margin-bottom: .5em; line-height: 1.6; }

/* Botões */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border: 2px solid var(--ink); background: transparent; color: var(--ink); font: inherit; font-size: 13px; font-weight: 700; letter-spacing: .04em; cursor: pointer; text-decoration: none; transition: all .15s; }
.btn:hover { background: var(--ink); color: var(--paper); }
.btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-primary:hover { background: var(--brand-deep); border-color: var(--brand-deep); }
.btn-brand { background: var(--brand); color: var(--brand-ink); border-color: var(--brand); }
.btn-brand:hover { background: var(--brand-deep); border-color: var(--brand-deep); color: var(--paper); }
.btn-sm { padding: 7px 13px; font-size: 12px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* Newsletter section */
.newsletter-section { background: var(--ink); color: var(--paper); padding: 64px 0; border-top: 3px solid var(--brand); }
.newsletter-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.newsletter-section h3 { font-family: 'IBM Plex Serif', Georgia, serif; font-size: 36px; line-height: 1.1; letter-spacing: -.025em; margin: 0 0 10px; }
.newsletter-section p { color: oklch(0.72 0.008 80); font-size: 16px; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input { flex: 1; padding: 14px 18px; background: oklch(0.25 0.01 60); border: 1px solid oklch(0.35 0.01 60); color: var(--paper); font: inherit; font-size: 15px; outline: none; }
.newsletter-form input::placeholder { color: oklch(0.55 0.008 80); }
.newsletter-form input:focus { border-color: var(--brand); }
.newsletter-form button { padding: 14px 24px; background: var(--brand); color: var(--brand-ink); border: none; font: inherit; font-weight: 800; cursor: pointer; font-size: 14px; }
.newsletter-form button:hover { background: oklch(0.80 0.15 60); }

/* Responsive extras */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .guests-grid { grid-template-columns: repeat(2, 1fr); }
  .ep-body { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .live-page-grid { grid-template-columns: 1fr; }
  .newsletter-section .container { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .guests-grid { grid-template-columns: 1fr; }
  .schedule-table td { padding: 10px 6px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   AJUSTE #4 — Logo no nav quando scrollado
   ═══════════════════════════════════════════════════════════════════════════
   .nav-sticky-logo existe sempre no DOM mas fica oculto.
   Quando JS adiciona .nav--scrolled ao <nav>, o logo aparece
   com transição suave imediatamente à esquerda do link "Início".
   ═══════════════════════════════════════════════════════════════════════════ */

/* Logo oculto por padrão */
.nav-sticky-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  margin-right: 0;
  transition:
    max-width  0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity    0.30s ease,
    margin-right 0.35s ease;
  pointer-events: none;    /* não ocupa espaço no tab order quando oculto */
  text-decoration: none;
}

.nav-sticky-logo img {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* Logo visível quando nav está preso no topo */
.nav--scrolled .nav-sticky-logo {
  max-width: 120px;        /* largura máxima que o logo pode ocupar */
  opacity: 1;
  margin-right: 8px;
  pointer-events: auto;
}

/* Separador sutil entre logo e primeiro item do menu */
.nav--scrolled .nav-sticky-logo::after {
  content: '';
  display: block;
  width: 1px;
  height: 20px;
  background: var(--rule);
  margin-left: 12px;
  flex-shrink: 0;
}

/* dark mode: inverte o logo para ficar branco sobre fundo escuro */
[data-mode="dark"] .nav-sticky-logo img {
  filter: brightness(0) invert(1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   AJUSTE #3 — Remove espaço onde estava a .tagline
   (a div foi removida do HTML; esta regra é defensiva caso reste markup)
   ═══════════════════════════════════════════════════════════════════════════ */
.masthead .tagline { display: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   BOTÃO AO VIVO NO NAV
   Pill com cor vermelha (--live) e bolinha pulsante, igual à utility bar.
   ═══════════════════════════════════════════════════════════════════════════ */
/* Botão "NO AR 24H" no nav — clone exato do .pill-live da utility bar */
.nav-live-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  background: var(--live);
  color: white;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: 4px;
  transition: background 0.15s;
}
.nav-live-btn:hover {
  background: oklch(0.52 0.22 25);
  color: white;
}
.nav-live-btn .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   GRADE — linhas discretas para vinhetas/intervalos
   ═══════════════════════════════════════════════════════════════════════════ */
.sched-row-tiny td {
  opacity: 0.45;
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PÁGINA DE SÉRIE — apresentadores + abas de temporada
   ═══════════════════════════════════════════════════════════════════════════ */

/* Faixa de apresentadores */
.program-presenters {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--paper-2);
  border-left: 3px solid var(--brand);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.program-presenters-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
  flex-shrink: 0;
}
.program-presenters-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.program-presenter-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.program-presenter-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: oklch(0.72 0.15 60 / .15);
  border: 1.5px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-deep);
  flex-shrink: 0;
}
.program-presenter-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.program-presenter-role {
  font-size: 11px;
  color: var(--ink-3);
}

/* Abas de temporada */
.program-season-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 2px solid var(--rule);
  margin-bottom: 28px;
  overflow-x: auto;
}
.program-season-btn {
  background: none;
  border: none;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  padding: 10px 18px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color .15s;
}
.program-season-btn:hover { color: var(--ink); }
.program-season-btn.active {
  color: var(--ink);
  border-bottom-color: var(--brand);
}
.program-season-count {
  margin-left: auto;
  font-size: 12px;
  color: var(--ink-3);
  padding: 0 8px;
  white-space: nowrap;
}



/* ═══════════════════════════════════════════════════════════════════════════
   PLAYER HOME — layout fiel ao protótipo
   ═══════════════════════════════════════════════════════════════════════════ */

/* Wrapper do iframe com overlay embutido */
.live-player-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
  overflow: hidden;
}
.live-player-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Overlay inferior sobre o iframe: badge + nome + título */
.live-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
  pointer-events: none;
}
.live-overlay-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--brand);
  color: var(--brand-ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 8px;
  margin-bottom: 8px;
}
.live-overlay-badge .pulse { background: var(--brand-ink); }
.live-overlay-programa {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  color: white;
  line-height: 1.1;
  margin-bottom: 4px;
}
.live-overlay-titulo {
  font-size: 13px;
  color: oklch(0.78 0.008 80);
}

/* Painel abaixo do player: descrição + barra */
.live-info-panel {
  background: oklch(0.10 0.01 60);
  color: white;
  padding: 14px 18px 16px;
  border-top: 1px solid oklch(0.20 0.01 60);
}
.live-info-ep {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}
.live-info-desc {
  font-size: 12px;
  color: oklch(0.68 0.008 80);
  line-height: 1.55;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.live-info-progress-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: oklch(0.50 0.008 80);
  margin-bottom: 6px;
}
.live-info-progress-bar {
  height: 3px;
  background: oklch(0.22 0.01 60);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 5px;
}
.live-info-progress-fill {
  height: 100%;
  background: var(--brand);
  border-radius: 2px;
}
.live-info-progress-meta {
  display: flex;
  justify-content: flex-end;
}
.live-info-termina {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: .08em;
}
/* ═══════════════════════════════════════════════════════════════════════════
   NEWSLETTER — formulário reutilizável
   ═══════════════════════════════════════════════════════════════════════════ */
.nw-form { display: flex; flex-direction: column; gap: 8px; }
.nw-form input[type="text"],
.nw-form input[type="email"] {
  padding: 9px 12px;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: border-color .15s;
}
.nw-form input:focus { border-color: var(--brand); }
.nw-row { display: flex; gap: 0; }
.nw-row input[type="email"] { flex: 1; border-right: none; }
.nw-row button {
  padding: 9px 18px;
  background: var(--brand);
  color: var(--brand-ink);
  border: 1px solid var(--brand);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .15s;
}
.nw-row button:hover { opacity: .85; }
.nw-row button:disabled { opacity: .5; cursor: default; }
.nw-feedback {
  font-size: 13px;
  margin-top: 4px;
  line-height: 1.4;
}
.nw-note { font-size: 12px; color: oklch(0.55 0.008 80); margin-top: 2px; }

/* Versão compacta (sidebar) */
.nw-compact .nw-row input[type="email"] { font-size: 13px; }
.nw-compact .nw-row button { font-size: 12px; padding: 8px 14px; }
