.committee {
  padding: 4rem 2rem;
}

.committee-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.committee-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.committee-card {
  background-color: var(--color-white);
  padding: 1rem 2rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--color-black);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.committee-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Desktop styles - three cards in a row */
@media (min-width: 768px) {
  .committee-group {
    flex-direction: row;
    gap: 1.5rem;
  }

  .committee-card {
    flex: 1;
  }
}

