/* Styles for /podcast. Kept out of styles.css so the shared cache-bust string
   (duplicated across 13 files) does not need bumping for a one-page change. */
.podcast-subscribe { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0 14px; }
.podcast-note { color: var(--muted); font-size: 0.95rem; }
.podcast-list { display: grid; gap: 20px; margin: 28px 0 44px; }
.podcast-episode {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--sage);
  border-radius: 14px;
  padding: 22px 24px;
}
.podcast-episode.has-art {
  display: grid; grid-template-columns: 150px 1fr; gap: 22px; align-items: start;
}
.podcast-art {
  width: 150px; height: 150px; border-radius: 10px; display: block;
  object-fit: cover; box-shadow: 0 2px 10px rgba(42, 33, 28, 0.12);
}
.podcast-episode-body { min-width: 0; }
.podcast-episode-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; margin-bottom: 6px;
}
.podcast-number {
  font-family: var(--body); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-dark);
}
.podcast-duration { color: var(--muted); font-size: 0.85rem; }
.podcast-episode h2 { margin: 0 0 10px; font-size: 1.32rem; line-height: 1.28; }
.podcast-episode h2 a { color: var(--charcoal); text-decoration: none; }
.podcast-episode h2 a:hover { color: var(--sage-dark); text-decoration: underline; }
.podcast-episode-body > p { margin: 0 0 14px; }
.podcast-episode audio { width: 100%; margin-bottom: 12px; }
.podcast-sources summary { cursor: pointer; font-weight: 600; color: var(--sage-dark); }
.podcast-sources ul { margin: 10px 0 0; padding-left: 20px; }
.podcast-sources li { margin-bottom: 4px; }
.podcast-recipe { margin-top: 12px; font-size: 0.95rem; }
.podcast-disclaimer { margin-bottom: 52px; }
.podcast-disclaimer p {
  background: var(--biscuit); border-radius: 12px; padding: 18px 22px;
  color: var(--charcoal); font-size: 0.95rem; margin: 0;
}
@media (max-width: 680px) {
  .podcast-episode { padding: 18px; }
  .podcast-episode h2 { font-size: 1.15rem; }
  /* stack on phones: a 150px thumbnail beside text leaves the title about 12 characters wide */
  .podcast-episode.has-art { grid-template-columns: 1fr; gap: 14px; }
  .podcast-art { width: 110px; height: 110px; }
}
