﻿.committee-shell {
  width: var(--container);
  min-height: 100vh;
  margin: 0 auto;
  padding: 150px 0 70px;
}

.committee-heading {
  margin-bottom: 34px;
}

.committee-heading h1 {
  margin-bottom: 0;
}

.committee-list {
  display: grid;
  gap: 24px;
}

.committee-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding: clamp(16px, 3vw, 28px);
  border: var(--border-width) solid var(--color-ink);
  border-radius: var(--radius-sm);
  background: var(--panel-background);
  box-shadow: var(--shadow-hard);
}

.committee-row:nth-child(2) {
  background: var(--card-background-secondary);
}

.committee-row:nth-child(3) {
  background: var(--card-background-accent);
}

.committee-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border: var(--border-width) solid var(--color-ink);
  border-radius: var(--radius-sm);
  background: var(--color-cream);
}

.committee-row h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.committee-row p:last-child {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.committee-role {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: var(--border-width) solid var(--color-ink);
  border-radius: var(--radius-sm);
  background: var(--color-yellow);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .committee-shell {
    padding-top: 130px;
  }

  .committee-row {
    grid-template-columns: 1fr;
  }

  .committee-row img {
    aspect-ratio: 16 / 10;
  }
}


