.team {
  padding: clamp(2rem, 1.4737rem + 2.2456vw, 4rem) 1.5rem 100px;
  background-color: #fff;
  position: relative;
}

.team h2 {
  margin-bottom: 4.375rem;
}

.team .grass {
  max-width: 723px;
  width: 90%;
}

.team img {
  width: 100%;
  display: block;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2.5rem;
  margin-top: 4.375rem;
}

.team-title {
  text-align: center;
  color: #685E56;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 1.875rem;
}

.team-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  width: 100%;
}

.team-col.members .team-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.875rem;
}

.team-member {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.member-name {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  display: block;
}

.member-position {
  font-weight: 300;
  font-size: 1rem;
  display: block;
  margin: 0;
}

.member-image {
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: top;
  margin-bottom: 0.625rem;
  max-width: 118px;
  display: block;
  border-radius: 30px;
}

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