.team-profiles {
  width: var(--page);
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.team-profile {
  border-top: 1px solid var(--ink);
}
.team-profile__portrait {
  display: block;
  overflow: hidden;
  background: var(--mist);
}
.team-profile__portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  transition: transform 700ms var(--ease);
}
.team-profile__portrait:hover img,
.team-profile__portrait:focus-visible img {
  transform: scale(1.018);
}
.team-profile__copy {
  padding: 28px 0 0;
}
.team-profile__copy h2 {
  margin-bottom: 10px;
  font-size: 30px;
}
.team-profile__role {
  max-width: 540px;
  color: var(--quiet);
  font-size: 17px;
}
.team-profile__credentials {
  margin: 26px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.team-profile__credentials li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #3c3c39;
  font-size: 14px;
}

@media (max-width: 680px) {
  .team-profiles {
    grid-template-columns: 1fr;
    gap: 72px;
    margin-bottom: 72px;
  }
}
