/* Team page CSS */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.team-card {
  border: 1px solid #ECECF1;
  border-radius: 24px;
  padding: 34px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-card img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  flex-shrink: 0;
}
.team-card h2 { font-size: 24px; font-weight: 600; color: #221C57; }
.team-card .position { font-size: 14px; color: #5B4BD6; font-weight: 500; margin-top: 4px; }
.team-card .bio { font-size: 15.5px; color: #4C4A63; line-height: 1.7; }
.team-card .contact a { font-size: 13.5px; color: #5C5B74; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }

@media (max-width: 760px) {
  .sub-hero-h1 { font-size: 34px !important; }
  .sub-hero-h2 { font-size: 21px !important; }
}
