#app { max-width: 68rem; margin: 0 auto; padding: 0 1.5rem 6rem; }

.hero {
  display: grid; grid-template-columns: minmax(220px, 340px) 1fr; gap: 3rem;
  padding: 4rem 0 3.5rem; align-items: center;
}
.hero__cover {
  aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.hero__cover img, .hero__cover.cover-fallback { width: 100%; height: 100%; object-fit: cover; }
.hero__cover.cover-fallback svg { width: 30%; height: 30%; }
.hero__eyebrow { font-size: 0.78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.hero__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; margin: .5rem 0 1rem; letter-spacing: -0.01em; }
.hero__desc { color: var(--text-muted); font-size: 1.02rem; max-width: 38rem; white-space: pre-line; }
.hero__meta { display: flex; gap: 1.25rem; margin: 1.25rem 0 1.75rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-muted); }
.hero__meta strong { color: var(--text); }
.hero__actions { display: flex; gap: 0.75rem; align-items: center; }
.btn-play {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--text); color: var(--bg); border: none;
  padding: 0.85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  transition: transform .15s ease;
}
.btn-play:hover { transform: scale(1.03); }
.btn-play svg { width: 1.1rem; height: 1.1rem; }

.section-title { font-family: var(--font-display); font-size: 1.5rem; margin: 0 0 1.5rem; }

.episodes { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.ep-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.ep-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.ep-card__cover { aspect-ratio: 16/10; position: relative; }
.ep-card__cover img, .ep-card__cover.cover-fallback { width: 100%; height: 100%; object-fit: cover; }
.ep-card__play {
  position: absolute; bottom: 0.7rem; right: 0.7rem; width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: rgba(20,18,12,0.82); color: #fff; border: none; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.ep-card__play svg { width: 1rem; height: 1rem; }
.ep-card.is-playing .ep-card__play { background: var(--accent); }
.ep-card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.ep-card__date { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.ep-card__title { font-size: 1.02rem; font-weight: 600; line-height: 1.35; margin: 0; }
.ep-card__excerpt { font-size: 0.85rem; color: var(--text-muted); flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ep-card__foot { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--text-muted); margin-top: .3rem; }

.load-more { display: flex; justify-content: center; margin-top: 2.5rem; }
.load-more button {
  border: 1px solid var(--border); background: var(--surface); color: var(--text);
  padding: 0.7rem 1.6rem; border-radius: 999px; font-size: 0.9rem; font-weight: 600;
}
.load-more button:hover { border-color: var(--text); }

.toast {
  position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--text); color: var(--bg); padding: 0.75rem 1.25rem; border-radius: var(--radius-sm);
  font-size: 0.85rem; transition: transform .25s ease; z-index: 100; max-width: 90vw; text-align: center;
}
.toast.is-visible { transform: translateX(-50%) translateY(0); }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding-top: 2.25rem; text-align: left; }
  .hero__cover { max-width: 220px; margin: 0 auto 0.5rem; }
}
