/* Alex Leroy v2 — /podcast page */

.pod-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 7rem 1.5rem 0;
  text-align: center;
}

.pod-hero__kicker {
  font-family: var(--sans, 'Archivo', sans-serif);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: var(--accent, #B26A3C);
  margin: 0 0 1.2rem;
}

.pod-hero__title {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1.4rem;
}

.pod-hero__lede {
  font-family: var(--serif-body, 'Newsreader', serif);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto;
  color: var(--muted, #6b6358);
}

.pod-hero__embed {
  margin: 2.5rem 0;
}

.pod-hero__embed iframe {
  border-radius: 12px;
  display: block;
}

/* Hosts */
.pod-hosts {
  max-width: 900px;
  margin: 0 auto;
  padding-block: 4rem;
  padding-inline: 1.5rem;
}

.pod-hosts h2,
.pod-about h2 {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  text-align: center;
  margin: 0 0 2.2rem;
}

.pod-hosts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.pod-hosts__grid article {
  text-align: center;
}

.pod-hosts__grid img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
}

.pod-hosts__grid .ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  text-align: center;
  font-size: .8rem;
}

.pod-hosts__grid h3 {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: 1.5rem;
  margin: 0 0 .6rem;
}

.pod-hosts__grid p {
  font-family: var(--serif-body, 'Newsreader', serif);
  line-height: 1.6;
  color: var(--muted, #6b6358);
  margin: 0;
}

/* About */
.pod-about {
  max-width: 60ch;
  margin: 0 auto;
  padding-block: 2rem 4rem;
  padding-inline: 1.5rem;
}

.pod-about p {
  font-family: var(--serif-body, 'Newsreader', serif);
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  margin: 0;
}

@media (max-width: 700px) {
  .pod-hosts__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Episodi ─────────────────────────────────────────── */
.pod-eps { max-width: 760px; margin: 0 auto; padding: 1rem 1.5rem 4rem; }
.pod-eps h2 { font-family: var(--serif, 'Cormorant Garamond', serif); text-align: center; font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 1.5rem; }
.pod-ep { border-top: 1px solid var(--rule, rgba(0,0,0,.12)); padding: 1.5rem 0; }
.pod-ep__n { display: block; font-family: var(--sans, 'Archivo', sans-serif); text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; color: var(--accent, #B26A3C); margin-bottom: .5rem; }
.pod-ep p { font-family: var(--serif-body, 'Newsreader', serif); margin: 0; }
.pod-eps__more { font-family: var(--serif-body, 'Newsreader', serif); text-align: center; color: var(--muted, #6b6b6b); margin-top: 1.5rem; }
.pod-eps__more a { color: var(--accent, #B26A3C); }
