/* ==========================================================================
   Team page — unique styles
   ========================================================================== */

.team-hero-img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: linear-gradient(135deg, #cdbff0, #a78bda);
  box-shadow: var(--shadow);
}

.team-section-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* Member cards */
.member-card {
  height: 100%;
}
.member-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #cdbff0, #a78bda);
  margin-bottom: 0.85rem;
}
.placeholder-photo {
  background: #dddddd;
}
.member-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.member-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
