/* /podcast/ landing + show-notes shared styles */
.podcast-index {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.podcast-index header h1 { margin-bottom: 0.25rem; }
.podcast-index .tagline { color: #666; margin: 0 0 1.5rem; }
.podcast-index .subscribe {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0 0 2rem;
}
.podcast-index .subscribe a {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #f4f4f6;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 0.9rem;
}
.podcast-index .subscribe a:hover { background: #e7e7eb; }
.episode-grid {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.episode-card a {
  display: block;
  padding: 1rem;
  border-radius: 12px;
  background: #fafafa;
  color: inherit;
  text-decoration: none;
  height: 100%;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.episode-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.episode-card h3 {
  margin: 0 0 0.4rem 0;
  font-size: 1.05rem;
  line-height: 1.35;
}
.episode-card p { margin: 0; font-size: 0.85rem; color: #666; }

.podcast-show-notes {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.podcast-show-notes .back-link {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
  color: #555;
}
.podcast-show-notes h1 { margin-bottom: 0.25rem; }
.podcast-show-notes .meta { color: #666; font-size: 0.9rem; margin: 0 0 1.5rem; }
.podcast-show-notes .player audio { width: 100%; }
.podcast-show-notes .show-summary { margin: 1.2rem 0; }
.podcast-show-notes .chapters ol { padding-left: 1.2rem; }
.podcast-show-notes .chapters a { text-decoration: none; }
.podcast-show-notes .transcript {
  border-top: 1px solid #eee;
  padding-top: 1rem;
  margin-top: 1.5rem;
}
.podcast-show-notes .transcript p { margin: 0.4rem 0; line-height: 1.55; }
.podcast-show-notes .transcript .t {
  color: #888;
  font-variant-numeric: tabular-nums;
  margin-right: 0.5rem;
  font-size: 0.85rem;
}
.podcast-show-notes .related {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 0.9rem;
}
@media (prefers-color-scheme: dark) {
  .episode-card a { background: #1c1c1f; color: #eee; }
  .episode-card a:hover { background: #25252a; }
  .episode-card p, .podcast-show-notes .meta,
  .podcast-show-notes .transcript .t,
  .podcast-show-notes .related, .podcast-index .tagline { color: #999; }
  .podcast-index .subscribe a { background: #25252a; color: #eee; }
  .podcast-index .subscribe a:hover { background: #2e2e34; }
  .podcast-show-notes .transcript, .podcast-show-notes .related { border-color: #2a2a2e; }
}
