/* Project: Liza CMS / sites/liza.st — podcast dark theme */
body.podcast {
  --bg: #0d0d0d;
  --text: #e0e0e0;
  --link: #f5a623;
  --muted: #888;
  --episode-bg: #1a1a1a;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  line-height: 1.6;
}
body.podcast .podcast-cover { text-align: center; margin-bottom: 2rem; }
body.podcast .cover { max-width: 220px; border-radius: 8px; margin-bottom: 1rem; }
body.podcast h1 { margin: .5rem 0; }
body.podcast .tagline { color: var(--muted); margin: 0 0 1.5rem; }
body.podcast a { color: var(--link); text-decoration: none; }
body.podcast a:hover { text-decoration: underline; }

body.podcast .episode {
  background: var(--episode-bg);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
body.podcast .episode h2 { margin: 0 0 .5rem; font-size: 1.2rem; }
body.podcast .episode .meta { color: var(--muted); font-size: .9rem; margin-bottom: .75rem; }
body.podcast .episode .desc { margin-bottom: 1rem; }
body.podcast .episode audio { width: 100%; }
