/* Use the complete source portrait; frame it independently from artwork media. */
.hero__portrait {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  transform: none;
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 65%;
}

.reel-media.artist-portrait {
  width: 100%;
  max-width: 560px;
  max-height: none;
  aspect-ratio: 1 / 1;
}

.artist-portrait img { object-position: 72% 70%; }

@media (max-width: 900px) {
  .hero__portrait {
    max-width: 560px;
    aspect-ratio: 5 / 4;
    justify-self: center;
  }
  .hero__portrait img { object-position: 65% 72%; }
  .reel-media.artist-portrait {
    margin-inline: auto;
    aspect-ratio: 4 / 3;
  }
}
