.team-loading {
  text-align: center;
  padding: 2rem;
  color: #666;
}

.team-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.team-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.team-member {
  text-align: center;
}

.team-member__photo {
  margin: 0 auto 1rem;
  max-width: 280px;
}

.team-member__photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.team-member h3 {
  text-align: center;
  margin-bottom: 0.75rem;
}

.team-member p {
  text-align: left;
  margin-bottom: 0.75rem;
}

.team-highlight {
  margin-top: 2rem;
  padding-top: 1rem;
}

.team-highlight h2 {
  margin-bottom: 1rem;
}

.team-highlight p {
  margin-bottom: 0.75rem;
}

.team-error {
  padding: 1rem;
  background: #fde8ea;
  color: #8b1e2b;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .team-row {
    grid-template-columns: 1fr;
  }
}
