/* ================================================================
   PODCAST — Single Episode & Archive
   ================================================================ */

/* ----------------------------------------------------------------
   DARK PRESS — colour overrides scoped to podcast pages only.
   Global design tokens remain untouched for the rest of the site.
   ---------------------------------------------------------------- */
.pod-main,
.pod-archive-page {
  --ink:       #111111;
  --walnut:    #1c1c1c;
  --mustard:   #c9a040;
  --aged-gold: #c9a040;
  --green:     #2e5c4f;
  --cream:     #f0ead8;
  --paper:     #1e1e1e;
}

/* ────────────────────────────────────────────
   BREADCRUMB BAR
   ──────────────────────────────────────────── */
.pod-breadcrumb-bar {
  position: sticky;
  top: 64px;          /* cola abaixo do header fixo */
  z-index: 90;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201, 160, 64, 0.12);
}

.pod-breadcrumb-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
}

.pod-breadcrumb,
.pod-breadcrumb-inner #breadcrumbs {
  font-family: 'Special Elite', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(244, 236, 216, 0.45);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.pod-breadcrumb a,
.pod-breadcrumb-inner #breadcrumbs a {
  color: rgba(201, 160, 64, 0.7);
  text-decoration: none;
  transition: color 0.15s;
}

.pod-breadcrumb a:hover,
.pod-breadcrumb-inner #breadcrumbs a:hover {
  color: var(--mustard);
}

/* Yoast separator override */
.pod-breadcrumb-inner .breadcrumb_last { color: rgba(244, 236, 216, 0.5); }

/* ────────────────────────────────────────────
   SPLIT LAYOUT (desktop)
   Left  : sticky player + meta  (52%)
   Right : scrollable transcript (48%)
   Max-width 1500px — centered
   ──────────────────────────────────────────── */
.pod-main {
  background: var(--ink);
  min-height: 100vh;
}

.pod-split {
  display: grid;
  grid-template-columns: 52% 6px 1fr;
  align-items: start;       /* sticky left requires start, not stretch */
  max-width: 1500px;
  margin: 0 auto;
  /* NO fixed height / overflow — page scrolls naturally */
}

/* ── Drag-to-resize handle ── */
.pod-resizer {
  width: 6px;
  cursor: col-resize;
  align-self: stretch;
  background: rgba(201, 160, 64, 0.06);
  border-left: 1px solid rgba(201, 160, 64, 0.15);
  border-right: 1px solid rgba(201, 160, 64, 0.15);
  transition: background 0.2s, border-color 0.2s;
  z-index: 10;
}

.pod-resizer:hover,
.pod-resizer--dragging {
  background: rgba(201, 160, 64, 0.14);
  border-color: rgba(201, 160, 64, 0.45);
}

/* Grip: sticky dentro do bloco pai — sem flex no pai, funciona corretamente */
.pod-resizer-grip {
  position: sticky;
  top: calc(50vh - 16px); /* 16px = metade dos 32px de altura do grip */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 32px;
  background: rgba(201, 160, 64, 0.12);
  border: 1px solid rgba(201, 160, 64, 0.3);
  border-radius: 4px;
  color: rgba(201, 160, 64, 0.5);
  font-size: 0.8rem;
  margin-left: -7px; /* centraliza os 20px dentro dos 6px do resizer */
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pod-resizer:hover .pod-resizer-grip,
.pod-resizer--dragging .pod-resizer-grip {
  background: rgba(201, 160, 64, 0.22);
  border-color: rgba(201, 160, 64, 0.7);
  color: var(--mustard);
}

@media (max-width: 991px) {
  .pod-resizer { display: none; }
}

/* ── LEFT panel — sticky ── */
.pod-left {
  position: sticky;
  top: 101px;               /* ~64px header + ~37px breadcrumb */
  height: calc(100vh - 101px);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  border-right: 1px solid rgba(201, 160, 64, 0.12);
  background: #161616;
  scrollbar-width: thin;
  scrollbar-color: var(--aged-gold) transparent;
}

.pod-left::-webkit-scrollbar { width: 4px; }
.pod-left::-webkit-scrollbar-thumb { background: var(--aged-gold); border-radius: 2px; }

/* ── RIGHT panel — natural page flow ── */
.pod-right {
  padding: 1.75rem 2rem;
  min-height: calc(100vh - 101px);
}

/* ────────────────────────────────────────────
   PLAYER — widescreen 16:9
   ──────────────────────────────────────────── */
.pod-player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  flex-shrink: 0;
  overflow: hidden;
}

.pod-player-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}

/* ────────────────────────────────────────────
   EPISODE HEADER (left)
   ──────────────────────────────────────────── */
.pod-episode-header {
  padding: 1.25rem 1.5rem 0.75rem;
  border-bottom: 1px solid rgba(201, 160, 64, 0.12);
}

.pod-ep-badge {
  display: inline-block;
  font-family: 'Special Elite', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 0.4rem;
}

.pod-title {
  font-family: 'Bree Serif', serif;
  font-size: 26px;
  line-height: 1.35;
  color: var(--cream);
  margin: 0;
}

/* ────────────────────────────────────────────
   SECTION LABEL (shared)
   ──────────────────────────────────────────── */
.pod-section-label {
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aged-gold);
  margin: 0 0 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ────────────────────────────────────────────
   DESCRIPTION (left)
   ──────────────────────────────────────────── */
.pod-description {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(201, 160, 64, 0.1);
}

.pod-description-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(244, 236, 216, 0.78);
}

/* Medium-inspired hierarchy — descending scale, nunca invertida */
.pod-description-body h1 {
  font-family: 'Bree Serif', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.pod-description-body h2 {
  font-family: 'Bree Serif', serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--cream);
  margin: 1.75rem 0 0.6rem;
  letter-spacing: -0.01em;
}

.pod-description-body h3 {
  font-family: 'Bree Serif', serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(244, 236, 216, 0.92);
  margin: 1.5rem 0 0.5rem;
}

.pod-description-body h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mustard);
  margin: 1.25rem 0 0.4rem;
}

.pod-description-body p {
  margin: 0 0 1.1rem;
}

.pod-description-body p:last-child { margin-bottom: 0; }

.pod-description-body strong {
  font-weight: 600;
  color: rgba(244, 236, 216, 0.95);
}

.pod-description-body em {
  font-style: italic;
  color: rgba(244, 236, 216, 0.85);
}

.pod-description-body ul,
.pod-description-body ol {
  padding-left: 1.4rem;
  margin: 0 0 1.1rem;
}

.pod-description-body li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.pod-description-body blockquote {
  border-left: 3px solid var(--mustard);
  margin: 1.5rem 0;
  padding: 0.5rem 0 0.5rem 1.25rem;
  color: rgba(244, 236, 216, 0.6);
  font-style: italic;
}

.pod-description-body a {
  color: var(--mustard);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.pod-description-body a:hover { color: var(--cream); }

/* ────────────────────────────────────────────
   SUMMARY / KEY TAKEAWAYS (left)
   ──────────────────────────────────────────── */
.pod-summary {
  padding: 1.1rem 1.5rem;
}

.pod-summary-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(244, 236, 216, 0.75);
}

.pod-summary-body p  { margin: 0 0 0.4rem; }
.pod-summary-body ul { margin: 0; padding-left: 1.2rem; }
.pod-summary-body li { margin-bottom: 0.35rem; }

/* ────────────────────────────────────────────
   TABLE OF CONTENTS — sticky floating widget
   ──────────────────────────────────────────── */
@keyframes pod-toc-pulse {
  0%   { border-bottom-color: rgba(201, 160, 64, 0.2); }
  50%  { border-bottom-color: rgba(201, 160, 64, 0.7); }
  100% { border-bottom-color: rgba(201, 160, 64, 0.2); }
}

.pod-toc {
  position: sticky;
  top: 101px;   /* header ~64px + breadcrumb ~37px */
  z-index: 60;
  background: #1d1b14;  /* visually distinct from #111 transcript bg */
  border-top: 1px solid rgba(201, 160, 64, 0.3);
  border-bottom: 2px solid rgba(201, 160, 64, 0.3);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

/* First-visit pulse hint */
.pod-toc--hint {
  animation: pod-toc-pulse 1s ease-in-out 3;
}

.pod-toc--hint .pod-toc-toggle-label {
  color: var(--cream);
}

.pod-toc--hint .pod-toc-chevron {
  animation: pod-toc-chevron-bounce 0.6s ease-in-out 3 1.2s;
}

@keyframes pod-toc-chevron-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}

/* ── Toggle bar ── */
.pod-toc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.pod-toc-toggle:hover {
  background: rgba(201, 160, 64, 0.07);
}

.pod-toc-toggle-label {
  font-family: 'Special Elite', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mustard);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.pod-toc-active-title {
  font-family: 'Crete Round', serif;
  font-size: 0.78rem;
  color: rgba(244, 236, 216, 0.5);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pod-toc-chevron {
  color: rgba(201, 160, 64, 0.5);
  font-size: 0.75rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: auto;
}

.pod-toc--open .pod-toc-chevron {
  transform: rotate(180deg);
}

.pod-toc-toggle:hover .pod-toc-toggle-label { color: var(--cream); }
.pod-toc-toggle:hover .pod-toc-chevron { color: var(--mustard); }

/* ── Dropdown overlay ── */
.pod-toc-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #181610;
  border-top: 1px solid rgba(201, 160, 64, 0.15);
  border-bottom: 2px solid rgba(201, 160, 64, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  max-height: 55vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--aged-gold) transparent;
  z-index: 61;
}

.pod-toc-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  counter-reset: toc-counter;
}

.pod-toc-list li {
  border-bottom: 1px solid rgba(201, 160, 64, 0.07);
}

.pod-toc-link {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  color: rgba(244, 236, 216, 0.7);
  font-size: 0.85rem;
  line-height: 1.4;
  transition: background 0.15s, color 0.15s;
}

.pod-toc-link:hover,
.pod-toc-link--active {
  background: rgba(201, 160, 64, 0.08);
  color: var(--cream);
}

.pod-toc-link--active {
  border-left: 3px solid var(--mustard);
  padding-left: calc(1.1rem - 3px);
}

.pod-toc-time {
  font-family: 'Special Elite', monospace;
  font-size: 0.72rem;
  color: var(--mustard);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 44px;
}

.pod-toc-title {
  flex: 1;
}

/* ── TOC "more topics" button ── */
.pod-toc-more-row {
  border-bottom: none !important;
}

.pod-toc-more-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1.1rem;
  background: rgba(201, 160, 64, 0.05);
  border: none;
  border-top: 1px solid rgba(201, 160, 64, 0.12);
  cursor: pointer;
  font-family: 'Special Elite', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mustard);
  transition: background 0.15s, color 0.15s;
}

.pod-toc-more-btn:hover {
  background: rgba(201, 160, 64, 0.12);
  color: var(--cream);
}

.pod-toc-more-btn i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

/* ────────────────────────────────────────────
   TRANSCRIPT (right)
   ──────────────────────────────────────────── */
.pod-transcript {
  margin-top: 25px;
}

.pod-transcript-body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.94rem;
  line-height: 1.9;
  color: rgba(244, 236, 216, 0.8);
}

.pod-transcript-body p {
  margin: 0 0 1rem;
}

/* Plain heading */
.pod-heading {
  font-family: 'Bree Serif', serif;
  font-size: 1.05rem;
  color: var(--cream);
  margin: 2.25rem 0 0.65rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(201, 160, 64, 0.18);
}

/* Timestamped heading */
.pod-ts-heading {
  scroll-margin-top: 210px; /* header 64px + breadcrumb ~37px + TOC sticky bar ~44px + folga generosa */
  font-family: 'Bree Serif', serif;
  font-size: 1.05rem;
  color: var(--cream);
  margin: 2.25rem 0 0.65rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(201, 160, 64, 0.18);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  scroll-margin-top: 1rem;
}

.pod-ts-heading.pod-ts-active {
  color: var(--mustard);
}

.pod-ts-heading.pod-ts-active .pod-ts-badge {
  background: rgba(201, 160, 64, 0.3);
  border-color: var(--mustard);
}

/* Timestamp link — hint that it's clickable */
.pod-ts-link {
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}

/* Tooltip hint */
.pod-ts-link::after {
  content: "Click to jump in video";
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--walnut);
  color: var(--cream);
  font-family: 'Crete Round', serif;
  font-size: 0.68rem;
  white-space: nowrap;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 10;
  border: 1px solid rgba(201, 160, 64, 0.3);
}

.pod-ts-link:hover::after {
  opacity: 1;
}

.pod-ts-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(201, 160, 64, 0.12);
  border: 1px solid rgba(201, 160, 64, 0.4);
  color: var(--mustard);
  font-family: 'Special Elite', monospace;
  font-size: 0.72rem;
  padding: 0.22rem 0.6rem;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  cursor: pointer;
}

.pod-ts-badge i {
  font-size: 0.8rem;
}

.pod-ts-link:hover .pod-ts-badge {
  background: rgba(201, 160, 64, 0.28);
  border-color: var(--mustard);
  color: var(--cream);
}

/* Hint text below transcript intro */
.pod-ts-hint {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  color: rgba(201, 160, 64, 0.7);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(201, 160, 64, 0.06);
  border-left: 2px solid rgba(201, 160, 64, 0.3);
  border-radius: 0 4px 4px 0;
}

/* ────────────────────────────────────────────
   VTURB SPONSOR BLOCK — below player, distinct bg
   ──────────────────────────────────────────── */
.pod-vturb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0.55rem 1rem;
  background: var(--green);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.18s;
}

.pod-vturb:hover { filter: brightness(1.15); }

.pod-vturb-logo {
  width: 44px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.pod-vturb-copy {
  flex: 1;
  min-width: 0;
}

.pod-vturb-copy strong {
  display: block;
  font-family: 'Crete Round', serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pod-vturb-copy p { display: none; }

.pod-vturb-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--mustard);
  color: var(--ink);
  font-family: 'Special Elite', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 700;
  transition: background 0.15s;
}

.pod-vturb-cta:hover {
  background: var(--aged-gold);
  color: var(--ink);
}

/* ────────────────────────────────────────────
   EPISODE NAVIGATION (below split)
   ──────────────────────────────────────────── */
.pod-nav {
  border-top: 1px solid rgba(201, 160, 64, 0.18);
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.pod-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.pod-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(201, 160, 64, 0.2);
  border-radius: 10px;
  background: rgba(255, 248, 220, 0.04);
  transition: border-color 0.18s, background 0.18s;
  color: var(--cream);
}

.pod-nav-btn:hover {
  border-color: rgba(201, 160, 64, 0.5);
  background: rgba(201, 160, 64, 0.07);
  color: var(--cream);
}

.pod-nav-next { justify-content: flex-end; }

/* Thumbnail in nav */
.pod-nav-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 45px;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.pod-nav-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text stack */
.pod-nav-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}

.pod-nav-next .pod-nav-text {
  text-align: right;
}

.pod-nav-direction {
  font-family: 'Special Elite', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aged-gold);
}

.pod-nav-ep-num {
  font-size: 0.75rem;
  color: var(--mustard);
}

.pod-nav-ep-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(244, 236, 216, 0.8);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pod-nav-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: var(--aged-gold);
  font-family: 'Special Elite', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem;
  transition: color 0.15s;
}

.pod-nav-all i { font-size: 1.3rem; }
.pod-nav-all:hover { color: var(--mustard); }

.pod-nav-placeholder { }

/* ────────────────────────────────────────────
   ARCHIVE
   ──────────────────────────────────────────── */
/* ═══════════════════════════════════════════
   PODCAST ARCHIVE PAGE
   ═══════════════════════════════════════════ */

.pod-archive-main {
  background: #18120e;
  min-height: 100vh;
  padding-bottom: 5rem;
}

/* ── Page header ── */
.pod-archive-top {
  background: var(--ink);
  border-bottom: 2px solid var(--mustard);
  padding: 3rem 0 2.75rem;
  margin-bottom: 3rem;
}

.pod-archive-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.pod-archive-top-text {
  flex: 1;
}

.pod-archive-kicker {
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 0.5rem;
}

.pod-archive-title {
  font-family: 'Bree Serif', serif;
  font-size: 2.6rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pod-archive-lead {
  font-family: 'Crete Round', serif;
  color: rgba(244, 236, 216, 0.5);
  font-size: 0.9rem;
  max-width: 420px;
  margin: 0;
  line-height: 1.7;
}

/* ── Vturb element inside header ── */
.pod-archive-top-vturb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(39, 72, 62, 0.6);
  border-radius: 10px;
  background: rgba(39, 72, 62, 0.2);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.18s, border-color 0.18s;
}

.pod-archive-top-vturb:hover {
  background: rgba(39, 72, 62, 0.4);
  border-color: rgba(39, 72, 62, 0.9);
}

.pod-archive-top-vturb-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.pod-archive-top-vturb-label {
  font-family: 'Crete Round', serif;
  font-size: 0.78rem;
  color: rgba(244, 236, 216, 0.55);
  text-align: center;
  line-height: 1.5;
}

.pod-archive-top-vturb-cta {
  font-family: 'Special Elite', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6dbfa0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}

.pod-archive-top-vturb:hover .pod-archive-top-vturb-cta { gap: 0.5rem; }

/* ── Hero: latest episode ── */
.pod-archive-hero {
  display: grid;
  grid-template-columns: 55% 45%;
  border: 1px solid rgba(201, 160, 64, 0.16);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
  background: #1e1510;
  transition: border-color 0.22s, box-shadow 0.22s;
}

.pod-archive-hero:hover {
  border-color: rgba(201, 160, 64, 0.4);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.55);
}

.pod-archive-hero-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: #0d0906;
}

.pod-archive-hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.pod-archive-hero:hover .pod-archive-hero-thumb img { transform: scale(1.04); }

.pod-archive-hero-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.75rem;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.32);
  opacity: 0;
  transition: opacity 0.22s;
}

.pod-archive-hero:hover .pod-archive-hero-play { opacity: 1; }

.pod-archive-hero-body {
  padding: 2.5rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(201, 160, 64, 0.1);
}

.pod-archive-hero-kicker {
  font-family: 'Special Elite', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 0.4rem;
}

.pod-archive-hero-ep {
  font-family: 'Special Elite', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 236, 216, 0.3);
  margin-bottom: 0.75rem;
  display: block;
}

.pod-archive-hero-title {
  font-family: 'Bree Serif', serif;
  font-size: 1.7rem;
  line-height: 1.22;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.pod-archive-hero-title a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.15s;
}

.pod-archive-hero-title a:hover { color: var(--mustard); }

.pod-archive-hero-excerpt {
  font-family: 'Crete Round', serif;
  font-size: 0.875rem;
  line-height: 1.72;
  color: rgba(244, 236, 216, 0.55);
  margin: 0 0 1.75rem;
}

.pod-archive-hero-listen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mustard);
  color: var(--ink);
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  align-self: flex-start;
  transition: background 0.15s, transform 0.12s;
}

.pod-archive-hero-listen:hover {
  background: var(--aged-gold);
  color: var(--ink);
  transform: translateY(-1px);
}


/* ── Section heading + filter tabs ── */
.pod-archive-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 160, 64, 0.1);
  flex-wrap: wrap;
}

.pod-archive-section-title {
  font-family: 'Bree Serif', serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin: 0;
  letter-spacing: -0.01em;
}

.pod-archive-filters {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.pod-filter-btn {
  font-family: 'Special Elite', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 236, 216, 0.45);
  text-decoration: none;
  padding: 0.28rem 0.78rem;
  border: 1px solid rgba(201, 160, 64, 0.18);
  border-radius: 30px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.pod-filter-btn:hover,
.pod-filter-btn.is-active {
  color: var(--mustard);
  border-color: rgba(201, 160, 64, 0.5);
  background: rgba(201, 160, 64, 0.08);
}

/* ── Episode Grid ── */
.pod-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ── Episode Card ── */
.pod-card {
  background: #1e1510;
  border: 1px solid rgba(201, 160, 64, 0.13);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.18s, box-shadow 0.2s;
}

.pod-card:hover {
  border-color: rgba(201, 160, 64, 0.38);
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5);
}

.pod-card-thumb-link { display: block; }

.pod-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0d0906;
}

.pod-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.pod-card:hover .pod-card-thumb img { transform: scale(1.05); }

.pod-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: opacity 0.2s;
}

.pod-card:hover .pod-card-play { opacity: 1; }

.pod-card-body {
  padding: 1.1rem 1.3rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pod-card-ep {
  font-family: 'Special Elite', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 0.4rem;
  display: block;
  opacity: 0.8;
}

.pod-card-title {
  font-family: 'Bree Serif', serif;
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 0.6rem;
}

.pod-card-title a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.15s;
}

.pod-card-title a:hover { color: var(--mustard); }

.pod-card-excerpt {
  font-family: 'Crete Round', serif;
  font-size: 0.81rem;
  line-height: 1.65;
  color: rgba(244, 236, 216, 0.5);
  margin: 0 0 0.85rem;
  flex: 1;
}

.pod-card-cta {
  font-family: 'Special Elite', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mustard);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  opacity: 0.8;
  transition: gap 0.15s, opacity 0.15s;
}

.pod-card-cta:hover { opacity: 1; gap: 0.5rem; }

/* ── Pagination ── */
.pod-archive-pagination {
  margin-top: 2.75rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.pod-archive-pagination .page-numbers {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(201, 160, 64, 0.2);
  border-radius: 6px;
  text-decoration: none;
  color: rgba(244, 236, 216, 0.6);
  font-size: 0.85rem;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.pod-archive-pagination .page-numbers:hover,
.pod-archive-pagination .page-numbers.current {
  border-color: var(--mustard);
  background: rgba(201, 160, 64, 0.1);
  color: var(--mustard);
}

/* ── Empty state ── */
.pod-archive-empty {
  text-align: center;
  color: rgba(244, 236, 216, 0.4);
  font-family: 'Crete Round', serif;
  padding: 3rem 0;
}

/* ────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .pod-split { grid-template-columns: 55% 45%; }
  .pod-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .pod-archive-hero { grid-template-columns: 50% 50%; }
  .pod-archive-hero-body { padding: 1.75rem 1.75rem; }
  .pod-archive-hero-title { font-size: 1.35rem; }
}

@media (max-width: 992px) {
  /* Archive header: stack on mobile */
  .pod-archive-top-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .pod-archive-top-vturb { flex-direction: row; width: 100%; justify-content: space-between; }

  /* Archive hero: stack vertically */
  .pod-archive-hero { grid-template-columns: 1fr; }
  .pod-archive-hero-thumb { aspect-ratio: 16/9; }
  .pod-archive-hero-body {
    border-left: none;
    border-top: 1px solid rgba(201, 160, 64, 0.12);
    padding: 1.5rem;
  }
  .pod-archive-hero-title { font-size: 1.25rem; }

  /* Stack columns vertically on tablet/mobile */
  .pod-split {
    display: flex;
    flex-direction: column;
  }

  .pod-left {
    position: static;   /* no sticky on mobile */
    height: auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(201, 160, 64, 0.2);
    overflow-y: visible;
  }

  .pod-right {
    padding: 1.25rem;
    min-height: unset;
  }

  .pod-vturb-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .pod-nav-thumb { width: 60px; height: 34px; }

  .pod-nav-inner {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .pod-nav-next { text-align: left; }

  .pod-nav-all {
    flex-direction: row;
    justify-content: center;
    order: -1;
    padding: 0.75rem;
    border: 1px solid rgba(201, 160, 64, 0.15);
    border-radius: 8px;
  }

  .pod-archive-grid { grid-template-columns: 1fr; }
  .pod-archive-section-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 576px) {
  .pod-title { font-size: 1.05rem; }
  .pod-archive-title { font-size: 1.7rem; }
}
