.team {
  background: #d9d9d9;
  padding: 60px 70px;
  text-align: center;
}

.team__intro {
  max-width: 600px;
  margin: 0 auto 40px;
}

.team .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.team .headline {
  font-size: 30px;
  font-weight: 800;
  color: #111827;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}

.team-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__name {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 13.5px;
  color: #4338ca;
}

@media (max-width: 900px) {
  .team {
    padding: 40px 30px;
  }

  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team .headline {
    font-size: 24px;
  }
}

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