:root {
  --bg: #f5ede4;
  --bg-deep: #2d2723;
  --card: #fffdf9;
  --line: #dccab7;
  --text: #241f1b;
  --muted: #6c6258;
  --accent: #a6652d;
  --accent-dark: #8c4f1d;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Noto Sans TC", "PingFang TC", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f4eadf 0%, #eddcc8 40%, #d6a06b 100%);
}
a { color: inherit; }
.page {
  width: min(1080px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}
.hero, .panel, .simple-header {
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(63, 42, 21, 0.12);
}
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 32px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  margin: 8px 0 8px;
  font-family: "Noto Serif TC", serif;
}
.subtitle {
  font-size: 1.2rem;
  color: var(--accent-dark);
  margin: 0 0 18px;
}
.lead { font-size: 1.05rem; color: var(--muted); max-width: 34rem; }
.badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1dfca;
  color: var(--accent-dark);
  font-size: 0.9rem;
}
.cover {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.04);
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.button, .text-link {
  text-decoration: none;
}
.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
}
.button.primary {
  background: var(--bg-deep);
  color: white;
  border-color: var(--bg-deep);
}
.panel, .simple-header {
  margin-top: 24px;
  padding: 28px;
}
.prose p, .prose li { line-height: 1.8; }
.prose h1, .prose h2, .prose h3 {
  font-family: "Noto Serif TC", serif;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.card, .episode-row {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.65);
}
.card h3, .episode-row h2 {
  margin: 10px 0 10px;
  font-family: "Noto Serif TC", serif;
}
.eyebrow, .episode-meta {
  color: var(--muted);
  font-size: 0.9rem;
}
.back-link {
  text-decoration: none;
  color: var(--muted);
}
.episode-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.list-page { display: grid; gap: 16px; }
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
}