/* Container */
.wrap { max-width: 1100px; margin: 0 auto; padding: 24px; }

/* Hero */
.beacon-hero { background: radial-gradient(1200px 300px at 50% -80px, #2c7be5 0%, #0e0f14 60%); color: #fff; }
.beacon-hero .wrap { padding: 56px 24px; }
.beacon-hero .title { font-size: 40px; margin: 0 0 8px; }
.beacon-hero .tagline { opacity: .9; max-width: 800px; }

/* Toolbar */
.episodes-toolbar { display: flex; align-items: center; gap: 12px; margin: 18px 0 8px; }
.episodes-toolbar .spacer { flex: 1; }
.muted { color: #8a8fa3; }
.dot { margin: 0 8px; color: #3b3f54; }

/* Grid */
.episodes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin: 16px 0 40px; }
.ep-card { background: #0f1117; border: 1px solid #1b1f2d; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.ep-card .thumb { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; }
.ep-card img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.95); }
.badge { position: absolute; left: 12px; top: 12px; font-size: 12px; background: #2c7be5; color: #fff; padding: 4px 8px; border-radius: 999px; }
.ep-card .meta { padding: 14px 14px 16px; display: grid; gap: 8px; }
.ep-card .ep-title { margin: 0; font-size: 18px; line-height: 1.25; }
.ep-desc { color: #c8ccdc; line-height: 1.45; max-height: 3.5em; overflow: hidden; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 12px; padding: 4px 8px; border: 1px solid #27304b; border-radius: 999px; color: #aeb4c9; }

/* Episode page */
.crumbs { margin: 14px 0 6px; color: #8a8fa3; }
.episode-head h1 { margin: 8px 0 6px; }
.player { position: sticky; top: 0; z-index: 2; background: #0b0d13; border: 1px solid #1a1f2e; border-radius: 12px; padding: 12px; margin: 12px 0 18px; }
.notes .lead { white-space: pre-line; }
.btn { display: inline-block; background: #2c7be5; color: #fff; padding: 10px 14px; border-radius: 10px; text-decoration: none; }
.ghost { color: #aeb4c9; text-decoration: none; border: 1px solid #29324d; padding: 8px 12px; border-radius: 10px; }
.episode-nav { display: flex; justify-content: space-between; margin: 28px 0; }

/* Empty state */
.empty { text-align: center; padding: 40px 0 80px; color: #8a8fa3; }
