.podcast-main {
  padding: 0;
  max-width: none;
  background: transparent;
}

body.podcast-layout {
  background: transparent !important;
}

body.podcast-layout .podcast-main,
body.dark-mode.podcast-layout .podcast-main,
html[data-bs-theme=dark] body.podcast-layout .podcast-main {
  background: transparent;
}

.podcast-page {
  --podcast-gold: #d4a853;
  --podcast-coral: #e07c5c;
  --podcast-text: #1a1625;
  --podcast-text-muted: rgba(26, 22, 37, 0.7);
  --podcast-card-bg: #ffffff;
  --podcast-card-border: #e5e7eb;
  --podcast-focus: #d4a853;
  position: relative;
  color: var(--podcast-text);
  background: transparent;
}

body.dark-mode .podcast-page,
html[data-bs-theme=dark] .podcast-page {
  --podcast-text: #ffffff;
  --podcast-text-muted: #9ca3af;
  --podcast-card-bg: #2a2440;
  --podcast-card-border: #3a3450;
}

.podcast-skip {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  z-index: 20;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  background: var(--podcast-gold);
  color: #1a1625;
  font-weight: 600;
}
.podcast-skip:focus {
  left: 1rem;
}

.podcast-hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #2d1f4e 0%, #3d2a5f 48%, #1a1625 100%);
  color: #fff;
}
@media (min-width: 576px) {
  .podcast-hero {
    padding: 4rem 1.5rem;
  }
}
.podcast-hero__glow {
  position: absolute;
  inset: 0 0 0 50%;
  background: linear-gradient(to left, rgba(224, 124, 92, 0.3), rgba(212, 168, 83, 0.2), transparent);
  pointer-events: none;
}
.podcast-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .podcast-hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
}
.podcast-hero__art {
  flex-shrink: 0;
}
.podcast-hero__art-img {
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 0.75rem;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
@media (min-width: 768px) {
  .podcast-hero__art-img {
    width: 11rem;
    height: 11rem;
  }
}
.podcast-hero__copy-wrap {
  min-width: 0;
}
.podcast-hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.podcast-hero__copy {
  margin: 0 0 1.25rem;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.podcast-hero__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.podcast-hero__platform {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.podcast-hero__platform:hover, .podcast-hero__platform:focus-visible {
  background: rgba(212, 168, 83, 0.28);
  border-color: var(--podcast-gold);
  color: #fff;
  outline: none;
}

.podcast-content {
  padding: 2.5rem 1rem 4rem;
}
@media (min-width: 576px) {
  .podcast-content {
    padding: 3rem 1.5rem 5rem;
  }
}
.podcast-content__inner {
  max-width: 80rem;
  margin: 0 auto;
}

.podcast-section__header {
  margin-bottom: 1.5rem;
}
.podcast-section__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--podcast-text);
}
.podcast-section__subtitle {
  margin: 0;
  color: var(--podcast-text-muted);
  font-size: 0.95rem;
}

.podcast-episodes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.podcast-episode {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: 0.75rem;
  background: var(--podcast-card-bg);
  border: 1px solid var(--podcast-card-border);
}
@media (min-width: 768px) {
  .podcast-episode {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.podcast-episode__body {
  min-width: 0;
  flex: 1;
}
.podcast-episode__title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 650;
  line-height: 1.35;
}
.podcast-episode__title a {
  color: var(--podcast-text);
  text-decoration: none;
}
.podcast-episode__title a:hover, .podcast-episode__title a:focus-visible {
  color: var(--podcast-coral);
  outline: none;
}
.podcast-episode__meta {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: var(--podcast-text-muted);
}
.podcast-episode__desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--podcast-text-muted);
}
.podcast-episode__player {
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .podcast-episode__player {
    width: 16rem;
  }
}
.podcast-episode__player audio {
  width: 100%;
  height: 2.25rem;
}

.podcast-empty {
  padding: 1.75rem;
  border-radius: 0.75rem;
  background: var(--podcast-card-bg);
  border: 1px solid var(--podcast-card-border);
}
.podcast-empty__copy {
  margin: 0 0 1rem;
  color: var(--podcast-text-muted);
}
.podcast-empty__links {
  margin: 0;
  padding-left: 1.25rem;
}
.podcast-empty__links a {
  color: var(--podcast-coral);
  font-weight: 600;
}

/*# sourceMappingURL=/assets/podcast-3f7ce3a8.css.map */
