:root {
  --podcast-bg: #0b0f14;
  --podcast-card: rgba(22, 27, 34, 0.9);
  --podcast-card-solid: #161b22;
  --podcast-line: rgba(255, 255, 255, 0.08);
  --podcast-muted: #9ca3af;
  --podcast-text: #e5e7eb;
  --podcast-accent: #ff0000;
  --podcast-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
  --podcast-shadow-hover: 0 30px 70px rgba(0, 0, 0, 0.48);
  --podcast-radius: 20px;
}

body.page-podcast-hub,
body.page-podcaster {
  background: var(--podcast-bg);
  color: var(--podcast-text);
}

body.page-podcast-hub .hero,
body.page-podcaster .hero {
  background: transparent;
}

.podcast-page-shell {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
}

.podcast-page-intro {
  padding: 3.5rem 0 2rem;
}

.podcast-page-intro h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.podcast-page-intro p {
  max-width: 56rem;
  margin: 1rem 0 0;
  color: rgba(229, 231, 235, 0.78);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
}

.podcast-stack {
  display: grid;
  gap: 2rem;
  padding: 0 0 4rem;
}

.podcast-row {
  display: grid;
  grid-template-columns: minmax(0, 38fr) minmax(0, 62fr);
  gap: 32px;
  align-items: start;
}

.podcast-row + .podcast-row {
  margin-top: 0.5rem;
}

.podcast-profile-card,
.podcast-video-card,
.podcast-placeholder-card {
  background: linear-gradient(180deg, rgba(26, 31, 40, 0.96), rgba(18, 22, 30, 0.96));
  border: 1px solid var(--podcast-line);
  border-radius: var(--podcast-radius);
  box-shadow: var(--podcast-shadow);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.podcast-profile-card:hover,
.podcast-video-card:hover,
.podcast-placeholder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--podcast-shadow-hover);
  border-color: rgba(255, 255, 255, 0.14);
}

.podcast-profile-card {
  position: sticky;
  top: 1.5rem;
  padding: 2rem;
}

.podcast-profile-card__inner,
.podcast-video-card__inner,
.podcast-placeholder-card__inner {
  display: grid;
  gap: 1.25rem;
}

.podcast-avatar-wrap {
  display: grid;
  justify-items: center;
}

.podcast-avatar-link {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
}

.podcast-avatar {
  width: 132px;
  height: 132px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #22d3ee, #0ea5e9, #2563eb);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 0 0 14px rgba(255, 255, 255, 0.02), 0 0 48px rgba(34, 211, 238, 0.18);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.podcast-avatar--photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.podcast-avatar:hover {
  transform: scale(1.03);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 0 14px rgba(255, 255, 255, 0.03), 0 0 60px rgba(34, 211, 238, 0.28);
}

.podcast-name {
  margin: 0;
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
  letter-spacing: -0.04em;
}

.podcast-host {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.podcast-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(229, 231, 235, 0.9);
  font-size: 0.85rem;
  line-height: 1;
}

.podcast-pill--accent {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.podcast-summary {
  padding: 1rem 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.podcast-summary p {
  margin: 0;
  color: rgba(229, 231, 235, 0.85);
  line-height: 1.65;
}

.podcast-about {
  color: rgba(229, 231, 235, 0.74);
  line-height: 1.7;
  max-width: 65ch;
}

.podcast-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.podcast-button,
.podcast-button--secondary,
.podcast-button--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease, background-color 300ms ease, color 300ms ease;
}

.podcast-button:hover,
.podcast-button--secondary:hover,
.podcast-button--ghost:hover {
  transform: translateY(-2px);
}

.podcast-button {
  background: var(--podcast-accent);
  color: white;
  box-shadow: 0 10px 26px rgba(255, 0, 0, 0.24);
}

.podcast-button--secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--podcast-text);
}

.podcast-button--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--podcast-text);
}

.podcast-action-row--mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.podcast-mini-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(229, 231, 235, 0.9);
  transition: transform 300ms ease, background-color 300ms ease, border-color 300ms ease;
}

.podcast-mini-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.podcast-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.podcast-social {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  transition: transform 300ms ease, border-color 300ms ease, background-color 300ms ease, color 300ms ease;
}

.podcast-social:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.podcast-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.podcast-stat {
  padding: 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.podcast-stat__label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(156, 163, 175, 0.9);
}

.podcast-stat__value {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-weight: 600;
}

.podcast-video-card,
.podcast-placeholder-card {
  padding: 1.6rem;
}

.podcast-video-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.podcast-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: rgba(110, 231, 183, 0.82);
}

.podcast-video-title {
  margin: 0.55rem 0 0;
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
  letter-spacing: -0.03em;
}

.podcast-video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  color: rgba(229, 231, 235, 0.75);
  font-size: 0.95rem;
}

.podcast-iframe-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.podcast-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.podcast-description {
  color: rgba(229, 231, 235, 0.74);
  line-height: 1.7;
  max-width: 70ch;
}

.podcast-video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.podcast-more-videos {
  margin-top: 1.35rem;
}

.podcast-video-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.podcast-video-tile {
  padding: 0.6rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.podcast-video-tile:focus-visible {
  outline: 2px solid rgba(110, 231, 183, 0.85);
  outline-offset: 2px;
}

.podcast-video-tile__embed {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.podcast-video-tile__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.podcast-recent-section {
  margin-top: 1.25rem;
}

.podcast-recent-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.podcast-recent-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  transition: transform 300ms ease, border-color 300ms ease, background-color 300ms ease;
}

.podcast-recent-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.podcast-recent-item__title {
  margin: 0;
  font-weight: 600;
}

.podcast-recent-item__meta {
  margin: 0.25rem 0 0;
  color: rgba(229, 231, 235, 0.65);
  font-size: 0.92rem;
}

.podcast-placeholder-card__empty {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(156, 163, 175, 0.95);
}

.podcast-note {
  margin: 0 0 1.5rem;
  color: rgba(229, 231, 235, 0.72);
}

.podcast-badge--verified {
  border-color: rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.08);
  color: #c7f9d0;
}

.podcast-badge--pending {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.podcast-sticky-spacer {
  height: 1px;
}

@media (max-width: 1100px) {
  .podcast-row {
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  }
}

@media (max-width: 900px) {
  .podcast-row {
    grid-template-columns: 1fr;
  }

  .podcast-profile-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .podcast-profile-card,
  .podcast-video-card,
  .podcast-placeholder-card {
    padding: 1.2rem;
  }

  .podcast-avatar {
    width: 112px;
    height: 112px;
    font-size: 1.7rem;
  }

  .podcast-stat-grid {
    grid-template-columns: 1fr;
  }

  .podcast-video-tile-grid {
    grid-template-columns: 1fr;
  }
}
