.team-card {
  position: relative;
  transition: transform 200ms ease-out;
}
.team-card:hover {
  transform: scale(1.01);
}
.team-card .full-card-link {
  position: absolute;
  top: 0;
  height: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.team-card .blob-link {
  position: relative;
  display: block;
  width: fit-content;
}
.team-card .card-header {
  pointer-events: none;
  height: min(90vw, 30rem);
}
.team-card .card-header img {
  height: 100%;
  object-fit: cover;
}
