/* ============================================================
   B9 PODCASTS — CSS portado do protótipo (b9-podcasts-v2).
   Usa os tokens v8 definidos em b9-home.css (--display, --red, --ink…).
   ============================================================ */
/* alias do container: as páginas de podcast usam .b9-wrap == .wrap */
.b9-wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   B9 — PODCASTS (vitrine da rede + página de programa)
   Carregado depois de b9-v6 + v7 + v8 + b9-article-v2 + b9-archive
   (reaproveita raio, header, sticky, footer e tokens).
   A seção de podcasts NÃO é um arquivo comum: é vitrine de
   programas + porta de entrada para áudio e vídeo.
   ============================================================ */

.pod-page .art-fold { background: #fff; }
.pod-main { position: relative; z-index: 1; }

/* label vermelho com raio (compartilhado) ───────────────── */
.pod-label {
  font-family: var(--mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red);
  margin: 0 0 18px; display: inline-flex; align-items: center; gap: 9px;
}
.pod-label::before {
  content: ""; width: 13px; height: 10px; background: var(--red);
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
}

/* ── 1 · HERO DA REDE ─────────────────────────────────────── */
.pod-hero { padding: clamp(34px, 5vw, 64px) 0 clamp(34px, 4vw, 56px); }
.pod-hero__inner {
  display: grid; grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(34px, 5vw, 78px); align-items: center;
}
.pod-hero__title {
  font-family: var(--display); font-weight: 700; letter-spacing: -0.032em;
  font-size: clamp(38px, 4.8vw, 70px); line-height: 1.0; color: var(--ink);
  margin: 0; text-wrap: balance;
}
[data-type="franklin"] .pod-hero__title, [data-type="atf"] .pod-hero__title { font-weight: 800; }
.pod-hero__sub {
  font-family: var(--serif); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5;
  color: var(--fg-soft); margin: 22px 0 0; max-width: 52ch; text-wrap: pretty;
}
.pod-hero__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* botões base ─────────────────────────────────────────────── */
.pod-cta, .pod-cta--ghost {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 15px 24px;
  cursor: pointer; transition: background .16s, color .16s, border-color .16s, transform .16s, box-shadow .16s;
}
.pod-cta { background: var(--ink); color: #fff; border: 1px solid var(--ink); }
.pod-cta:hover { background: var(--red); border-color: var(--red); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.16); }
.pod-cta span { transition: transform .16s; }
.pod-cta:hover span { transform: translateX(3px); }
.pod-cta--ghost { background: #fff; color: var(--ink); border: 1px solid var(--ink); }
.pod-cta--ghost:hover { background: var(--ink); color: #fff; }

/* colagem de capas (vitrine, escalonada em 2 colunas) ─────── */
.pod-hero__covers { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 1.3vw, 18px); }
.pod-hero__col { display: flex; flex-direction: column; gap: clamp(12px, 1.3vw, 18px); }
.pod-hero__col--b { margin-top: clamp(26px, 3.4vw, 50px); }
.pod-cover {
  aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden;
  background: var(--paper-2); display: block;
  box-shadow: 0 10px 30px rgba(22,20,15,.12); transition: transform .28s, box-shadow .28s;
}
.pod-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pod-hero__covers .pod-cover:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(22,20,15,.22); }

/* ── 2 · NO AR AGORA (bloco escuro, com pulso) ────────────── */
.pod-live { background: var(--ink); color: #fff; padding: clamp(46px, 5.2vw, 84px) 0; }
.pod-live__head { display: flex; align-items: center; gap: 12px; margin-bottom: clamp(26px, 3vw, 40px); }
.pod-live__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--red); flex-shrink: 0; box-shadow: 0 0 0 0 rgba(255,62,54,.6); animation: podpulse 1.9s ease-out infinite; }
@keyframes podpulse { 0% { box-shadow: 0 0 0 0 rgba(255,62,54,.55); } 70% { box-shadow: 0 0 0 12px rgba(255,62,54,0); } 100% { box-shadow: 0 0 0 0 rgba(255,62,54,0); } }
@media (prefers-reduced-motion: reduce) { .pod-live__dot { animation: none; } }
.pod-live__kicker { font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; }
.pod-live__grid { display: grid; grid-template-columns: minmax(0, 2.05fr) minmax(0, 1fr); gap: clamp(28px, 3vw, 52px); align-items: start; }

/* episódio principal (destaque, escuro) — thumb 16:9 grande no topo, texto cheio embaixo */
.pod-feat { display: flex; flex-direction: column; gap: clamp(18px, 1.9vw, 26px); }
.pod-feat__cover { aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; background: #000; box-shadow: 0 14px 40px rgba(0,0,0,.4); display: block; position: relative; }
.pod-feat__cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s; position: relative; z-index: 1; }
.pod-feat:hover .pod-feat__cover img { transform: scale(1.04); }
.pod-feat__body { min-width: 0; }
.pod-feat__show { font-family: var(--mono); font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); }
.pod-feat--light .pod-feat__show { color: var(--red); }
.pod-feat__title {
  font-family: var(--display); font-weight: 700; letter-spacing: -0.026em;
  font-size: clamp(28px, 3.2vw, 48px); line-height: 1.02; margin: 12px 0 0; color: #fff; text-wrap: pretty;
}
[data-type="franklin"] .pod-feat__title, [data-type="atf"] .pod-feat__title { font-weight: 800; }
.pod-feat__dek { font-family: var(--serif); font-size: clamp(16px, 1.3vw, 18.5px); line-height: 1.5; color: rgba(255,255,255,.74); margin: 14px 0 0; max-width: 52ch; text-wrap: pretty; }
.pod-feat__meta { margin: 18px 0 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.55); }
/* CTA principal em destaque; plataformas como linha secundária abaixo */
/* títulos de episódio/programa clicáveis: o link herda a cor do título
   e marca no hover (sem decoração de link padrão). */
.pod-feat__title a, .pcard__name a, .pod-side__title a { color: inherit; text-decoration: none; transition: color .16s; }
.pod-feat__title a:hover { color: var(--yellow); }
.pod-feat--light .pod-feat__title a:hover { color: var(--red); }
.pcard__name a:hover { color: var(--red); }
.pod-feat__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; margin-top: 28px; }
.pod-play {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--yellow); color: var(--black); border: none; padding: 16px 28px; cursor: pointer;
  transition: background .16s, transform .16s, box-shadow .16s;
}
.pod-play:hover { background: var(--yellow-deep); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.28); }
.pod-play svg { width: 13px; height: 13px; }

/* mini-links de plataforma */
.pod-platforms { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 4px 14px; }
.pod-platforms__lead { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.pod-platforms a {
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,.78); transition: color .16s;
}
.pod-platforms a:hover { color: #fff; }
.pod-platforms--ink .pod-platforms__lead { color: var(--fg-muted); }
.pod-platforms--ink a { color: var(--fg-soft); }
.pod-platforms--ink a:hover { color: var(--red); }

/* últimos episódios de outros programas (lista lateral, escuro) */
/* lista lateral: máx. 3 episódios da rede, thumbs 16:9 menores */
.pod-side { display: flex; flex-direction: column; }
.pod-side__cap { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.5); padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.16); }
.pod-side__item { display: grid; grid-template-columns: 112px 1fr; gap: 15px; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.pod-side__item:hover .pod-side__title { color: var(--yellow); }
.pod-side__thumb { width: 112px; aspect-ratio: 16 / 9; border-radius: 8px; overflow: hidden; background: #000; position: relative; }
.pod-side__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1; }
.pod-side__show { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
.pod-side__title { font-family: var(--display); font-weight: 700; font-size: 15.5px; line-height: 1.22; color: #fff; margin: 4px 0 0; text-wrap: pretty; transition: color .16s; }
.pod-side__date { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 5px; }
/* link de vitrine ao pé da lista lateral — preenche o vazio e leva ao arquivo */
.pod-side__all { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; margin-top: 20px; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.72); border-bottom: 2px solid var(--red); padding-bottom: 4px; transition: color .16s; }
.pod-side__all:hover { color: #fff; }
.pod-side__all span { transition: transform .16s; }
.pod-side__all:hover span { transform: translateX(3px); }

/* ── 3 · SEÇÕES (cabeçalho padrão) ────────────────────────── */
.pod-sec { padding: clamp(48px, 5.6vw, 92px) 0; }
.pod-sec--alt { background: var(--paper); }
.pod-sec__head { margin-bottom: clamp(28px, 3vw, 44px); }
.pod-sec__eyebrow { font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); display: inline-flex; align-items: center; gap: 9px; }
.pod-sec__eyebrow::before { content: ""; width: 13px; height: 10px; background: var(--red); clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%); }
.pod-sec__title { font-family: var(--display); font-weight: 700; letter-spacing: -0.022em; font-size: clamp(28px, 3vw, 44px); line-height: 1.0; color: var(--ink); margin: 14px 0 0; }
[data-type="franklin"] .pod-sec__title, [data-type="atf"] .pod-sec__title { font-weight: 800; }
.pod-sec__sub { font-family: var(--serif); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.5; color: var(--fg-soft); margin: 12px 0 0; max-width: 50ch; }

/* ── 4 · PROGRAMAS (cards horizontais, 2 col) ─────────────── */
.pod-shows__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.2vw, 30px); }
.pod-shows__grid .pcard {
  display: grid; grid-template-columns: clamp(116px, 13vw, 156px) 1fr; gap: clamp(18px, 1.8vw, 26px);
  background: #fff; border: 1px solid var(--rule); border-radius: 16px; padding: clamp(16px, 1.6vw, 22px);
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.pod-shows__grid .pcard:hover { border-color: rgba(22,20,15,.28); box-shadow: 0 14px 34px rgba(22,20,15,.1); transform: translateY(-2px); }
.pcard__cover { aspect-ratio: 1 / 1; border-radius: 11px; overflow: hidden; background: var(--paper-2); align-self: start; }
.pcard__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pcard__body { display: flex; flex-direction: column; min-width: 0; }
.pcard__name { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: clamp(21px, 2vw, 27px); line-height: 1.0; color: var(--ink); margin: 2px 0 0; }
[data-type="franklin"] .pcard__name, [data-type="atf"] .pcard__name { font-weight: 800; }
.pcard__desc {
  font-family: var(--serif); font-size: 15px; line-height: 1.46; color: var(--fg-soft);
  margin: 10px 0 0; text-wrap: pretty;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: calc(2 * 1.46 * 15px);
}
.pcard__topics { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-muted); margin: 12px 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pcard__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: auto; padding-top: 16px; }
.pcard__more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); border-bottom: 2px solid var(--red); padding-bottom: 3px; transition: color .16s;
}
.pcard__more:hover { color: var(--red); }
.pcard__more span { transition: transform .16s; }
.pcard__more:hover span { transform: translateX(3px); }

/* ── 5 · EPISÓDIOS RECENTES (cards horizontais, 2 col) ───── */
.pod-eps__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(46px, 4.6vw, 72px) clamp(26px, 2.8vw, 46px); }
.ecard { display: grid; grid-template-columns: clamp(160px, 18vw, 236px) 1fr; gap: clamp(20px, 2vw, 28px); align-items: start; }
.ecard__thumb { aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; background: var(--paper-2); position: relative; }
.ecard__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s; position: relative; z-index: 1; }
.ecard:hover .ecard__thumb img { transform: scale(1.05); }
.ecard__play { position: absolute; left: 10px; bottom: 10px; width: 30px; height: 30px; border-radius: 50%; background: rgba(0,0,0,.55); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; }
.ecard__play svg { width: 11px; height: 11px; fill: #fff; margin-left: 1px; }
.ecard__body { display: flex; flex-direction: column; min-width: 0; }
.ecard__show { font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
.ecard__title {
  font-family: var(--display); font-weight: 700; letter-spacing: -0.016em;
  font-size: clamp(19px, 1.6vw, 23px); line-height: 1.2; color: var(--ink); margin: 9px 0 0; text-wrap: pretty;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  min-height: calc(2 * 1.2em);
  transition: color .16s;
}
[data-type="franklin"] .ecard__title, [data-type="atf"] .ecard__title { font-weight: 700; }
.ecard:hover .ecard__title { color: var(--red); }
.ecard__dek {
  font-family: var(--serif); font-size: 15px; line-height: 1.46; color: var(--fg-soft); margin: 10px 0 0; text-wrap: pretty;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: calc(2 * 1.46em);
}
.ecard__foot { display: flex; align-items: center; gap: 14px; margin-top: 15px; }
.ecard__date { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-muted); }
.ecard__cta { font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; transition: color .16s; }
.ecard__cta::before { content: ""; width: 14px; height: 1px; background: var(--rule); }
.ecard:hover .ecard__cta { color: var(--red); }

/* ── LISTA VERTICAL CONFORTÁVEL (página de programa) ───────────
   O usuário já escolheu o programa: priorizar leitura sobre grid.
   Uma coluna, thumb 16:9 à esquerda, título COMPLETO à direita. */
.pod-eps__list { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 1.9vw, 26px); }
.pod-eps__list .ecard {
  grid-template-columns: clamp(208px, 27vw, 324px) 1fr; gap: clamp(22px, 2.4vw, 36px);
  align-items: center; padding-bottom: clamp(18px, 1.9vw, 26px); border-bottom: 1px solid var(--rule);
}
.pod-eps__list .ecard:last-child { border-bottom: 0; padding-bottom: 0; }
.pod-eps__list .ecard__title {
  display: block; -webkit-line-clamp: initial; overflow: visible; min-height: 0;
  font-size: clamp(21px, 1.9vw, 27px); line-height: 1.16; margin-top: 8px;
}
.pod-eps__list .ecard__dek {
  -webkit-line-clamp: 3; min-height: 0; font-size: 15.5px; margin-top: 10px;
}
.pod-eps__list .ecard__foot { margin-top: 14px; }

/* ── ÁREA SEGURA · arte de episódio quadrada/branded em moldura 16:9 ──
   Thumbs reais já em 16:9 usam object-fit: cover (sem corte).
   Artes quadradas (com logo, nº do episódio e título) recebem .is-art:
   a arte inteira aparece via contain, sobre um preenchimento desfocado
   da própria imagem — nada importante é cortado e não há barras chapadas. */
.ecard__thumb.is-art,
.pod-side__thumb.is-art,
.pod-feat__cover.is-art { background: #0c0c0c; }
.ecard__thumb.is-art::before,
.pod-side__thumb.is-art::before,
.pod-feat__cover.is-art::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--bg); background-size: cover; background-position: center;
  filter: blur(22px) brightness(.5) saturate(1.1); transform: scale(1.25);
}
.ecard__thumb.is-art img,
.pod-side__thumb.is-art img,
.pod-feat__cover.is-art img { object-fit: contain; }
.ecard__thumb.is-art .ecard__play { z-index: 2; }

/* ── 6 · FAIXA "SIGA A REDE" ──────────────────────────────── */
.pod-follow { background: var(--paper-2); padding: clamp(46px, 5vw, 76px) 0; }
.pod-follow__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.pod-follow__title { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: clamp(24px, 2.6vw, 38px); line-height: 1.04; color: var(--ink); margin: 0; max-width: 22ch; text-wrap: balance; }
[data-type="franklin"] .pod-follow__title, [data-type="atf"] .pod-follow__title { font-weight: 800; }
.pod-follow__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.pod-follow__btn {
  font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: #fff; color: var(--ink); border: 1px solid var(--ink); padding: 14px 22px;
  transition: background .16s, color .16s, transform .16s;
}
.pod-follow__btn:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }
.pod-follow__btn--primary { background: var(--ink); color: #fff; }
.pod-follow__btn--primary:hover { background: var(--red); border-color: var(--red); }

/* ============================================================
   PÁGINA DE PROGRAMA (ex.: /podcasts/braincast/)
   ============================================================ */
.prog-hero { padding: clamp(34px, 5vw, 60px) 0 clamp(28px, 3vw, 44px); }
.prog-hero__inner { display: grid; grid-template-columns: clamp(230px, 28vw, 340px) 1fr; gap: clamp(30px, 4vw, 64px); align-items: center; }
.prog-hero__cover { aspect-ratio: 1 / 1; border-radius: 18px; overflow: hidden; background: var(--paper-2); box-shadow: 0 18px 48px rgba(22,20,15,.18); }
.prog-hero__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prog-hero__name { font-family: var(--display); font-weight: 700; letter-spacing: -0.03em; font-size: clamp(44px, 6vw, 92px); line-height: 0.94; color: var(--ink); margin: 0; }
[data-type="franklin"] .prog-hero__name, [data-type="atf"] .prog-hero__name { font-weight: 800; }
.prog-hero__desc { font-family: var(--serif); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5; color: var(--fg-soft); margin: 18px 0 0; max-width: 56ch; text-wrap: pretty; }
.prog-hero__meta { margin: 18px 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 0 16px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-muted); }
.prog-hero__meta span:not(:last-child)::after { content: "·"; margin-left: 16px; color: var(--rule); }

/* botões de plataforma (página de programa) */
.pod-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pod-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: #fff; color: var(--ink); border: 1px solid var(--ink); padding: 13px 20px;
  transition: background .16s, color .16s, transform .16s;
}
.pod-btn:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }
.pod-btn--primary { background: var(--ink); color: #fff; }
.pod-btn--primary:hover { background: var(--red); border-color: var(--red); }

/* último episódio (claro) — thumb 16:9 ao lado do texto */
.prog-feat-wrap { padding-bottom: clamp(20px, 2.4vw, 32px); }
.pod-feat--light { display: grid; grid-template-columns: clamp(340px, 46vw, 600px) 1fr; gap: clamp(18px, 1.8vw, 30px); align-items: center; }
.pod-feat--light .pod-feat__cover { box-shadow: 0 14px 38px rgba(22,20,15,.16); }
.pod-feat--light .pod-feat__title { color: var(--ink); }
.pod-feat--light .pod-feat__dek { color: var(--fg-soft); }
.pod-feat--light .pod-feat__meta { color: var(--fg-muted); }

/* barra de seção simples (reaproveita visual do arquivo) */
.pod-bar { display: flex; align-items: baseline; gap: 12px; margin-bottom: clamp(22px, 2.4vw, 34px); padding-bottom: 16px; border-bottom: 1px solid var(--rule); }
.pod-bar__title { font-family: var(--mono); font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 9px; }
.pod-bar__title::before { content: ""; width: 13px; height: 10px; background: var(--red); clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%); }

/* ── RESPONSIVO ──────────────────────────────────────────── */
@media (max-width: 1000px) {
  .pod-live__grid { grid-template-columns: 1fr; gap: 38px; }
  .pod-shows__grid { grid-template-columns: 1fr; }
  .pod-eps__grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .pod-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .pod-hero__covers { max-width: 420px; margin: 0 auto; }
  .pod-hero__col--b { margin-top: 26px; }
  .prog-hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .prog-hero__cover { width: clamp(170px, 44vw, 230px); }
}
@media (max-width: 560px) {
  .pod-feat--light { grid-template-columns: 1fr; gap: 20px; }
  .pod-shows__grid .pcard { grid-template-columns: 92px 1fr; gap: 16px; }
  .ecard { grid-template-columns: 136px 1fr; gap: 14px; }
  .pod-follow__inner { flex-direction: column; align-items: flex-start; }
  /* página de programa: capa menor e ritmo mais leve antes do conteúdo */
  .prog-hero { padding: clamp(20px,5vw,32px) 0 clamp(18px,4vw,28px); }
  .prog-hero__inner { gap: 18px; }
  .prog-hero__cover { width: clamp(120px, 36vw, 158px); }
  .prog-hero__name { font-size: clamp(36px, 11vw, 50px); }
  .prog-hero__desc { font-size: 16px; margin-top: 12px; }
  .prog-hero__meta { margin-top: 14px; }
  .prog-hero .pod-btns { margin-top: 18px; gap: 8px; }
}
/* lista da página de programa: empilha thumb sobre texto no mobile */
@media (max-width: 620px) {
  .pod-eps__list .ecard { grid-template-columns: 1fr; gap: 14px; align-items: start; }
  .pod-eps__list .ecard__thumb { max-width: 340px; }
}

/* ============================================================
   POST DE EPISÓDIO DE PODCAST (template próprio — author/post)
   Prioriza assistir/ouvir; layout em coluna, sem sidebar.
   ============================================================ */
.pep-main { position: relative; z-index: 1; }
.pep-col { max-width: 768px; margin: 0 auto; }
.pep-col--wide { max-width: 980px; margin: 0 auto; }

/* hero do episódio */
.pep-hero { padding: clamp(26px, 3.4vw, 50px) 0 clamp(22px, 2.4vw, 32px); }
.pep-crumb { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); margin: 0 0 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.pep-crumb a { color: var(--fg-muted); transition: color .16s; }
.pep-crumb a:hover { color: var(--red); }
.pep-crumb .sep { color: var(--rule); }
.pep-show { font-family: var(--mono); font-weight: 700; font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); display: inline-flex; align-items: center; gap: 9px; margin: 0 0 16px; }
.pep-show::before { content: ""; width: 13px; height: 10px; background: var(--red); clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%); }
.pep-title {
  font-family: var(--display); font-weight: 700; letter-spacing: -0.028em;
  font-size: clamp(33px, 4.3vw, 60px); line-height: 1.02; color: var(--ink); margin: 0; text-wrap: balance;
}
[data-type="franklin"] .pep-title, [data-type="atf"] .pep-title { font-weight: 800; }
.pep-dek { font-family: var(--serif); font-size: clamp(18px, 1.5vw, 22px); line-height: 1.5; color: var(--fg-soft); margin: 20px 0 0; text-wrap: pretty; }
.pep-meta { margin: 22px 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 0 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-muted); }
.pep-meta span:not(:last-child)::after { content: "·"; margin-left: 14px; color: var(--rule); }
.pep-credits { margin: 24px 0 0; display: flex; flex-wrap: wrap; gap: 18px 40px; padding-top: 20px; border-top: 1px solid var(--rule); }
.pep-credits__label { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-muted); display: block; margin-bottom: 6px; }
.pep-credits__names { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--ink); }
.pep-credits__names--soft { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-soft); }
@media (max-width: 560px) { .pep-credits { flex-direction: column; gap: 16px; } }

/* player principal (embed 16:9) */
.pep-player-wrap { padding-bottom: clamp(6px, 0.8vw, 12px); }
.pep-player { display: block; position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: #000; box-shadow: 0 24px 64px rgba(22,20,15,.24); }
.pep-player img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.pep-player:hover img { transform: scale(1.03); }
.pep-player__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.42)); }
.pep-player__play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: clamp(62px, 7vw, 90px); height: clamp(62px, 7vw, 90px); border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 34px rgba(0,0,0,.45); transition: transform .18s, background .18s; }
.pep-player:hover .pep-player__play { transform: translate(-50%,-50%) scale(1.07); background: var(--red-deep); }
.pep-player__play svg { width: 34%; height: 34%; fill: #fff; margin-left: 9%; }
.pep-player__tag { position: absolute; left: 16px; top: 16px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(0,0,0,.62); color: #fff; padding: 8px 12px; border-radius: 7px; backdrop-filter: blur(4px); }
.pep-support { margin: 16px 0 0; font-family: var(--serif); font-style: italic; font-size: 15.5px; color: var(--fg-muted); text-wrap: pretty; }

/* área de mídia do episódio = bloco único centralizado:
   player + botões + texto auxiliar alinhados ao eixo central, na largura do player */
.pep-player-wrap .pod-btns {
  justify-content: center;
  max-width: 100%;
  margin-left: auto; margin-right: auto;
}
.pep-player-wrap .pep-support { text-align: center; }

/* player 16:9 com iframe real do YouTube (subido do corpo via JS) */
.pep-embed { position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: #000; box-shadow: 0 24px 64px rgba(22,20,15,.24); }
.pep-embed iframe { position: absolute; inset: 0; width: 100% !important; height: 100% !important; border: 0; display: block; }

/* MOBILE — player com sombra discreta + mais respiro; botões em
   bloco coeso de 2 colunas (YouTube em destaque, linha própria);
   metadados quebram naturalmente.                              */
@media (max-width: 700px) {
  .pep-player-wrap { padding: clamp(8px,2vw,16px) 0 clamp(22px,5vw,32px); }
  .pep-player-wrap .pep-player,
  .pep-player-wrap .pep-embed { box-shadow: 0 10px 26px rgba(22,20,15,.16); border-radius: 14px; }
  .pep-player-wrap .pod-btns { gap: 10px; }
  .pep-player-wrap .pod-btn { flex: 0 1 calc(50% - 5px); justify-content: center; padding: 14px 12px; }
  .pep-player-wrap .pod-btn--primary { flex-basis: 100%; }
  .pep-player-wrap .pep-support { font-size: 14.5px; }
  .pep-credits__names { overflow-wrap: anywhere; }
  /* texto do hero do episódio à DIREITA do raio (não coberto pela parte larga) */
  .pep-hero .pep-col { padding-left: clamp(26px, 8vw, 38px); }
  .pep-hero { padding-top: clamp(28px, 7vw, 42px); }
}

/* titulo "Ouça também" antes do player de áudio no corpo */
.pep-listen { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin: clamp(28px,3vw,40px) 0 14px; display: flex; align-items: center; gap: 9px; }
.pep-listen::before { content: ""; width: 13px; height: 10px; background: var(--red); clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%); }

/* seções de conteúdo do post */
.pep-sec { padding: clamp(30px, 3.6vw, 50px) 0 0; }
.pep-h { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: clamp(22px, 2.1vw, 30px); line-height: 1.05; color: var(--ink); margin: 0 0 18px; display: inline-flex; align-items: center; gap: 11px; }
.pep-h::before { content: ""; width: 14px; height: 11px; background: var(--red); clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%); flex-shrink: 0; }
[data-type="franklin"] .pep-h, [data-type="atf"] .pep-h { font-weight: 800; }
.pep-prose p { font-family: var(--serif); font-size: clamp(18px, 1.4vw, 20px); line-height: 1.6; color: var(--fg-soft); margin: 0 0 1.4em; text-wrap: pretty; }
.pep-prose p:last-child { margin-bottom: 0; }

/* corpo do episódio vindo do editor (Ghost content): dá o sabor de podcast
   a headings/listas/links sem precisar de classes no markup. Prefixado com
   .pep-main p/ vencer o .prose do koenig (carregado depois). */
.pep-main .pep-prose > h2 {
  font-family: var(--display); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(22px, 2.1vw, 30px); line-height: 1.05; color: var(--ink);
  margin: clamp(30px, 3.6vw, 50px) 0 18px; display: flex; align-items: center; gap: 11px;
}
.pep-main .pep-prose > h2::before { content: ""; width: 14px; height: 11px; background: var(--red); clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%); flex-shrink: 0; }
[data-type="franklin"] .pep-main .pep-prose > h2, [data-type="atf"] .pep-main .pep-prose > h2 { font-weight: 800; }
.pep-main .pep-prose > h2:first-child { margin-top: 0; }
.pep-main .pep-prose > h3 { font-family: var(--display); font-weight: 700; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.1; color: var(--ink); margin: 28px 0 12px; }
.pep-main .pep-prose ul { list-style: none; margin: 0 0 1.2em; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.pep-main .pep-prose ul li { position: relative; padding-left: 30px; font-family: var(--serif); font-size: clamp(17px, 1.35vw, 19px); line-height: 1.5; color: var(--ink); text-wrap: pretty; }
.pep-main .pep-prose ul li::before { content: ""; position: absolute; left: 0; top: 0.52em; width: 13px; height: 10px; background: var(--red); clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%); }
.pep-main .pep-prose a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 3px; transition: color .16s, text-decoration-color .16s; }
.pep-main .pep-prose a:hover { color: var(--red); text-decoration-color: var(--red); }

/* na conversa — lista escaneável */
.pep-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.pep-points li { position: relative; padding-left: 30px; font-family: var(--serif); font-size: clamp(17px, 1.35vw, 19px); line-height: 1.5; color: var(--ink); text-wrap: pretty; }
.pep-points li::before { content: ""; position: absolute; left: 0; top: 0.52em; width: 13px; height: 10px; background: var(--red); clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%); }

/* links citados */
.pep-links { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.pep-links li { border-bottom: 1px solid var(--rule); }
.pep-links a { display: flex; align-items: baseline; gap: 13px; padding: 14px 0; font-family: var(--serif); font-size: 17px; line-height: 1.4; color: var(--ink); transition: color .16s; }
.pep-links a:hover { color: var(--red); }
.pep-links a::before { content: "↗"; font-family: var(--mono); font-size: 13px; color: var(--fg-muted); flex-shrink: 0; }
.pep-links a:hover::before { color: var(--red); }

/* transcrição (acordeão) */
.pep-trans { margin: clamp(30px, 3.6vw, 50px) 0 0; border-top: 1px solid var(--ink); }
.pep-trans > summary { list-style: none; cursor: pointer; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--mono); font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }
.pep-trans > summary::-webkit-details-marker { display: none; }
.pep-trans__ic { width: 28px; height: 28px; border: 1px solid var(--rule); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .2s, border-color .2s; flex-shrink: 0; position: relative; }
.pep-trans__ic::before, .pep-trans__ic::after { content: ""; position: absolute; background: var(--ink); }
.pep-trans__ic::before { width: 11px; height: 2px; }
.pep-trans__ic::after { width: 2px; height: 11px; transition: opacity .2s; }
.pep-trans[open] .pep-trans__ic::after { opacity: 0; }
.pep-trans__body { padding: 4px 0 26px; }
.pep-trans__body p { font-family: var(--serif); font-size: 16.5px; line-height: 1.62; color: var(--fg-soft); margin: 0 0 1.1em; text-wrap: pretty; }
.pep-trans__sp { font-family: var(--mono); font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; color: var(--red); }

/* acompanhe o programa */
.pep-follow { margin: clamp(34px, 4vw, 56px) 0 0; background: var(--ink); color: #fff; border-radius: 18px; padding: clamp(24px, 3vw, 38px); display: grid; grid-template-columns: clamp(92px, 11vw, 128px) 1fr; gap: clamp(22px, 2.4vw, 34px); align-items: center; }
.pep-follow__cover { aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden; background: #000; box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.pep-follow__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pep-follow__eyebrow { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--yellow); margin: 0 0 8px; }
.pep-follow__title { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.02; margin: 0; color: #fff; }
[data-type="franklin"] .pep-follow__title, [data-type="atf"] .pep-follow__title { font-weight: 800; }
.pep-follow__text { font-family: var(--serif); font-size: 16px; line-height: 1.5; color: rgba(255,255,255,.74); margin: 10px 0 0; max-width: 48ch; text-wrap: pretty; }
.pep-follow__btns { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.pep-follow .pod-btn { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.pep-follow .pod-btn:hover { background: #fff; color: var(--ink); border-color: #fff; }
.pep-follow .pod-btn--primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.pep-follow .pod-btn--primary:hover { background: var(--yellow-deep); color: var(--black); }

/* mais episódios do programa (3 col, thumb 16:9 em cima) */
.pep-more { padding: clamp(40px, 4.8vw, 76px) 0 clamp(64px, 7vw, 104px); }
.pep-more__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 2.6vw, 40px); }
.epm { display: flex; flex-direction: column; min-width: 0; }
.epm__thumb { aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; background: var(--paper-2); position: relative; }
.epm__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; position: relative; z-index: 1; }
.epm:hover .epm__thumb img { transform: scale(1.05); }
.epm__show { font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-top: 14px; }
.epm__title { font-family: var(--display); font-weight: 700; letter-spacing: -0.016em; font-size: clamp(18px, 1.5vw, 21px); line-height: 1.2; color: var(--ink); margin: 8px 0 0; text-wrap: pretty; transition: color .16s; }
[data-type="franklin"] .epm__title, [data-type="atf"] .epm__title { font-weight: 700; }
.epm:hover .epm__title { color: var(--red); }
.epm__foot { display: flex; align-items: center; gap: 14px; margin-top: 12px; }
.epm__date { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-muted); }
.epm__cta { font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; transition: color .16s; }
.epm__cta::before { content: ""; width: 14px; height: 1px; background: var(--rule); }
.epm:hover .epm__cta { color: var(--red); }
/* arte quadrada em moldura 16:9: mostra inteira sobre fundo desfocado */
.epm__thumb.is-art { background: #0c0c0c; }
.epm__thumb.is-art::before { content: ""; position: absolute; inset: 0; z-index: 0; background-image: var(--bg); background-size: cover; background-position: center; filter: blur(22px) brightness(.5) saturate(1.1); transform: scale(1.25); }
.epm__thumb.is-art img { object-fit: contain; }

/* CTA de fechamento — ver todos do programa */
.pep-more__all { margin-top: clamp(34px, 3.8vw, 52px); padding-top: clamp(26px, 2.8vw, 38px); border-top: 1px solid var(--rule); display: flex; justify-content: center; }
.pep-more__all a { display: inline-flex; align-items: center; gap: 11px; font-family: var(--mono); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); border-bottom: 2px solid var(--red); padding-bottom: 6px; transition: color .16s; }
.pep-more__all a:hover { color: var(--red); }
.pep-more__all span { transition: transform .16s; }
.pep-more__all a:hover span { transform: translateX(4px); }

@media (max-width: 860px) {
  .pep-more__grid { grid-template-columns: 1fr 1fr; }
  .pep-follow { grid-template-columns: 1fr; }
  .pep-follow__cover { width: 96px; }
}
@media (max-width: 560px) {
  .pep-more__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TWEAK — DESTAQUE DO HERO (só na página geral de Podcasts)
   Editorial (base) · Painel escuro (B) · Preto total (A).
   Página de programa e post de episódio ficam intocados.
   ============================================================ */

/* ── Opção B · hero branco com painel escuro atrás das capas ── */
[data-hero="b"] .pod-hero__covers {
  position: relative;
  padding: clamp(20px, 2.3vw, 34px);
  border-radius: 22px;
  background: var(--ink);
  box-shadow: 0 30px 70px rgba(22,20,15,.26);
}
/* etiqueta discreta no painel: marca "área audiovisual" */
[data-hero="b"] .pod-hero__covers::before {
  content: "A rede B9";
  position: absolute; top: clamp(16px, 1.8vw, 24px); left: clamp(20px, 2.3vw, 34px);
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,.5);
  z-index: 2;
}
/* o painel empurra a coluna A pra baixo p/ abrir espaço pra etiqueta */
[data-hero="b"] .pod-hero__col { padding-top: clamp(26px, 3vw, 42px); }
[data-hero="b"] .pod-hero__col--b { padding-top: 0; margin-top: clamp(20px, 2.6vw, 38px); }
[data-hero="b"] .pod-cover { box-shadow: 0 16px 38px rgba(0,0,0,.5); }
[data-hero="b"] .pod-hero__covers .pod-cover:hover { box-shadow: 0 22px 50px rgba(0,0,0,.62); }

/* ── Opção A · hero preto total ──────────────────────────── */
[data-hero="a"] .pod-hero {
  background: #0A0908; margin-top: clamp(-34px, -4vw, -64px); padding-top: clamp(52px, 6vw, 92px);
}
[data-hero="a"] .pod-hero__title { color: var(--paper); }
[data-hero="a"] .pod-hero__sub { color: rgba(255,255,255,.72); }
[data-hero="a"] .pod-cta { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
[data-hero="a"] .pod-cta:hover { background: var(--yellow-deep); border-color: var(--yellow-deep); color: var(--black); box-shadow: 0 8px 22px rgba(0,0,0,.4); }
[data-hero="a"] .pod-cta--ghost { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.42); }
[data-hero="a"] .pod-cta--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
[data-hero="a"] .pod-cover { box-shadow: 0 20px 48px rgba(0,0,0,.6); background: #1a1813; }
[data-hero="a"] .pod-hero__covers .pod-cover:hover { box-shadow: 0 26px 58px rgba(0,0,0,.7); }
/* No ar agora: diferenciar do hero preto p/ não parecer repetição.
   Surface mais quente + hairline vermelho de separação. */
[data-hero="a"] .pod-live { background: #16130D; box-shadow: inset 0 2px 0 var(--red); }
