.our-team-list {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.team-card {
  width: calc(33.33% - 32px);
  padding: 24px;
  background: var(--neutrals-4);
  border-radius: 10px;
  box-shadow: 0 8px 16px 8px rgba(0, 0, 0, 0.05),
    0 5px 10px 0 rgba(0, 0, 0, 0.12);
}

.team-card-image {
  display: flex;
}
.team-card-image img {
  aspect-ratio: 1.15/1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  margin-bottom: 24px;
}
.team-card-position {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--primary-copper);
}
.team-card-excerpt p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.5;
}
.team-card-sm__item {
  display: flex;
}
.team-card-sm {
  gap: 14px;
  display: flex;
}
.our-team {
  padding-top: 64px;
  padding-bottom: clamp(40px, 4.1666666667vw, 80px);
}
@media only screen and (max-width: 991px) {
  .our-team-list {
    gap: 15px;
  }
  .team-card {
    width: calc(33.33% - 10px);
  }
}
@media only screen and (max-width: 991px) {
  .team-card {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 575px) {
  .our-team {
    padding-top: 0;
  }
  .team-card {
    width: 100%;
  }
}
