.artist-portrait {
  position: relative;
  align-self: stretch;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  background: #111;
  box-shadow: 18px 18px 0 var(--red);
}

.artist-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, .7));
  pointer-events: none;
}

.artist-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.artist-portrait figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.artist-portrait figcaption strong {
  font: 4.5rem/.75 var(--display);
  color: var(--red);
}

.artist-portrait figcaption span {
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .16em;
}

@media (max-width: 1100px) {
  .about { grid-template-columns: 42% 58%; }
}

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .artist-portrait { min-height: 700px; max-height: 850px; }
}

@media (max-width: 600px) {
  .artist-portrait { min-height: 440px; box-shadow: 10px 10px 0 var(--red); }
}
