/* ================================================================
   Mishpacha — Podcasts Page
   ================================================================ */

:root {
  --pod-red:      var(--red);
  --pod-red-dark: var(--red-dark);
  --pod-ink:      var(--ink);
  --pod-ink-2:    #030813;
  --pod-gm:       #737373;
  --pod-g1:       #5C5C5C;
  --pod-g2:       #A8A8A8;
  --pod-g3:       #DFDFDF;
  --pod-g4:       #EDEDED;
  --pod-cream:    #FBF7F3;
  --pod-serif:    var(--font-serif);
  --pod-sans:     var(--font-sans);
}

#page-podcasts { font-family: var(--pod-sans); font-size: 14px; color: var(--pod-ink); }
#page-podcasts *, #page-podcasts *::before, #page-podcasts *::after { box-sizing: border-box; }
#page-podcasts a { color: inherit; text-decoration: none; }
#page-podcasts img { display: block; max-width: 100%; }
#page-podcasts button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

/* ── Wrapper ── */
.pod-wrap { max-width: 1440px; margin: 0 auto; padding: 0 38px; }

/* ── Eyebrow label ── */
.pod-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--pod-red); display: inline-flex; align-items: center; gap: 10px;
}
.pod-eyebrow::before { content: ""; display: block; width: 24px; height: 1px; background: var(--pod-red); }

/* ── Badges ── */
.pod-badge {
  display: inline-flex; align-items: center; gap: 5px; font-size: 10px;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px;
}
.pod-badge--new  { background: var(--pod-red); color: #fff; }
.pod-badge--live { background: #fff; color: var(--pod-red); box-shadow: 0 0 0 1px var(--pod-red) inset; }
.pod-badge--live::before {
  content: ""; width: 6px; height: 6px; background: var(--pod-red);
  border-radius: 50%; animation: pod-livepulse 1.4s ease-in-out infinite;
}
@keyframes pod-livepulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* ── Buttons ── */
.pod-btn-primary {
  display: inline-flex; align-items: center; gap: 10px; background: var(--pod-red);
  color: #fff; font-weight: 600; font-size: 14px; padding: 13px 22px; border-radius: 4px;
  transition: background .15s, transform .15s;
}
.pod-btn-primary:hover { background: var(--pod-red-dark); transform: translateY(-1px); }

.pod-btn-ghost {
  display: inline-flex; align-items: center; gap: 10px; background: transparent;
  color: #fff; font-weight: 500; font-size: 14px; padding: 13px 22px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,.22); transition: background .15s, border-color .15s;
}
.pod-btn-ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); }

/* ── Section base ── */
.pod-sec { padding: 72px 0; }
.pod-sec--cream { background: var(--pod-cream); }
.pod-sec--ink   { background: var(--pod-ink-2); color: #fff; }

.pod-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.pod-sec-h {
  font-family: var(--pod-serif); font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 600; line-height: 1.05; letter-spacing: -.015em; margin-top: 12px; max-width: 680px;
}
.pod-sec--ink .pod-sec-h { color: #fff; }
.pod-sec-sub  { font-size: 15px; color: var(--pod-g1); max-width: 420px; margin-top: 10px; }
.pod-sec--ink .pod-sec-sub { color: rgba(255,255,255,.55); }
.pod-sec-link {
  font-size: 15px; font-weight: 600; color: var(--pod-red) !important;
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; padding-bottom: 4px;
}
.pod-sec-link::after { content: "→"; transition: transform .2s; }
.pod-sec-link:hover::after { transform: translateX(4px); }
.pod-sec--ink .pod-sec-link { color: rgba(255,255,255,.7); }

/* ================================================================
   HERO
   ================================================================ */
.pod-hero {
  background: var(--pod-ink); color: #fff; position: relative; overflow: hidden;
  padding: 60px 0 68px; border-bottom: 5px solid var(--pod-red);
}
.pod-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 360px at 88% 20%, rgba(222,28,34,.18), transparent 60%),
    radial-gradient(700px 300px at 12% 100%, rgba(222,28,34,.12), transparent 55%);
}
.pod-hero-bgword {
  position: absolute; right: -30px; bottom: -50px; font-family: var(--pod-serif);
  font-weight: 700; font-size: clamp(140px, 20vw, 300px); line-height: .85;
  color: rgba(255,255,255,.04); letter-spacing: -.04em; pointer-events: none; white-space: nowrap;
}
.pod-hero-grid {
  position: relative; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 60px; align-items: center;
}
.pod-hero-eye {
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.8); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.pod-hero-eye::before { content: ""; width: 28px; height: 1px; background: var(--pod-red); }
.pod-hero-h {
  font-family: var(--pod-serif); font-weight: 700;
  font-size: clamp(38px, 5vw, 72px); line-height: 1.02; letter-spacing: -.02em; margin-bottom: 18px;
}
.pod-hero-h em {
  font-style: italic;
  background: linear-gradient(180deg,#fff 0%,#fff 58%,var(--pod-red) 58%,var(--pod-red) 68%,#fff 68%,#fff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pod-hero-p { font-size: 16px; color: rgba(255,255,255,.7); max-width: 500px; line-height: 1.65; margin-bottom: 30px; }
.pod-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.pod-plats { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pod-plats-lbl { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-right: 4px; }
.pod-plat {
  display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); color: #fff; font-size: 12px; font-weight: 500;
  padding: 7px 13px; border-radius: 999px; transition: background .15s;
}
.pod-plat:hover { background: rgba(255,255,255,.12); }
.pod-plat-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pod-plat-dot--spotify { background: #1DB954; }
.pod-plat-dot--apple   { background: #A855F7; }
.pod-plat-dot--podbean { background: #0EA5E9; }

/* Now-playing cover fallback (when no logo) */
.pod-now-cover-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #520003, var(--pod-red));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--pod-serif);
  font-weight: 700;
  font-size: 28px;
}

/* Grid card cover fallback (when podcast term has no logo) */
.pod-pcov-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #520003, var(--pod-red));
  font-family: var(--pod-serif);
  font-weight: 700;
  font-size: 52px;
  color: rgba(255, 255, 255, 0.85);
}

/* Audio-load error notice */
.pod-now-error {
  font-size: 11px;
  color: rgba(255, 100, 100, 0.8);
  margin-top: 8px;
  text-align: center;
}
.pod-now-error a { color: inherit; text-decoration: underline; }

/* Hero stats */
.pod-stats {
  margin-top: 44px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,.1); position: relative;
}
.pod-stat-n {
  font-family: var(--pod-serif); font-size: 36px; font-weight: 600;
  line-height: 1; letter-spacing: -.02em; margin-bottom: 5px;
}
.pod-stat-n sup { font-size: 16px; font-weight: 500; color: var(--pod-red); margin-left: 2px; }
.pod-stat-l { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); }

/* Now Playing card */
.pod-now-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 22px; backdrop-filter: blur(8px);
}
.pod-now-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.pod-now-lbl { font-size: 11px; color: rgba(255,255,255,.45); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.pod-now-art  { display: flex; gap: 14px; align-items: center; }
.pod-now-cover {
  width: 86px; height: 86px; border-radius: 8px; overflow: hidden; flex-shrink: 0;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.5); background: var(--pod-ink);
}
.pod-now-cover img { width: 100%; height: 100%; object-fit: cover; }
.pod-now-show  { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--pod-red); margin-bottom: 4px; }
.pod-now-title { font-family: var(--pod-serif); font-size: 18px; font-weight: 600; line-height: 1.2; margin-bottom: 5px; }
.pod-now-host  { font-size: 12px; color: rgba(255,255,255,.5); }
.pod-now-player { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }
.pod-now-controls { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.pod-now-play {
  width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--pod-ink);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .15s; border: none; cursor: pointer;
}
.pod-now-play:hover { background: var(--pod-red); color: #fff; }
.pod-now-skip {
  width: 34px; height: 34px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; color: rgba(255,255,255,.65);
  transition: color .15s, background .15s; border: none; cursor: pointer; background: transparent;
}
.pod-now-skip:hover { color: #fff; background: rgba(255,255,255,.08); }
.pod-now-time { font-size: 11px; color: rgba(255,255,255,.45); font-variant-numeric: tabular-nums; margin-left: auto; }
.pod-now-bar { height: 4px; background: rgba(255,255,255,.1); border-radius: 99px; cursor: pointer; position: relative; user-select: none; }
.pod-now-bar--disabled { cursor: default; opacity: .4; }
.pod-now-bar-fill {
  height: 100%; width: 0%; background: var(--pod-red); border-radius: 99px; position: relative;
  transition: width .25s linear;
}
/* Scrubber dot — only visible once audio has loaded (bar--loaded class) */
.pod-now-bar--loaded .pod-now-bar-fill::after {
  content: ""; position: absolute; right: -5px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px; background: #fff; border-radius: 50%;
  box-shadow: 0 0 0 3px var(--pod-red); opacity: 0; transition: opacity .15s;
}
.pod-now-bar--loaded:hover .pod-now-bar-fill::after { opacity: 1; }

/* Loading spinner on play button */
@keyframes pod-spin { to { transform: rotate(360deg); } }
.pod-spin { animation: pod-spin .7s linear infinite; display: block; }

/* ================================================================
   FEATURED SHOW
   ================================================================ */
.pod-feat {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); background: var(--pod-ink);
  border-radius: 12px; overflow: hidden; color: #fff; box-shadow: 0 24px 70px -36px rgba(0,0,0,.45);
}
.pod-feat-cov { position: relative; min-height: 480px; background: var(--pod-ink); }
.pod-feat-cov img { width: 100%; height: 100%; object-fit: contain; object-position: center center; position: absolute; inset: 0; filter: saturate(1.05); }
.pod-feat-cov::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, var(--pod-ink) 100%);
}
.pod-feat-cov-tag { position: absolute; top: 22px; left: 22px; z-index: 2; }
.pod-feat-body  { padding: 44px 52px; display: flex; flex-direction: column; justify-content: center; }
.pod-feat-tag   { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--pod-red); margin-bottom: 12px; }
.pod-feat-title { font-family: var(--pod-serif); font-size: 44px; font-weight: 600; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 10px; }
.pod-feat-host  { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.pod-feat-host strong { color: #fff; font-weight: 500; }
.pod-feat-desc  { font-size: 15px; color: rgba(255,255,255,.68); line-height: 1.65; margin-bottom: 26px; max-width: 460px; }

.pod-feat-eps-h { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 6px; }
.pod-epr {
  display: grid; grid-template-columns: 22px 1fr auto auto; align-items: center;
  gap: 12px; padding: 12px 8px; border-top: 1px solid rgba(255,255,255,.08);
  border-radius: 5px; cursor: pointer; transition: background .15s; margin: 0 -8px;
}
.pod-epr:last-child { border-bottom: 1px solid rgba(255,255,255,.08); }
.pod-epr:hover { background: rgba(255,255,255,.04); }
.pod-epn { font-family: var(--pod-serif); font-size: 13px; color: rgba(255,255,255,.38); font-style: italic; }
.pod-ept { font-size: 13px; color: rgba(255,255,255,.9); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pod-epd { font-size: 11px; color: rgba(255,255,255,.38); }
.pod-eppb {
  width: 28px; height: 28px; background: rgba(255,255,255,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .15s;
}
.pod-epr:hover .pod-eppb { background: var(--pod-red); }
.pod-epr--playing .pod-eppb { background: var(--pod-red); }
.pod-epr--playing .pod-ept { color: #fff; }
.pod-feat-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 22px; }

/* ================================================================
   FILTER BAR
   ================================================================ */
.pod-filter-row { display: flex; align-items: center; margin-bottom: 30px; overflow: hidden; }
.pod-fbar { display: flex; width: fit-content; max-width: 100%; min-width: 0; gap: 3px; background: var(--pod-g4); padding: 4px; border-radius: 999px; overflow-x: auto; scrollbar-width: none; }
.pod-fbar::-webkit-scrollbar { display: none; }
.pod-ftab {
  font-size: 13px; font-weight: 500; color: var(--pod-g1); padding: 8px 18px;
  border-radius: 999px; cursor: pointer; white-space: nowrap; transition: color .15s, background .15s;
  border: none; background: transparent;
}
.pod-ftab:hover { color: var(--pod-ink); }
#page-podcasts .pod-ftab.active { color: #fff; background: var(--pod-ink); }
.pod-ftab .pod-count { font-size: 11px; opacity: .5; margin-left: 5px; }
.pod-ftab.active .pod-count { opacity: .7; }

/* ================================================================
   PODCAST GRID
   ================================================================ */
.pod-pgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px 24px; }
.pod-pcard { display: flex; flex-direction: column; cursor: pointer; position: relative; transition: transform .25s ease; text-decoration: none; color: inherit; min-width: 0; }
.pod-pcard:hover { transform: translateY(-4px); }
.pod-pcard.pod-hide { display: none; }
.pod-pcard.pod-collapsed { display: none; }
.pod-load-more-wrap { text-align: center; margin-top: 48px; }
#page-podcasts .pod-load-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px; border-radius: 999px;
  background: var(--pod-ink); color: #fff;
  border: none;
  font-family: inherit;
  font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer;
  transition: background .18s, transform .15s, box-shadow .18s;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
#page-podcasts .pod-load-more-btn:hover { background: var(--pod-red); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200,16,46,.28); }
#page-podcasts .pod-load-more-btn::after { content: '↓'; font-size: 16px; line-height: 1; }
.pod-load-more-wrap.pod-hidden { display: none; }
.pod-pcov {
  position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 1;
  margin-bottom: 14px; background: var(--pod-g4); box-shadow: 0 5px 18px -7px rgba(0,0,0,.18);
}
.pod-pcov img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pod-pcard:hover .pod-pcov img { transform: scale(1.06); }
.pod-pov {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.5));
  opacity: 0; transition: opacity .25s; display: flex; align-items: flex-end; padding: 14px;
}
.pod-pcard:hover .pod-pov { opacity: 1; }
.pod-plc {
  position: absolute; right: 12px; bottom: 12px; width: 44px; height: 44px;
  background: var(--pod-red); color: #fff; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; opacity: 0;
  transform: scale(.8) translateY(8px); transition: opacity .25s, transform .25s;
  box-shadow: 0 6px 18px -4px rgba(222,28,34,.5);
}
.pod-pcard:hover .pod-plc { opacity: 1; transform: scale(1) translateY(0); }
.pod-pnb { position: absolute; top: 10px; left: 10px; }
.pod-pmeta { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; font-size: 11px; color: var(--pod-gm); }
.pod-pcat { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--pod-red); }
.pod-pdot { width: 3px; height: 3px; background: var(--pod-g2); border-radius: 50%; flex-shrink: 0; }
.pod-pname {
  font-family: var(--pod-serif); font-size: 20px; font-weight: 600;
  line-height: 1.15; margin-bottom: 5px; color: var(--pod-ink); transition: color .15s; letter-spacing: -.01em;
}
.pod-pcard:hover .pod-pname { color: var(--pod-red); }
.pod-pdesc { font-size: 13px; color: var(--pod-g1); line-height: 1.55; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pod-platst {
  font-size: 12px; color: var(--pod-gm); border-top: 1px solid var(--pod-g3);
  padding-top: 10px; margin-top: auto; display: flex; align-items: center; gap: 6px;
}
.pod-platst-icon { width: 13px; height: 13px; color: var(--pod-red); flex-shrink: 0; }
.pod-platst-text { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ================================================================
   LATEST EPISODES (dark)
   ================================================================ */
.pod-lgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.pod-ecard {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; overflow: hidden; display: grid; grid-template-columns: 92px 1fr;
  transition: background .2s, border-color .2s, transform .2s; cursor: pointer;
  text-decoration: none; color: inherit;
}
.pod-ecard:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); transform: translateY(-2px); }
.pod-eth { position: relative; background: #000; min-height: 90px; }
.pod-eth img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.pod-eth-num {
  position: absolute; left: 7px; top: 7px; font-family: var(--pod-serif); font-style: italic;
  font-size: 10px; color: rgba(255,255,255,.85); background: rgba(0,0,0,.55);
  padding: 2px 6px; border-radius: 99px;
}
.pod-ebdy { padding: 12px 14px; display: flex; flex-direction: column; justify-content: space-between; gap: 6px; }
.pod-esh  { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--pod-red); }
.pod-etl  { font-size: 13px; font-weight: 500; line-height: 1.3; color: #fff; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pod-em   { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.42); }
.pod-em-play {
  width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .15s;
}
.pod-ecard:hover .pod-em-play { background: var(--pod-red); }

/* ================================================================
   HOSTS
   ================================================================ */
.pod-hosts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.pod-hcard {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 28px 18px; border: 1px solid var(--pod-g3); border-radius: 10px;
  transition: border-color .2s, transform .2s, box-shadow .2s; background: #fff;
}
.pod-hshow-slot { min-height: 28px; display: flex; align-items: center; justify-content: center; margin: 6px 0 0; }
.pod-hcard:hover { border-color: var(--pod-red); transform: translateY(-3px); box-shadow: 0 14px 36px -14px rgba(222,28,34,.18); }
.pod-hcard--hidden { display: none; }
.pod-hcard--hidden.is-revealed { display: flex; }

.pod-hosts-more-wrap { display: flex; justify-content: center; margin-top: 32px; }
#page-podcasts .pod-hosts-more {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--pod-ink);
    border: 1.5px solid var(--pod-g3);
    cursor: pointer;
    font-family: inherit;
    font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    padding: 12px 28px; border-radius: 999px;
    transition: all .15s;
}
#page-podcasts .pod-hosts-more:hover { border-color: var(--pod-ink); }
#page-podcasts .pod-hosts-more.is-expanded svg { transform: rotate(180deg); }
#page-podcasts .pod-hosts-more svg { transition: transform .2s; }
.pod-havatar {
  width: 80px; height: 80px; border-radius: 50%; background: var(--pod-cream);
  margin-bottom: 12px; overflow: hidden; border: 3px solid var(--pod-cream);
  box-shadow: 0 0 0 1px var(--pod-g3); flex-shrink: 0;
}
.pod-havatar img { width: 100%; height: 100%; object-fit: cover; }
.pod-havatar-fb {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--pod-serif); font-size: 28px; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, var(--pod-ink) 0%, #3a0608 100%);
  letter-spacing: -.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.pod-hname  { font-family: var(--pod-serif); font-size: 17px; font-weight: 600; color: var(--pod-ink); margin: 0; line-height: 1.3; }
.pod-hrole  { font-size: 12px; color: var(--pod-gm); margin: 0; line-height: 1.3; min-height: 16px; }
.pod-hshow  { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--pod-red); padding: 5px 12px; background: var(--pod-cream); border-radius: 99px; line-height: 1.2; align-self: center; }
.pod-hbio   {
  font-size: 12px; line-height: 1.55; color: var(--pod-gm);
  margin: 12px 0 0; text-align: center; max-width: 240px;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(12px * 1.55 * 4); /* reserve 4 lines so cards align even when bio is empty */
}

/* ================================================================
   SUBSCRIBE STRIP
   ================================================================ */
.pod-ssec { background: var(--pod-red); color: #fff; position: relative; overflow: hidden; }
.pod-ssec::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 90% 50%, rgba(255,255,255,.1), transparent 60%);
}
.pod-sin { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 56px 0; position: relative; }
.pod-stxt-eye { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 10px; }
.pod-stxt h3 { font-family: var(--pod-serif); font-size: 32px; font-weight: 600; line-height: 1.1; margin-bottom: 6px; }
.pod-stxt p  { font-size: 15px; opacity: .85; max-width: 460px; line-height: 1.55; }
.pod-splats  { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; flex-shrink: 0; min-width: 320px; }
.pod-sbtn {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: #fff;
  font-size: 13px; font-weight: 500; padding: 13px 16px; border-radius: 7px;
  display: flex; align-items: center; gap: 10px; transition: background .15s;
}
.pod-sbtn:hover { background: rgba(255,255,255,.22); }

/* ================================================================
   RELATED READING
   ================================================================ */
.pod-rgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.pod-acard { display: flex; flex-direction: column; cursor: pointer; transition: transform .2s; text-decoration: none; color: inherit; min-width: 0; }
.pod-acard:hover { transform: translateY(-3px); }
.pod-aimg { aspect-ratio: 16/10; overflow: hidden; border-radius: 6px; background: var(--pod-g4); margin-bottom: 12px; position: relative; }
.pod-aimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pod-acard:hover .pod-aimg img { transform: scale(1.04); }
.pod-aimg-tag { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,.94); color: var(--pod-red); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 8px; border-radius: 3px; }
.pod-asr  { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--pod-red); margin-bottom: 6px; }
.pod-atl  { font-family: var(--pod-serif); font-size: 17px; font-weight: 600; line-height: 1.25; color: var(--pod-ink); margin-bottom: 6px; transition: color .15s; min-width: 0; word-break: break-word; }
.pod-acard:hover .pod-atl { color: var(--pod-red); }
.pod-aby  { font-size: 12px; color: var(--pod-gm); }

/* ================================================================
   REVEAL ON SCROLL
   ================================================================ */
.pod-reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.pod-reveal.pod-in { opacity: 1; transform: none; }

/* ================================================================
   RESPONSIVE
   Breakpoints: 1100 / 960 (tablet) / 768 (mobile) / 480 (small)
   ================================================================ */

/* ── 1100px — show grid narrows ─────────────────────────────── */
@media (max-width: 1100px) {
  .pod-pgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pod-rgrid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ── 960px — tablet: single-column hero, stacked sections ───── */
@media (max-width: 960px) {
  /* Wrapper */
  .pod-wrap { padding: 0 24px; }

  /* Hero */
  .pod-hero { padding: 44px 0 52px; }
  .pod-hero-bgword { font-size: clamp(100px, 18vw, 180px); }
  .pod-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .pod-hero-h { font-size: clamp(32px, 5vw, 52px); }
  .pod-now-card { width: 100%; max-width: 520px; }

  /* Stats */
  .pod-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 32px; }

  /* Featured show */
  .pod-feat       { grid-template-columns: 1fr; }
  .pod-feat-cov   { min-height: 280px; max-height: 360px; }
  .pod-feat-body  { padding: 28px 30px; }
  .pod-feat-title { font-size: 32px; }

  /* Latest episodes */
  .pod-lgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Hosts */
  .pod-hosts { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Subscribe */
  .pod-sin    { flex-direction: column; align-items: flex-start; padding: 44px 0; gap: 28px; }
  .pod-splats { min-width: 0; width: 100%; }
}

/* ── 768px — mobile ──────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Wrapper + sections */
  .pod-wrap { padding: 0 16px; }
  .pod-sec  { padding: 48px 0; }
  .pod-sec-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pod-sec-h  { font-size: 26px; }
  .pod-sec-sub { font-size: 14px; }

  /* Hero */
  .pod-hero { padding: 32px 0 40px; }
  .pod-hero-bgword { display: none; }
  .pod-hero-h { font-size: 30px; margin-bottom: 12px; }
  .pod-hero-p { font-size: 15px; margin-bottom: 22px; }
  .pod-hero-cta { flex-direction: column; gap: 10px; }
  .pod-btn-primary,
  .pod-btn-ghost  { width: 100%; justify-content: center; }
  .pod-plats { gap: 6px; }
  .pod-now-card { max-width: 100%; }
  .pod-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-top: 24px; margin-top: 24px; }
  .pod-stat-n { font-size: 28px; }

  /* Section header link moves below heading */
  .pod-sec-link { margin-top: 4px; }

  /* Show grid */
  .pod-pgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 12px; }
  .pod-pname { font-size: 16px; }

  /* Filter bar */
  .pod-filter-row { overflow: hidden; }
  .pod-fbar { width: 100%; border-radius: 12px; }

  /* Featured show */
  .pod-feat-body  { padding: 22px 20px; }
  .pod-feat-title { font-size: 26px; }
  .pod-feat-desc  { font-size: 14px; }
  .pod-epr { grid-template-columns: 20px 1fr auto; gap: 8px; }
  .pod-epn { font-size: 11px; }
  .pod-ept { font-size: 12px; }
  .pod-epd { display: none; }
  .pod-feat-actions { flex-direction: column; gap: 10px; }
  .pod-feat-actions .pod-btn-primary,
  .pod-feat-actions .pod-btn-ghost { width: 100%; justify-content: center; }

  /* Latest episodes */
  .pod-lgrid { grid-template-columns: 1fr; }
  .pod-ecard { grid-template-columns: 80px 1fr; }

  /* Hosts */
  .pod-hosts  { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .pod-havatar { width: 80px; height: 80px; margin: 0 auto 12px; }
  .pod-hname  { font-size: 15px; }

  /* Subscribe */
  .pod-sin    { padding: 36px 0; gap: 20px; }
  .pod-splats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pod-sbtn   { font-size: 13px; padding: 10px 12px; }

  /* Related */
  .pod-rgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

/* ── 480px — small mobile ────────────────────────────────────── */
@media (max-width: 480px) {
  /* Hero */
  .pod-hero-h { font-size: 26px; }
  .pod-hero-p { font-size: 14px; }
  .pod-stats  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pod-stat-n { font-size: 24px; }

  /* Show grid — 1 column */
  .pod-pgrid { grid-template-columns: 1fr; gap: 16px; }

  /* Latest — keep 1 col */
  .pod-lgrid { grid-template-columns: 1fr; }

  /* Related — 1 column */
  .pod-rgrid { grid-template-columns: 1fr; }

  /* Hosts — 2 columns is fine */
  .pod-hosts { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Subscribe buttons — stack */
  .pod-splats { grid-template-columns: 1fr; }
}
