/* ── TEAM CARDS (appended) ── */
.team-card {
  background: var(--white);
  border-radius: var(--r2);
  padding: 40px 28px 32px;
  text-align: center;
  box-shadow: var(--sh);
  transition: var(--tr);
  border: 1.5px solid transparent;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh2);
  border-color: rgba(192,37,63,.12);
}
.team-card.featured {
  background: var(--red);
}
.team-card.featured h3,
.team-card.featured .team-role { color: rgba(255,255,255,.95); }
.team-card.featured p { color: rgba(255,255,255,.7); }

.team-photo-wrap {
  width: 110px; height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--off);
  box-shadow: var(--sh);
}
.team-card.featured .team-photo-wrap { border-color: rgba(255,255,255,.25); }
.team-photo-wrap img { width:100%;height:100%;object-fit:cover; }

.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; color: var(--navy); }
.team-card.featured h3 { color: #fff; }

.team-role {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.team-card.featured .team-role { color: rgba(255,255,255,.75); }

.team-socials { display:flex;justify-content:center;gap:10px;margin-bottom:18px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .85rem;
  transition: var(--tr);
}
.social-icon:hover { background: var(--red); color: #fff; transform:scale(1.1); }
.team-card.featured .social-icon { background:rgba(255,255,255,.15);color:rgba(255,255,255,.75); }
.team-card.featured .social-icon:hover { background:rgba(255,255,255,.3);color:#fff; }
