/* ── Artist page ── */
.artist-hero {
  padding: 48px 98px 0;
  position: relative;
  box-sizing: border-box;
}
.artist-hero img {
  width: auto;
  max-width: 100%;
  max-height: 600px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 32px;
}
/* Portrait images: capped width, aligned with text */
.artist-hero.artist-hero-portrait img {
  max-width: 420px;
  max-height: 640px;
}

.artist-bio {
  padding: 0 98px 48px;
}

.artist-bio.no-hero {
  padding-top: 48px;
}

.artist-bio p {
  font-family: 'Pitch Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 2.5vw, 18px);
  color: #FBFBD9;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 720px;
}

/* ── Bandcamp embed ── */
.artist-bandcamp {
  margin-top: 8px;
  padding: 0 98px 48px;
  max-width: 448px;
}

.artist-bandcamp.artist-soundcloud {
  max-width: 800px;
}
.artist-bandcamp.artist-soundcloud iframe {
  height: 166px;
}

.artist-video {
  padding: 0 98px 48px;
  max-width: 800px;
  box-sizing: content-box;
}
.artist-video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
}
.artist-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.artist-bandcamp iframe {
  width: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .artist-hero { padding: 32px 24px 0; }
  .artist-hero img { max-height: 420px; height: auto; }
  .artist-bio { padding: 0 24px 40px; }
  .artist-bio.no-hero { padding-top: 32px; }
  .artist-bandcamp { padding: 0 24px 40px; max-width: 100%; }
  .artist-video { padding: 0 24px 40px; max-width: 100%; }
}

@media (min-width: 769px) {
  .artist-video-frame { min-width: 500px; }
}