.podcast-room {
  padding: 1rem 0 2.5rem;
}

.podcast-hero {
  margin-bottom: 1rem;
  padding: clamp(1.2rem, 3vw, 1.75rem);
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--theme-primary-soft, #e9f0ff) 75%, #fff) 0%,
    var(--theme-surface, #fff) 70%
  );
  border: 1px solid color-mix(in srgb, var(--theme-primary) 22%, var(--theme-border));
}

.podcast-hero__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--theme-primary);
}

.podcast-badge {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--theme-primary);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.podcast-hero h1 {
  margin: 0 0 0.55rem;
  line-height: 1.12;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
}

.podcast-hero__lead {
  margin: 0 0 0.65rem;
  max-width: 68ch;
  font-size: 1.08rem;
  line-height: 1.55;
}

.podcast-hero__note {
  margin: 0;
  color: var(--theme-muted);
  font-weight: 600;
  line-height: 1.5;
}

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

.podcast-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  color: var(--theme-primary);
}

.podcast-card p {
  margin: 0;
  line-height: 1.5;
  color: var(--theme-text);
}

.podcast-soon h2 {
  margin: 0 0 0.55rem;
}

.podcast-soon p {
  margin: 0 0 0.65rem;
  line-height: 1.55;
}

.podcast-soon__list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  line-height: 1.55;
}

.podcast-soon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.podcast-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.45rem 1rem;
  font-weight: 700;
}

.podcast-btn--ghost {
  background: color-mix(in srgb, var(--theme-surface-soft) 88%, var(--theme-surface));
}

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