/*
 * White-Label – Sticky Künstlerfoto
 *
 * Das Künstlerfoto beginnt am Desktop knapp unterhalb der Navigation
 * und bleibt beim Scrollen innerhalb des Profil-Kopfbereichs sichtbar.
 */

@media (min-width: 901px) {
  .artist-profile-hero {
    min-height: 100svh;
    overflow: visible;
    align-items: flex-start;
    padding-top: calc(var(--header, 92px) + 22px);
  }

  .artist-profile-grid {
    align-items: start;
  }

  .artist-profile-image {
    position: sticky;
    top: calc(var(--header, 92px) + 18px);
    align-self: start;
    z-index: 5;
  }

  .artist-profile-image img {
    display: block;
    width: 100%;
    max-height: calc(100svh - var(--header, 92px) - 36px);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
  }
}

/* Auf Tablet und Smartphone bleibt das Bild normal im Seitenfluss. */
@media (max-width: 900px) {
  .artist-profile-hero {
    overflow: hidden;
  }

  .artist-profile-image {
    position: relative;
    top: auto;
  }

  .artist-profile-image img {
    max-height: none;
  }
}
