/* ── Pink Radio — Single Podcast Episode ── */
@import url("../../parts/share-buttons.css");

.pse-hero,
.pse-content {
  --pse-teal:   #0891b2;
  --pse-pink:   #e8005a;
  --pse-bg:     #0d0d0d;
  --pse-muted:  #888;
  --pse-dim:    #555;
  --pse-border: rgba(255, 255, 255, 0.07);
}

/* Cover theme animated background */
.single-podcast .dhrk-ajax-content,
.single-podcast .qw-content-wrapper {
  background: var(--pse-bg);
}

/* Teal accent line at nav bottom */
.single-podcast #qwFixedHeader { overflow: visible; }
.single-podcast #qwFixedHeader::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pse-teal) 0%, rgba(8, 145, 178, 0.3) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* ── HERO ── */
.pse-hero {
  position: relative;
  width: 100%;
  padding: 130px 40px 56px;
  background-color: var(--pse-bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
.pse-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 15% 20%, rgba(8, 145, 178, 0.12) 0%, transparent 65%),
    linear-gradient(180deg, rgba(13, 13, 13, 0.35) 0%, rgba(13, 13, 13, 0.65) 55%, var(--pse-bg) 100%);
}
.pse-hero:not(.pse-hero--has-image)::before {
  background:
    radial-gradient(ellipse 55% 60% at 15% 20%, rgba(8, 145, 178, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 35% 60% at 90% 10%, rgba(8, 145, 178, 0.06) 0%, transparent 60%);
}
.pse-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.pse-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pse-muted);
  text-decoration: none;
  margin-bottom: 1.75rem;
  transition: color .2s;
}
.pse-back:hover {
  color: var(--pse-teal);
}

.pse-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: .75rem;
}
.pse-eyebrow__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pse-teal);
}

.pse-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 88px) !important;
  letter-spacing: 4px;
  line-height: 1.05;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
  background: linear-gradient(95deg, #ffffff 30%, var(--pse-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pse-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.75rem;
}
.pse-pill {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(8, 145, 178, 0.11);
  border: 1px solid rgba(8, 145, 178, 0.3);
  color: var(--pse-teal);
}
.pse-meta__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--pse-muted);
}
.pse-meta__item svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  flex-shrink: 0;
}

.pse-tags a {
  color: var(--pse-muted);
  text-decoration: none;
  border: 1px solid var(--pse-border);
  border-radius: 4px;
  padding: 3px 9px;
  font-size: 11px;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-right: 6px;
  transition: color .2s, border-color .2s;
}
.pse-tags a:hover {
  color: var(--pse-teal);
  border-color: rgba(8, 145, 178, 0.35);
}

/* ── SHARE ── */
.pse-hero .pinkradio-share {
  margin-top: 20px;
  margin-bottom: 0;
}
.pse-hero .pinkradio-share a {
  color: var(--pse-teal);
}
.pse-hero .pinkradio-share a:hover {
  color: #fff;
}

/* ── PLAYER ── */
.pse-player {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 520px;
  padding: 1rem 1.25rem;
  background: rgba(20, 20, 20, 0.7);
  border: 1px solid var(--pse-border);
  border-radius: 10px;
  backdrop-filter: blur(6px);
}
.pse-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pse-teal);
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity .2s;
}
.pse-play-btn:hover {
  opacity: .85;
}
.pse-play-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-left: 2px;
}
.pse-player-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}
.pse-player-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pse-teal);
}
.pse-player-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .5px;
  color: #f0f0f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── DESCRIPTION ── */
.pse-content {
  background: var(--pse-bg);
  padding: 3rem 0 5rem;
}
.pse-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #aaa;
}
.pse-description p {
  margin: 0 0 1.25rem;
}
.pse-description a {
  color: var(--pse-teal);
  text-decoration: underline;
}
.pse-description h1,
.pse-description h2,
.pse-description h3,
.pse-description h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f0f0f0;
  margin: 0 0 1rem;
}

@media (max-width: 640px) {
  .pse-hero {
    padding: 100px 20px 40px;
  }
  .pse-title {
    letter-spacing: 2px;
  }
  .pse-player {
    width: 100%;
    max-width: none;
  }
}
