.team-fade-members {
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 1.5/1;
  max-width: 800px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.team-fade-members > .headshot {
  width: 100%;
  aspect-ratio: 1/1;
  background-image: var(--img);
  background-color: rgb(230, 230, 230);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  opacity: 1;
  transition: opacity 0.5s;
}
.team-fade-members > .headshot.hidden {
  opacity: 0;
}
@media screen and (max-width: 1440px) {
  .team-fade-members {
    max-width: 600px;
  }
}
@media screen and (max-width: 1290px) {
  .team-fade-members {
    max-width: 400px;
  }
}
@media screen and (max-width: 1090px) {
  .team-fade-members {
    position: static;
    max-width: 100%;
    padding: 15px;
  }
}
