.founder-portrait {
  margin: clamp(55px, 7vw, 100px) 0 0;
  width: min(100%, 620px);
  position: relative;
}

.founder-portrait::before {
  content: "";
  position: absolute;
  left: -18px;
  top: -18px;
  width: 72px;
  height: 72px;
  border-left: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  z-index: 1;
}

.founder-portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(.78) contrast(1.03);
}

.founder-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.founder-portrait figcaption strong { font-weight: 600; }
.founder-portrait figcaption span { color: var(--muted); text-align: right; }

@media (max-width: 850px) {
  .founder-portrait { margin-top: 55px; }
  .founder-portrait::before { left: -10px; top: -10px; width: 48px; height: 48px; }
}
