.podcast-band {
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
  color: #fff;
}

.podcast-band h2,
.podcast-band p {
  color: #fff;
  position: relative;
  z-index: 1;
}

.podcast-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  position: relative;
  z-index: 2;
}

.podcast-content {
  flex: 1;
}

.podcast-host {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  margin-right: var(--space-12);
}

.host-img-wrapper {
  width: clamp(220px, 28vw, 320px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.host-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--text-sm);
  color: #fff;
}

.podcast-quote {
  position: absolute;
  inset: auto 4% 8% auto;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.88;
  color: rgba(255,255,255,0.06);
  max-width: 8ch;
  text-align: right;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .podcast-layout {
    flex-direction: column;
    text-align: center;
    gap: var(--space-10);
  }

  .podcast-host {
    margin-right: 0;
  }

  .podcast-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .podcast-content p {
    margin-inline: auto;
  }

  .podcast-quote {
    display: none;
  }
}
