/* ── ABOUT HERO ── */
.about-hero {
  padding: calc(var(--space-8) * 2.5) 0 var(--space-8);
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-primary-ghost) 60%, var(--color-bg) 100%);
}
.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.05;
  margin-bottom: var(--space-5);
}
.about-hero-title em {
  color: var(--color-primary);
  font-style: italic;
}
.about-hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 55ch;
  line-height: 1.75;
}

/* ── TEAM GRID ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7);
  padding: var(--space-6) 0 var(--space-8);
}

/* ── TEAM CARD ── */
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ── PHOTO ── */
.team-photo-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--space-5);
  border: 3px solid var(--color-primary-ghost);
  flex-shrink: 0;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.team-photo--zoom {
  transform: scale(1.8);
  object-position: center 30%;
}

/* ── INITIAL AVATAR ── */
.team-photo-wrap--initial {
  background: linear-gradient(135deg, var(--color-primary), #4a2545);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-initial {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  user-select: none;
}

/* ── TEXT ── */
.team-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
  line-height: 1.2;
}
.team-pronouns {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-2);
}
.team-role {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-primary-ghost);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  letter-spacing: 0.02em;
}
.team-bio {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 35ch;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }
}
@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .team-photo-wrap {
    width: 130px;
    height: 130px;
  }
}
