/* Single episode detail (podcast / show). */
.ep-detail { padding: 28px 0 72px; }
.ep-detail .wrap { max-width: 920px; }
.ep-crumb { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-3); font-weight: 500; margin-bottom: 18px; text-decoration: none; transition: color 0.15s; }
.ep-crumb:hover { color: var(--accent); }
.ep-crumb svg { width: 14px; height: 14px; }
[dir="rtl"] .ep-crumb svg { transform: scaleX(-1); }
.ep-stage {
  position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden;
  background: #000; box-shadow: 0 28px 64px rgba(20, 20, 25, 0.28);
}
.ep-stage iframe,
.ep-stage video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; object-fit: contain; background: #000; }
.ep-stage:has(audio) {
  aspect-ratio: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--surface, #111);
  padding: 0;
}
.ep-stage .ep-audio-cover {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}
.ep-stage audio {
  display: block;
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  box-sizing: border-box;
  background: #1a1a1a;
}
.ep-head { padding-top: 24px; }
.ep-head .eb { font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.ep-head h1 { font-family: var(--serif-fa); font-weight: 600; font-size: 34px; line-height: 1.2; letter-spacing: -0.6px; margin: 0 0 10px; color: var(--ink); }
.ep-head .ep-meta { font-size: 13px; color: var(--ink-3); }
.ep-head .ep-desc { margin-top: 16px; font-size: 15px; line-height: 1.65; color: var(--ink-2, #444); white-space: pre-line; }

@media (max-width: 720px) {
  .ep-stage { border-radius: 12px; }
  .ep-head h1 { font-size: 26px; }
}
