:root { color-scheme: light; --fg: #1f2933; --muted: #64748b; --line: #e2e8f0; --accent: #7c3aed; }
* { box-sizing: border-box; }
body { margin: 0; font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--fg); background: #fbfaf8; line-height: 1.6; }
header, main, footer { max-width: 980px; margin: 0 auto; padding: 24px; }
header { display: flex; gap: 16px; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
nav { display: flex; flex-wrap: wrap; gap: 14px; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.brand { color: var(--fg); font-weight: 800; text-decoration: none; }
.hero { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; }
.show-cover, .cover { width: 100%; max-width: 320px; border-radius: 18px; box-shadow: 0 18px 45px rgb(15 23 42 / 12%); }
h1 { font-size: clamp(2.2rem, 7vw, 4.8rem); line-height: .95; margin: 0 0 18px; }
h2 { margin-top: 48px; }
.tagline { font-size: 1.25rem; color: var(--muted); }
.button, .download { display: inline-block; padding: 10px 14px; border-radius: 999px; background: var(--fg); color: white; text-decoration: none; }
.episode-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.episode-list li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.episode-list span, .meta, footer { color: var(--muted); }
audio { width: 100%; margin: 20px 0 8px; }
.notes { margin-top: 36px; }
.notes img { max-width: 100%; }
@media (max-width: 720px) { header { align-items: flex-start; flex-direction: column; } .hero { grid-template-columns: 1fr; } .episode-list li { display: block; } }
