.portrait {
  position: relative;
  margin: 45px 0 0;
  width: min(100%, 440px);
  height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  border-left: 3px solid var(--accent);
  pointer-events: none;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.portrait figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 6px 9px;
  background: #081019db;
  color: #dbe2e8;
  font: 12px/1.4 'Courier New', monospace;
  letter-spacing: .04em;
}
.about-copy { align-self: center; }
@media (max-width: 700px) {
  .portrait { height: 380px; margin-top: 30px; }
}
