/* Vollständige Artist-Fotos: kein Beschnitt, auch nicht auf dem Smartphone */
.artist-profile-intro {
  align-items: center;
}

.artist-portrait {
  min-height: 0 !important;
  height: auto;
  aspect-ratio: 2 / 3;
  align-self: center;
  margin: 1.25rem 0 1.25rem 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(211, 174, 105, .35);
  border-radius: 22px;
  background: #09070d;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .32);
}

.artist-portrait img {
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain;
  object-position: center;
}

.artist-details p {
  color: #b9b0c1;
}

@media (max-width: 900px) {
  .artist-profile-intro {
    grid-template-columns: minmax(170px, .55fr) minmax(0, 1.45fr);
  }

  .artist-portrait,
  .artist-portrait img {
    min-height: 0 !important;
    height: auto;
  }

  .artist-portrait img {
    height: 100%;
  }
}

@media (max-width: 620px) {
  .artist-profile-intro {
    display: grid;
    grid-template-columns: minmax(132px, 42%) minmax(0, 58%);
    align-items: start;
    padding: .85rem .85rem 1.2rem;
  }

  .artist-portrait {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 100%;
    margin: 0;
    aspect-ratio: 2 / 3;
    border-radius: 16px;
  }

  .artist-portrait img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .artist-copy {
    display: contents;
  }

  .artist-copy > .eyebrow {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: .35rem 0 .25rem;
    padding-left: .85rem;
  }

  .artist-copy > h2 {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    margin: 0;
    padding-left: .85rem;
  }

  .artist-copy > .artist-lead {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    margin: .65rem 0 0;
    padding-left: .85rem;
  }

  .artist-details {
    grid-column: 1 / -1;
    grid-row: 4;
    margin-top: 1rem;
  }

  .artist-details p {
    font-size: .88rem;
    line-height: 1.55;
  }

  .style-tags {
    grid-column: 1 / -1;
    grid-row: 5;
  }

  .artist-cta {
    grid-column: 1 / -1;
    grid-row: 6;
  }

  .artist-portrait span {
    left: .6rem;
    bottom: .55rem;
    font-size: .72rem;
  }
}

@media (max-width: 390px) {
  .artist-profile-intro {
    grid-template-columns: 122px minmax(0, 1fr);
    padding-inline: .7rem;
  }

  .artist-copy > .eyebrow,
  .artist-copy > h2,
  .artist-copy > .artist-lead {
    padding-left: .7rem;
  }
}
