: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 {
  background-image:
    linear-gradient(180deg, rgba(4, 8, 16, 0.84) 0%, rgba(7, 16, 31, 0.76) 42%, rgba(7, 16, 31, 0.9) 100%),
    url('../images/Podcast%20background.png');
  background-image:
    linear-gradient(180deg, rgba(4, 8, 16, 0.84) 0%, rgba(7, 16, 31, 0.76) 42%, rgba(7, 16, 31, 0.9) 100%),
    image-set(
      url('../images/optimized/podcast-background-mobile.webp') type('image/webp'),
      url('../images/Podcast%20background.png') type('image/png')
    );
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--podcast-text);
}

@media (min-width: 900px) {
  body.page-podcast-hub {
    background-image:
      linear-gradient(180deg, rgba(4, 8, 16, 0.84) 0%, rgba(7, 16, 31, 0.76) 42%, rgba(7, 16, 31, 0.9) 100%),
      image-set(
        url('../images/optimized/podcast-background-desktop.webp') type('image/webp'),
        url('../images/Podcast%20background.png') type('image/png')
      );
  }
}

@media (max-width: 768px) {
  body.page-podcast-hub {
    background-attachment: scroll;
  }
}

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--banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: end;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.podcast-page-intro--banner .podcast-page-shell {
  position: relative;
  z-index: 1;
}

.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-creator-directory {
  padding: 0 0 2rem;
}

.podcast-creator-directory__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.podcast-creator-directory__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(26, 31, 40, 0.92), rgba(18, 22, 30, 0.92));
  color: var(--podcast-text);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.podcast-creator-directory__item:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 231, 183, 0.38);
  background: linear-gradient(180deg, rgba(31, 38, 48, 0.98), rgba(21, 26, 35, 0.98));
}

.podcast-creator-directory__avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 999px;
  background-color: #111827;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.podcast-creator-directory__item strong,
.podcast-creator-directory__item small {
  display: block;
}

.podcast-creator-directory__item strong {
  font-size: 1rem;
}

.podcast-creator-directory__item small {
  margin-top: 0.2rem;
  overflow: hidden;
  color: rgba(229, 231, 235, 0.68);
  font-size: 0.84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.podcast-creator-directory__arrow {
  color: rgba(110, 231, 183, 0.9);
  font-size: 1.1rem;
  transition: transform 220ms ease;
}

.podcast-creator-directory__item:hover .podcast-creator-directory__arrow {
  transform: translateY(2px);
}

.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;
  scroll-margin-top: 1.5rem;
}

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

.community-section-divider {
  position: relative;
  width: min(1280px, calc(100% - 2rem));
  height: 3px;
  margin: 0 auto 3.25rem;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92) 18%, #fff 38%, #53c8ff 58%, rgba(87, 179, 255, 0.72) 78%, transparent);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.9), 0 0 18px rgba(50, 176, 255, 0.82), 0 0 42px rgba(39, 119, 255, 0.42);
}

.community-section-divider::after {
  position: absolute;
  top: -14px;
  left: -18%;
  width: 14%;
  height: 31px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.98), rgba(177, 236, 255, 0.9), transparent);
  filter: blur(2px);
  transform: skewX(-24deg);
  animation: community-divider-glint 3.4s ease-in-out infinite;
}

@keyframes community-divider-glint {
  0%, 18% {
    transform: translateX(0) skewX(-24deg);
  }
  64%, 100% {
    transform: translateX(900%) skewX(-24deg);
  }
}

.community-poll-cta {
  margin: 0 auto 4rem;
}

.community-artwork {
  margin: 0 auto 4.5rem;
  text-align: center;
}

.community-artwork > h2 {
  margin: 0.35rem 0 1.25rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.045em;
}

.community-artwork__carousel {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(0.85rem, 2vw, 1.4rem);
  border: 1px solid rgba(158, 224, 255, 0.42);
  border-radius: 12px;
  background: radial-gradient(circle at 50% 0%, rgba(85, 184, 255, 0.18), transparent 48%), rgba(5, 12, 24, 0.82);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42), 0 0 48px rgba(54, 163, 255, 0.14);
  outline: none;
}

.community-artwork__carousel:focus-visible {
  box-shadow: 0 0 0 3px rgba(145, 225, 255, 0.74), 0 28px 70px rgba(0, 0, 0, 0.42);
}

.community-artwork__viewport {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(25rem, 61vw, 48rem);
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.community-artwork__viewport:active { cursor: grabbing; }

.community-artwork__slide {
  position: absolute;
  top: 0.8rem;
  left: 50%;
  width: min(68%, 42rem);
  height: clamp(24rem, 59vw, 46rem);
  object-fit: contain;
  opacity: 0;
  transform: translateX(-50%) scale(0.74);
  filter: saturate(0.55) brightness(0.7);
  transition: transform 0.48s cubic-bezier(0.22, 0.75, 0.22, 1), opacity 0.4s ease, filter 0.4s ease;
  pointer-events: none;
}

.community-artwork__slide[data-community-artwork-position='previous'] {
  z-index: 1;
  opacity: 0.36;
  transform: translateX(-83%) scale(0.78) rotate(-2deg);
  pointer-events: auto;
  cursor: w-resize;
}

.community-artwork__slide[data-community-artwork-position='next'] {
  z-index: 1;
  opacity: 0.36;
  transform: translateX(-17%) scale(0.78) rotate(2deg);
  pointer-events: auto;
  cursor: e-resize;
}

.community-artwork__slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateX(-50%) scale(1);
  filter: none;
  pointer-events: auto;
}

.community-artwork__viewport img {
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.44));
}

.community-artwork__fullscreen {
  position: absolute;
  z-index: 3;
  top: clamp(1.25rem, 3vw, 2rem);
  right: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(158, 224, 255, 0.56);
  border-radius: 8px;
  background: rgba(5, 12, 24, 0.78);
  color: #e6f8ff;
  cursor: pointer;
  font: inherit;
  font-size: 1.25rem;
  line-height: 1;
}

.community-artwork__fullscreen:hover,
.community-artwork__fullscreen:focus-visible {
  border-color: #fff;
  background: rgba(37, 134, 191, 0.92);
  color: #fff;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.community-artwork__share {
  position: absolute;
  z-index: 3;
  top: clamp(1.25rem, 3vw, 2rem);
  right: calc(clamp(1.25rem, 3vw, 2rem) + 3rem);
}

.community-artwork__share .image-share-control__status {
  right: 0;
  text-align: right;
}

.community-artwork__carousel:fullscreen,
.community-artwork__carousel:-webkit-full-screen {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: clamp(1rem, 3vw, 2.5rem);
  border: 0;
  border-radius: 0;
  background: #05080f;
}

.community-artwork__carousel:fullscreen .community-artwork__viewport,
.community-artwork__carousel:-webkit-full-screen .community-artwork__viewport {
  min-height: calc(100vh - 7rem);
}

.community-artwork__carousel:fullscreen .community-artwork__viewport img,
.community-artwork__carousel:-webkit-full-screen .community-artwork__viewport img {
  width: 100%;
  height: calc(100vh - 8rem);
  max-height: none;
}

.community-artwork__status {
  margin: 0.75rem 0 0;
  color: rgba(229, 241, 249, 0.88);
  font-size: 0.9rem;
}

.community-artwork__credit {
  margin: 0.35rem 0 0;
  color: rgba(190, 213, 228, 0.7);
  font-size: 0.76rem;
}

/* Briefing links use the same card treatment at a compact, button-like scale. */
.timeline-briefing-cta .community-poll-cta__card {
  min-height: 120px;
  width: min(100%, 304px);
  padding: 1.75rem 1rem;
  border-radius: 14px;
}

.community-poll-cta__card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 240px;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 3.5rem 2rem;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(158, 224, 255, 0.62);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 25%),
    radial-gradient(circle at 85% 82%, rgba(36, 139, 255, 0.38), transparent 38%),
    linear-gradient(135deg, rgba(20, 55, 91, 0.96), rgba(7, 17, 37, 0.98) 58%, rgba(14, 50, 90, 0.96));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 22px 58px rgba(0, 17, 50, 0.48), 0 0 40px rgba(50, 172, 255, 0.2);
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.community-poll-cta__card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(108deg, transparent 28%, rgba(255, 255, 255, 0.28) 46%, rgba(137, 221, 255, 0.18) 51%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.community-poll-cta__card:hover,
.community-poll-cta__card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 28px 70px rgba(0, 17, 50, 0.58), 0 0 55px rgba(50, 172, 255, 0.42);
}

.community-poll-cta__card:hover::before,
.community-poll-cta__card:focus-visible::before {
  transform: translateX(120%);
}

.community-poll-cta__eyebrow,
.community-poll-cta__action {
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.community-poll-cta__eyebrow {
  color: #a8e6ff;
  font-size: 0.75rem;
  font-weight: 700;
}

.community-poll-cta__card h2 {
  margin: 0.55rem 0 0.8rem;
  color: #fff;
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.45), 0 0 30px rgba(83, 200, 255, 0.44);
}

.timeline-briefing-cta .community-poll-cta__card h2 {
  margin: 0;
  font-size: clamp(1rem, 3vw, 2.1rem);
}

.community-poll-cta__action {
  color: rgba(229, 247, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 600;
}

.community-poll-cta__action span {
  display: inline-block;
  margin-left: 0.45rem;
  font-size: 1.15rem;
  letter-spacing: 0;
  transition: transform 220ms ease;
}

.community-poll-cta__card:hover .community-poll-cta__action span,
.community-poll-cta__card:focus-visible .community-poll-cta__action span {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .community-section-divider::after {
    animation: none;
  }

  .community-poll-cta__card,
  .community-poll-cta__card::before,
  .community-poll-cta__action span {
    transition: none;
  }
}

.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);
}

.community-game-links {
  margin-top: 1.5rem;
  margin-bottom: 4rem;
}

.community-game-links__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.community-game-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 26px rgba(3, 7, 18, 0.3);
  transition: transform 300ms ease, box-shadow 300ms ease, filter 300ms ease;
}

.community-game-link:hover,
.community-game-link:focus-visible {
  color: #fff;
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(3, 7, 18, 0.42);
}

.community-game-link--tales {
  background: linear-gradient(135deg, #7c3aed, #c026d3);
}

.community-game-link--scroller {
  background: linear-gradient(135deg, #0369a1, #06b6d4);
}

.community-game-link--quiz {
  background: linear-gradient(135deg, #b45309, #f59e0b);
}

.community-game-link--mode {
  background: linear-gradient(135deg, #047857, #22c55e);
}

.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-shorts {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.podcast-shorts__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.podcast-shorts__header h3 {
  margin: 0.45rem 0 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.podcast-shorts__header > a {
  color: rgba(110, 231, 183, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.podcast-short-tile {
  display: grid;
  grid-template-columns: minmax(150px, 180px) minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin-top: 0.9rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.podcast-short-tile__embed {
  aspect-ratio: 9 / 16;
  max-height: 260px;
  overflow: hidden;
  border-radius: 11px;
  background: #000;
}

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

.podcast-short-tile p,
.podcast-shorts__empty-copy {
  margin: 0;
  color: rgba(229, 231, 235, 0.76);
  line-height: 1.55;
}

.podcast-shorts__empty-copy {
  max-width: 58ch;
  margin-top: 0.9rem;
}

.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-video-tile > p {
  margin: 0.65rem 0 0.15rem;
  color: rgba(229, 243, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
}

.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;
}

.interview-analysis {
  display: grid;
  gap: 1.1rem;
  padding: 1.4rem;
  border: 1px solid rgba(103, 202, 255, 0.2);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(38, 83, 116, 0.18), rgba(11, 15, 20, 0.35));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.interview-analysis__heading h3,
.interview-analysis__timestamps h4,
.interview-analysis__drawer-body h4 {
  margin: 0;
  color: #f8fbff;
}

.interview-analysis__drawer-body p {
  margin: 0.55rem 0 0;
  color: rgba(229, 231, 235, 0.8);
  line-height: 1.65;
}

.interview-analysis__snapshot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.interview-analysis__snapshot--summary {
  grid-template-columns: minmax(0, 1fr);
}

.interview-analysis__summary {
  max-width: 72ch;
}

.interview-analysis__summary > p:last-child {
  margin: 0.55rem 0 0;
  color: #eef8ff;
  line-height: 1.6;
}

.interview-analysis__snapshot article,
.interview-analysis__timestamps,
.interview-analysis__drawer {
  border: 1px solid rgba(103, 202, 255, 0.22);
  border-radius: 12px;
  background: rgba(12, 31, 48, 0.62);
}

.interview-analysis__snapshot article {
  padding: 1rem;
}

.interview-analysis__label {
  margin: 0;
  color: #91dbff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.interview-analysis__snapshot article > p:last-of-type,
.interview-analysis blockquote {
  margin: 0.55rem 0 0;
  color: #eef8ff;
  line-height: 1.55;
}

.interview-analysis blockquote {
  padding-left: 0.85rem;
  border-left: 3px solid #72d0ff;
  font-family: Georgia, serif;
}

.interview-seek-button {
  appearance: none;
  cursor: pointer;
  border: 1px solid rgba(126, 216, 255, 0.42);
  background: linear-gradient(135deg, rgba(70, 180, 235, 0.25), rgba(38, 90, 156, 0.18));
  color: #e8f7ff;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 7px 20px rgba(0, 0, 0, 0.18);
  font: inherit;
  font-weight: 650;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.interview-seek-button:hover,
.interview-seek-button:focus-visible {
  border-color: #b5edff;
  background: linear-gradient(135deg, rgba(80, 202, 255, 0.38), rgba(54, 110, 190, 0.3));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.18), 0 10px 24px rgba(20, 149, 211, 0.15);
  transform: translateY(-1px);
}

.interview-seek-button:focus-visible,
.interview-analysis__drawer summary:focus-visible {
  outline: 3px solid rgba(157, 228, 255, 0.62);
  outline-offset: 3px;
}

.interview-analysis__snapshot .interview-seek-button {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.52rem 0.78rem;
  border-radius: 9px;
  font-size: 0.9rem;
  text-decoration: none;
}

.interview-analysis__timestamps {
  padding: 1rem;
}

.interview-analysis__drawer-body > .interview-analysis__timestamps {
  margin: 0;
}

.interview-analysis__timestamps ol {
  display: grid;
  gap: 0.5rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.interview-analysis__timestamps .interview-seek-button {
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr);
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
}

.interview-analysis__timestamps .interview-seek-button {
  width: 100%;
  grid-template-columns: 3.6rem minmax(0, 1fr);
  gap: 0.65rem;
  padding: 0.72rem 0.8rem;
  border-radius: 9px;
}

.interview-analysis__timestamps time {
  color: #91dbff;
  font-weight: 700;
}

.interview-analysis__drawer {
  overflow: hidden;
}

.interview-analysis__drawer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  cursor: pointer;
  color: #f8fbff;
  list-style: none;
  background: linear-gradient(120deg, rgba(43, 117, 152, 0.42), rgba(25, 57, 82, 0.7));
  transition: background 180ms ease;
}

.interview-analysis__drawer summary::-webkit-details-marker {
  display: none;
}

.interview-analysis__drawer summary::after {
  flex: 0 0 auto;
  color: #8ee8ff;
  content: '+';
  font-size: 1.3rem;
  font-weight: 700;
}

.interview-analysis__drawer[open] summary {
  background: linear-gradient(120deg, rgba(49, 132, 170, 0.48), rgba(26, 67, 96, 0.76));
}

.interview-analysis__drawer[open] summary::after {
  content: '−';
}

.interview-analysis__drawer summary small {
  margin-left: auto;
  color: rgba(229, 231, 235, 0.62);
  text-align: right;
}

.interview-analysis__drawer-body {
  padding: 0 1rem 1rem;
}

.interview-analysis__drawer-body h4:not(:first-child) {
  margin-top: 1.25rem;
}

.interview-analysis__record-list,
.interview-analysis__quote-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.interview-analysis__record-list p {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
  margin: 0;
}

.interview-analysis__record-list .interview-seek-button,
.interview-analysis__quote-list .interview-seek-button {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.85rem;
  padding: 0.35rem 0.58rem;
  border-radius: 7px;
  color: #dff7ff;
  font-size: 0.78rem;
  white-space: nowrap;
}

.interview-analysis__quote-list blockquote {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(126, 216, 255, 0.17);
  border-left: 3px solid #72d0ff;
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, 0.025);
}

.interview-analysis__quote-list blockquote > p {
  margin: 0;
}

.interview-analysis__quote-context {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
  color: rgba(229, 231, 235, 0.65);
  font: 0.82rem/1.45 "Segoe UI", sans-serif;
}

.interview-analysis__quote-note {
  flex: 1 1 16rem;
  margin: 0;
  color: #9ee8ff;
}

.interview-analysis__quote-note strong {
  color: #d6f6ff;
}

.interview-transcript__notice {
  font-size: 0.9rem;
}

.interview-transcript {
  max-height: 38rem;
  margin-top: 1rem;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
}

.interview-transcript > p {
  padding: 1rem;
}

.interview-transcript pre {
  margin: 0;
  padding: 1rem;
  color: rgba(238, 248, 255, 0.86);
  font: 0.86rem/1.6 ui-monospace, SFMono-Regular, Menlo, monospace;
  white-space: pre-wrap;
}

.interview-analysis__editorial-note {
  padding: 0.8rem 0.95rem;
  border-left: 3px solid rgba(132, 220, 255, 0.72);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, 0.035);
}

.interview-analysis__editorial-note p {
  margin: 0;
  color: rgba(229, 231, 235, 0.7);
  font-size: 0.84rem;
  line-height: 1.55;
}

.interview-player-status {
  min-height: 1.2rem;
  margin: -0.15rem 0 0;
  color: rgba(157, 228, 255, 0.88);
  font-size: 0.82rem;
}

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

@media (max-width: 900px) {
  .podcast-creator-directory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 640px) {
  .podcast-creator-directory__grid {
    grid-template-columns: 1fr;
  }

  .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;
  }

  .interview-analysis__snapshot {
    grid-template-columns: 1fr;
  }

  .interview-analysis {
    padding: 1rem;
  }

  .interview-analysis__drawer summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .interview-analysis__drawer summary small {
    text-align: left;
  }

  .interview-analysis__record-list p {
    grid-template-columns: 1fr;
  }

  .podcast-shorts__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .podcast-short-tile {
    grid-template-columns: minmax(118px, 145px) minmax(0, 1fr);
    gap: 0.8rem;
  }
}
