/* Preserve the original photo; crop surplus wall above both subjects. */
.hero .portrait.portrait--square {
  position: relative;
  display: block;
  width: 100%;
  max-width: 560px;
  min-width: 0;
  min-height: 0;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  transform: none;
}
.hero .portrait--square .portrait__photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
  border: 0;
  border-radius: 0;
  filter: none;
  transform: none;
}
