/* Section background */
.committee-section {
  padding: 80px 20px;
  background: linear-gradient(
    to bottom,
    #faf7fb 0%,
    #ffffff 100%
  );
}

/* Title */
.page-title {
  text-align: center;
  color: #7a1f63;
  font-size: 38px;
  margin-bottom: 12px;
  font-weight: 700;
}

/* Description */
.committee-desc {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

/* Chairman highlight */
.chairman-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}

.chairman {
  width: 260px;
  position: relative;
  border: 2px solid rgba(122, 31, 99, 0.15);
  background: linear-gradient(
    145deg,
    #ffffff,
    #f7eef4
  );
}

/* Role badge */
.chairman .role-badge {
  background: #ffffff;
  color: #7a1f63;
  border: 2px solid #7a1f63;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chairman .role-badge::before {
  content: "★";
  color: #c8a24a; /* muted gold */
  font-size: 12px;
}

.chairman img {
  margin-top: 18px;
}

/* Card styling */
.committee-card {
  background: #ffffff;
  padding: 20px 18px 24px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  width: 220px;
  transition: all 0.35s ease;
  position: relative;
}

/* Images */
.committee-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
  transition: transform 0.35s ease;
}

/* Names */
.committee-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

/* Roles */
.committee-card p {
  color: #7a1f63;
  font-size: 14px;
  font-weight: 500;
}

/* Hover effects */
.committee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(122,31,99,0.18);
}

.committee-card:hover img {
  transform: scale(1.06);
}

/* Grid */
.committee-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}

/* Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 30px;
  }

  .committee-card {
    width: 90%;
    max-width: 260px;
  }
}
