.page-head {
  padding: 56px 0 24px;
  position: relative;
  overflow: hidden;
}
.page-head__motif {
  position: absolute;
  top: -30px; left: 5%;
  width: 200px;
  color: var(--accent);
  opacity: 0.12;
  pointer-events: none;
}

/* Hero player */
.player-hero {
  background: linear-gradient(135deg, var(--sage-4), var(--sage-3));
  border-radius: 28px;
  padding: 40px;
  color: var(--bg);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 32px;
}
.player-hero__motif {
  position: absolute;
  top: -60px; left: -40px;
  width: 280px;
  color: var(--bg);
  opacity: 0.06;
}
.player-hero__cover {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 50%, var(--sage-4)));
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.player-hero__cover-motif {
  position: absolute;
  inset: 0;
  color: white;
  opacity: 0.2;
}
.player-hero__cover-icon {
  width: 100px; height: 100px;
  color: white;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}
.player-hero__cover-num {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  z-index: 2;
}
.player-hero__info { position: relative; z-index: 1; }
.player-hero__eyebrow {
  color: color-mix(in srgb, var(--bg) 70%, transparent);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.player-hero__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--bg);
  line-height: 1.3;
  margin-bottom: 8px;
}
.player-hero__guest {
  color: color-mix(in srgb, var(--bg) 80%, transparent);
  font-size: 1rem;
  margin-bottom: 24px;
}
.player-hero__controls {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.player-hero__play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--sage-3);
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.15s;
}
.player-hero__play:hover { transform: scale(1.05); }
.player-hero__progress {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.player-hero__bar {
  flex: 1;
  height: 6px;
  background: color-mix(in srgb, var(--bg) 25%, transparent);
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.player-hero__bar-fill {
  height: 100%;
  width: 32%;
  background: var(--bg);
  border-radius: 999px;
  transition: width 0.2s;
  position: relative;
}
.player-hero__bar-fill::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  background: var(--bg);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.player-hero__time { font-size: 0.85rem; color: color-mix(in srgb, var(--bg) 75%, transparent); font-variant-numeric: tabular-nums; }
.player-hero__platforms {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
}
.player-hero__platforms a {
  display: flex; align-items: center; gap: 6px;
  background: color-mix(in srgb, var(--bg) 10%, transparent);
  color: var(--bg);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
}
.player-hero__platforms a:hover { background: color-mix(in srgb, var(--bg) 20%, transparent); }
@media (max-width: 760px) {
  .player-hero { grid-template-columns: 1fr; padding: 28px; }
  .player-hero__cover { max-width: 240px; margin: 0 auto; }
}

/* Episode grid */
.ep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .ep-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ep-grid { grid-template-columns: 1fr; } }

.ep-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}
.ep-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--sage-2); }
.ep-card__cover {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.ep-card__cover-motif { position: absolute; inset: 0; color: white; opacity: 0.2; }
.ep-card__cover-icon { width: 56px; height: 56px; color: white; opacity: 0.9; position: relative; z-index: 1; }
.ep-card__num {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  color: white;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  z-index: 2;
}
.ep-card__duration {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.45);
  color: white;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 2;
  font-variant-numeric: tabular-nums;
}
.ep-card__body { padding: 20px; }
.ep-card__title { font-size: 1.08rem; font-weight: 700; line-height: 1.45; margin-bottom: 8px; }
.ep-card__guest { color: var(--ink-mute); font-size: 0.88rem; margin-bottom: 14px; }
.ep-card__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.ep-card__cta-date { color: var(--ink-mute); font-size: 0.8rem; }
.ep-card__play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sage-3);
  color: var(--bg);
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.15s;
}
.ep-card__play:hover { background: var(--sage-4); transform: scale(1.08); }
.ep-card__play.is-playing { background: var(--accent); }

/* Quote / about */
.pod-about {
  background: var(--bg-warm);
  border-radius: 24px;
  padding: 40px;
  margin: 48px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pod-about__motif {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px;
  color: var(--sage-2);
  opacity: 0.08;
}
.pod-about h2 { font-size: 1.6rem; }
.pod-about p { color: var(--ink-mute); margin-top: 12px; line-height: 1.9; }
.pod-about__hosts { display: flex; gap: 18px; }
.pod-about__host {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 18px;
  flex: 1;
  text-align: center;
}
.pod-about__host-avatar {
  width: 64px; height: 64px;
  border-radius: 20px;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, var(--sage-1), var(--sage-3));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.pod-about__host-name { font-weight: 700; font-size: 0.95rem; }
.pod-about__host-role { color: var(--ink-mute); font-size: 0.82rem; }
@media (max-width: 760px) {
  .pod-about { grid-template-columns: 1fr; padding: 28px; }
}
