
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.team-card {
  border: none;
  box-shadow: none;
  background: transparent;
  padding: 0;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: inherit;
}

.team-card img {
  width: 84%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
}

.team-card h3 {
  margin: 0;
  font-family: 'Syne', sans-serif;
}

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

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