.bio-left {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-width: 0;
}

.bio-left > .bio-lead {
  margin-bottom: 0;
}

.bio-portrait {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: min(100%, 72rem);
  margin: clamp(3.5rem, 5vw, 6.5rem) 0 0;
  overflow: hidden;
  background: #fff;
}

.bio-portrait img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  transform: scale(1.025);
  transform-origin: 50% 50%;
}

@media (max-width: 760px) {
  .bio-portrait {
    width: 100%;
    margin-top: 2.5rem;
    aspect-ratio: 1.8 / 1;
  }
}
