.team-section{
  margin:40px 0 104px;
}
@media (max-width:1149px){
  .team-section{ margin:50px 0 60px; }
}

.team-section__container{
  max-width:1440px;
  margin-left:auto;
  margin-right:auto;
  padding-left:40px;
  padding-right:40px;
}
@media (max-width:1149px){
  .team-section__container{ padding-left:20px; padding-right:20px; }
}
@media (max-width:767px){
  .team-section__container{ padding-left:16px; padding-right:16px; }
}

.team-section__header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:50px;
  margin-bottom:70px;
}
@media (max-width:1149px){
  .team-section__header{
    flex-direction:column;
    align-items:flex-start;
    gap:30px;
    margin-bottom:50px;
  }
}
@media (max-width:767px){
  .team-section__header{ margin-bottom:40px; }
}

.team-section__title{
  font-family:"Liberation Sans", sans-serif;
  font-size:74px;
  line-height:82px;
  font-weight:400;
  text-transform:uppercase;
  width:660px;
  max-width:100%;
}
@media (max-width:767px){
  .team-section__title{ font-size:40px; line-height:46px; }
}
@media (min-width:768px) and (max-width:1149px){
  .team-section__title{ font-size:58px; line-height:66px; }
}

.team-section__subtitle{
  font-family:Inter,sans-serif;
  font-size:20px;
  line-height:28px;
  font-weight:400;
  color:#4d4d4d;
  width:650px;
  max-width:100%;
}
@media (max-width:767px){
  .team-section__subtitle{ font-size:16px; line-height:24px; }
}

.team-section__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}
@media (max-width:1149px){
  .team-section__grid{ gap:18px; }
}
@media (max-width:767px){
  .team-section__grid{ gap:6.5px; }
}

.team-section__card{
  margin:0;
  text-align:center;
}

.team-section__photo{
  width:100%;
  aspect-ratio:1/1;
  border-radius:50%;
  overflow:hidden;
}

.team-section__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:none !important;
  -webkit-filter:none !important;
}

.team-section__caption{ margin-top:14px; }
.team-section__name{
  font-family:Inter,sans-serif;
  font-size:18px;
  line-height:26px;
  font-weight:700;
  text-transform:uppercase;
}
.team-section__position{
  margin-top:6px;
  font-family:Inter,sans-serif;
  font-size:16px;
  line-height:24px;
  color:#4d4d4d;
}
