/* ════════════════════════════════════════════════
   PODCASTS PAGE — hero + episode grid with embeds
   ════════════════════════════════════════════════ */

body { background: var(--sky); color: var(--carbon); }

/* ── HERO ── */
.podcast-hero {
  background: var(--majorelle) url('images/hero-pattern.png') center / cover;
  padding: 10rem 4rem 5rem;
  text-align: center;
}
.podcast-hero h1 {
  font-family: 'ZTNature', sans-serif; font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white);
  letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 1rem;
}
.podcast-hero p {
  font-size: 1.35rem; color: rgba(255,255,255,0.75); max-width: 640px;
  margin: 0 auto; line-height: 1.6; font-weight: 100;
}

/* ── LISTING ── */
.podcast-main { max-width: 1100px; margin: 0 auto; padding: 5rem 4rem; }
.podcast-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.podcast-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 20px rgba(0,43,98,0.08);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  display: flex; flex-direction: column;
}
.podcast-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,43,98,0.16); border-color: var(--majorelle); }

/* responsive 16:9 video embed */
.podcast-video { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.podcast-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

.podcast-body { padding: 1.2rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.podcast-series {
  font-size: 0.68rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--majorelle); margin-bottom: 0.4rem;
}
.podcast-title {
  font-family: 'ZTNature', sans-serif; font-weight: 900;
  font-size: 1.05rem; color: var(--navy); line-height: 1.3; margin-bottom: 1rem;
}
.podcast-link {
  margin-top: auto; align-self: flex-start;
  font-size: 0.85rem; font-weight: 900; text-decoration: none;
  padding: 0.6rem 1.3rem; border-radius: 50px;
  background: #c00; color: #fff;
  transition: background 0.2s, transform 0.15s;
}
.podcast-link:hover { background: #900; transform: translateY(-2px); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .podcast-hero { padding: 8rem 1.5rem 4rem; }
  .podcast-main { padding: 3rem 1.5rem; }
  .podcast-grid { grid-template-columns: 1fr; }
}
