.committee-section {
  padding: 3rem 0;
  background: #f8fbff;
}

.committee-section__title {
  margin-bottom: 0;
}

.committee-grid {
  align-items: stretch;
}

.committee-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e4ebf3;
  border-radius: 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 43, 77, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.committee-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 43, 77, 0.12);
}

.committee-person {
  text-align: center;
}

.committee-person__photo {
  margin-bottom: 1rem;
}

.committee-person__photo img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #f3f7fc;
}

.committee-person__name {
  margin-bottom: 0.5rem;
  color: #1f2d3d;
  font-weight: 700;
  font-size: 1.25rem;
}

.committee-person__position {
  margin-bottom: 0.5rem;
  color: #6c757d;
  font-weight: 500;
}

.committee-person__regalia {
  color: #5f6b7a;
  line-height: 1.5;
  font-size: 0.95rem;
}