/* ============================ ABOUT ============================ */

.team-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin-inline: auto;
}

.team-card {
  padding: 2.4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.team-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.7rem;
  color: #fff;
  background: var(--purple-gradient);
  box-shadow: 0 0 0 1px var(--border-strong), 0 0 30px rgba(157,78,221,0.4),
              inset 0 2px 8px rgba(255,255,255,0.2);
  margin-bottom: 0.8rem;
}
.team-name { font-size: 1.35rem; }
.team-role {
  color: var(--purple-glow);
  font-weight: 600;
  font-size: 0.95rem;
}
.team-phone {
  margin-top: 0.4rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--speed) var(--ease);
}
.team-phone:hover { color: var(--purple-glow); }

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