/* Match team photos to the hero portrait treatment: natural color,
   just a touch of contrast/saturation - no grayscale/luminosity and no
   heavy color-tint overlay. */
.member-photo img{
  mix-blend-mode:normal;
  filter:contrast(1.1) saturate(.9);
  opacity:1;
}

.team-spotlight img{
  mix-blend-mode:normal !important;
  filter:contrast(1.1) saturate(.9) !important;
  opacity:1 !important;
  position:absolute;
  z-index:1;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top;
}

.community{
  grid-template-columns:450px minmax(0,560px);
  justify-content:center;
  padding-bottom:0;
  gap:56px;
}

.team-spotlight::before{
  display:none;
}

.team-spotlight{
  background:none;
  width:450px;
  height:450px !important;
  max-width:450px;
  position:relative;
  z-index:5;
  align-self:end;
}

.portrait-tag{
  top:16px;
  bottom:auto;
}

@media(max-width:680px){
  .community{
    grid-template-columns:1fr;
    padding-bottom:0;
  }
  .team-spotlight{
    aspect-ratio:1/1;
    height:auto !important;
    width:100%;
    max-width:340px;
    margin:0 auto;
  }
  .portrait-tag{
    top:12px;
    bottom:auto;
  }
}
