.profile-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 64px;
  align-items: center;
}

.profile-portrait {
  margin: 0;
  justify-self: end;
  width: min(100%, 360px);
  overflow: hidden;
  border: 1px solid #34505f;
  box-shadow: 0 24px 58px rgba(0, 0, 0, .28);
}

.profile-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
}

@media (max-width: 850px) {
  .profile-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .profile-portrait {
    justify-self: start;
    width: min(72vw, 340px);
  }
}
