.pc-team-story__portrait.pc-team-photos { position: relative; display: grid; grid-template: minmax(0, 1fr) / minmax(0, 1fr); place-items: center; }
.pc-team-photos > .pc-team-photos__image { grid-area: 1 / 1; min-height: 0; width: 100%; height: 100%; max-height: none; object-fit: cover; object-position: center; opacity: 0; transition: opacity .45s ease; }
.pc-team-photos > .pc-team-photos__image.is-current { opacity: 1; }
@media (max-width: 767px) {
  .pc-team-photos > .pc-team-photos__image { max-height: 220px; }
}
@media (prefers-reduced-motion: reduce) {
  .pc-team-photos > .pc-team-photos__image { transition: none; }
}
