/* Team grid: three leadership cards (about page) */
.grid-team.grid-team--three {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-team.grid-team--three .team-image-wrap {
  aspect-ratio: 1;
}

.grid-team.grid-team--three .team-image {
  width: 100%;
  height: 100%;
  min-height: 0;
}

@media screen and (max-width: 991px) {
  .grid-team.grid-team--three {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  .grid-team.grid-team--three {
    grid-template-columns: 1fr;
  }
}
