.team-section__cards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--column);
}
.team-section__card {
  align-items: flex-start;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: calc((100% - var(--column)*3)/4);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  color: unset;
  text-decoration: none;
}
.tiles-section__name {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; 
}
.team-section__position {
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.6;
}
.team-section__text {
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; 
}
.team-section__socials {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-section__social-icon{
  display: flex;
  align-items: center;
}
.team-section__socials li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: unset;
  text-decoration: none;
}

.team-section__photo {
  width: 100%;
}
.team-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.team-section__card--cta {
  gap; 39px;
  justify-content: flex-start;
}
.team-section__card--cta .team-section__name {
  font-family: "Geologica", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%; 
}
@media screen and (max-width: 1679px) {

}
@media screen and (max-width: 1439px) {

  .team-section__card {
    width: calc((100% - var(--column)*2)/3);
  }
  
.team-section__card--cta .team-section__name {
  font-size: 50px;
  }
}
@media screen and (max-width: 1023px) {

  .team-section__card {
    width: calc((100% - var(--column))/2);
  }
}
@media screen and (max-width: 767px) {
  .team-section__card {
    width: calc((100% - var(--column))/2);
    gap: 20px;
    font-size: 14px;
  }
  .team-section__text {
    font-size: 16px;
  }
  
.team-section__card--cta .team-section__name {
  font-size: 40px;
  }
}
@media screen and (max-width: 639px) {
  .team-section__card {
    width: 100%;
  }

}
@media screen and (max-width: 479px) {

}