/* TEAM SECTION */

.teamGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:28px;
}

.teamGrid--archive{
  margin-top:24px;
}

/* карточка */
.teamCard{
  text-align:center;
}

/* фото */
.teamCard__photo{
  width:100%;
  aspect-ratio: 3 / 4;
  border-radius:14px;
  overflow:hidden;
  background:#eee;
}

.teamCard__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* имя */
.teamCard__name{
  margin-top:14px;
  font-weight:800;
  text-transform:uppercase;
  font-size:14px;
}

/* должность */
.teamCard__role{
  font-size:13px;
  color:#888;
  margin-top:4px;
  line-height:1.2;
}

.teamCard__department{
  font-size:12px;
  color:#5b6371;
  margin-top:6px;
  line-height:1.25;
}



@media (max-width: 1200px){
  .teamGrid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px){
  .teamGrid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px){
  .teamGrid{
    grid-template-columns: 1fr;
  }
}
