/* Team Section */
.team-grid {
  margin-top: 3rem;
}

.team-card {
  background: white;
  border-radius: var(--web-radius);
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.12);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-body {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-role {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 0.75rem;
}

.team-desc {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}
