.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--soft-shadow);
  transition: transform .35s ease, box-shadow .35s ease;
}
.team-card:hover { transform: translateY(-10px) scale(1.012); box-shadow: 0 34px 80px rgba(31,24,18,.18); }
.team-card img { width: 100%; height: 360px; }
.team-card img { transition: transform .55s ease; }
.team-card:hover img { transform: scale(1.06); }
.team-card div { padding: 24px; }
.values-list { display: grid; gap: 16px; }
.values-list li { list-style: none; padding: 18px 20px; border-radius: 22px; background: white; box-shadow: var(--soft-shadow); }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }
