:root {
  --bg: #f6f8fb;
  --paper: #ffffff;
  --ink: #172033;
  --muted: #657086;
  --brand: #021036;
  --brand-2: #112f61;
  --line: #e4e8f0;
  --soft: #eef3fb;
  --blue: #ddeafe;
  --blue-ink: #173c76;
  --green: #d9f2e2;
  --green-ink: #18623a;
  --amber: #ffe8b7;
  --amber-ink: #755000;
  --slate: #eef1f6;
  --slate-ink: #3c4658;
  --shadow: 0 16px 36px rgba(2, 16, 54, 0.07);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.committee-body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

.committee-body a { color: inherit; }
.committee-body :focus-visible {
  outline: 3px solid rgba(42, 112, 224, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 50;
  background: #fff;
  color: var(--brand);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

.committee-shell {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  max-width: 1600px;
  min-height: 100vh;
  margin: 0 auto;
}

.committee-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
  background: var(--brand);
  color: #fff;
  padding: 28px 22px;
}

.sidebar-brand {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
}

.brand-title {
  margin: 0 0 3px;
  font-size: 1.1rem;
  font-weight: 800;
}

.brand-subtitle {
  margin: 0;
  color: #cbd9f3;
  font-size: 0.82rem;
  line-height: 1.35;
}

.sidebar-nav {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.nav-link {
  display: block;
  color: #dce8ff;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.sidebar-note {
  margin-top: 28px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #dce8ff;
  font-size: 0.84rem;
}

.sidebar-note strong,
.sidebar-note span { display: block; }
.sidebar-note span { margin-top: 4px; color: #c7d5ee; }

.committee-main {
  min-width: 0;
  padding: 34px;
}

.hero-panel {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  padding: 42px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #eef4ff;
}

.hero-panel h1 {
  max-width: 980px;
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 900px;
  margin: 0;
  color: #e8eefc;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1;
  cursor: pointer;
}

.button-primary {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.button-small {
  min-height: 38px;
  padding: 9px 13px;
  background: var(--brand);
  color: #fff;
}

.button-disabled {
  pointer-events: none;
  opacity: 0.7;
}

.content-section {
  margin-top: 24px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(2, 16, 54, 0.04);
  scroll-margin-top: 24px;
}

.content-section-emphasis { background: #fbfcff; }

.section-heading {
  max-width: 850px;
  margin-bottom: 20px;
}

.section-kicker {
  background: var(--soft);
  color: var(--blue-ink);
}

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.15;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  gap: 16px;
}
.cards-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.content-card,
.notice-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.content-card h3,
.notice-card h3,
.document-row h3,
.channel-panel h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.content-card p,
.notice-card p,
.document-row p,
.channel-panel p {
  margin: 0;
  color: var(--muted);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.74rem;
  font-weight: 800;
  white-space: nowrap;
}
.status-info { background: var(--blue); color: var(--blue-ink); }
.status-warning { background: var(--amber); color: var(--amber-ink); }
.status-success { background: var(--green); color: var(--green-ink); }
.status-neutral { background: var(--slate); color: var(--slate-ink); }

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: #123f80;
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

.document-list {
  display: grid;
  gap: 12px;
}

.document-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.document-row-muted { background: #fff9e9; }

.document-type {
  display: inline-flex;
  margin-bottom: 7px;
  color: var(--blue-ink);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.document-action {
  display: grid;
  gap: 10px;
  justify-items: end;
  color: var(--muted);
  font-size: 0.84rem;
}

.channel-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 20px;
  align-items: center;
  padding: 22px;
  background: linear-gradient(135deg, #021036, #173c76);
  color: #fff;
  border-radius: 22px;
}

.channel-panel p { color: #dce8ff; margin-top: 8px; }

.channel-action {
  display: grid;
  gap: 10px;
  justify-items: start;
  color: #cbd9f3;
  font-size: 0.84rem;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

@media (max-width: 1100px) {
  .committee-shell { grid-template-columns: 1fr; }
  .committee-sidebar {
    position: relative;
    height: auto;
    padding: 18px;
  }
  .sidebar-brand { margin-bottom: 16px; }
  .sidebar-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 3px;
  }
  .nav-link { white-space: nowrap; }
  .sidebar-note { display: none; }
  .committee-main { padding: 18px; }
  .cards-grid-3 { grid-template-columns: 1fr 1fr; }
  .channel-panel { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero-panel,
  .content-section { border-radius: 18px; padding: 22px; }
  .cards-grid-2,
  .cards-grid-3,
  .notice-grid { grid-template-columns: 1fr; }
  .document-row { grid-template-columns: 1fr; }
  .document-action { justify-items: start; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
}
