/* ── TEAM PAGE ── */
.team-section { background: var(--cream); padding: 6rem 0; }
.team-section--alt { background: var(--warm-gray); }

.chapter-header { margin-bottom: 3rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.team-grid--single {
  grid-template-columns: repeat(1, minmax(0, 360px));
}

.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.team-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease);
}
.team-card:hover .team-img img { transform: scale(1.05); }

.team-role-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--yellow);
  color: var(--navy-dark);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}

.team-body { padding: 1.5rem 1.75rem; }
.team-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.75rem;
}
.team-body p {
  font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.7;
}

.team-img--initials {
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
}
.initials-circle {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--blue-mid); color: #fff;
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}

.team-cta {
  background: var(--navy);
  padding: 6rem 0;
}
.team-cta-inner {
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem;
}
.team-cta-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem; max-width: 480px;
}
.team-cta-inner .section-title em { color: var(--yellow); }

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