.hero-side {
  position: relative;
  z-index: 1;
  align-self: center;
}

.portrait-frame {
  margin: 0 auto 22px;
  max-width: 340px;
  position: relative;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: -12px;
  background: var(--red);
  border-radius: 50%;
  transform: translate(16px, 10px);
  z-index: -1;
}

.portrait-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  clip-path: circle(49.2% at 50% 50%);
  filter: contrast(1.03) saturate(.96);
}

.portrait-frame figcaption {
  position: absolute;
  left: -22px;
  right: 24px;
  bottom: -6px;
  background: #07090d;
  border-left: 5px solid var(--red);
  padding: 11px 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .45);
}

.portrait-frame figcaption strong {
  font-family: "Barlow Condensed";
  font-size: 1.3rem;
  letter-spacing: .04em;
}

.portrait-frame figcaption span {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .08em;
}

.hero-side .hero-panel {
  background: rgba(12, 16, 23, .94);
}

.hero-side .hero-panel a {
  padding: 15px 18px;
  font-size: 1.08rem;
}

@media (max-width: 900px) {
  .hero-side {
    max-width: 600px;
    width: 100%;
    justify-self: center;
  }
  .portrait-frame { max-width: 300px; }
  .hero-side .hero-panel { margin: auto; max-width: 600px; }
}

@media (max-width: 560px) {
  .portrait-frame { max-width: 250px; }
  .portrait-frame figcaption { left: -8px; right: 12px; }
}
