.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 2rem;
  font-family: sans-serif;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 180px;
  width: 100%;
  text-align: center;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.team-avatar {
  width: 100%;
  max-width: 100px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.team-name {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.team-handle {
  color: #666;
  font-size: 0.875rem;
}
