.committee-page {
  padding-bottom: 1.4rem;
}

.team-block h2 {
  margin-bottom: 1rem;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.member-card {
  border-radius: 14px;
  border: 1px solid rgba(17, 59, 122, 0.18);
  padding: 0.75rem;
  background: #fff;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.member-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(30, 46, 75, 0.15);
}

.member-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(17, 59, 122, 0.22);
}

.member-card h3 {
  margin: 0.65rem 0 0.1rem;
  font-size: 1rem;
  color: #113b7a;
}

.member-card p {
  margin: 0;
  color: #5a6675;
  font-size: 0.92rem;
}
