:root {
  --ink: #14213d;
  --ink-soft: #3b4763;
  --muted: #68728a;
  --paper: #fbfcfe;
  --white: #ffffff;
  --line: #dfe6ef;
  --oxford: #002147;
  --teal: #167c80;
  --teal-dark: #0e5e62;
  --gold: #c8953c;
  --coral: #c85c4a;
  --mist: #eef6f7;
  --blue-mist: #edf3fb;
  --shadow: 0 24px 70px rgba(20, 33, 61, 0.14);
  --radius: 8px;
  --header-height: 78px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--oxford);
  box-shadow: var(--shadow);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: rgba(0, 33, 71, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(20, 33, 61, 0.1);
  box-shadow: 0 12px 40px rgba(20, 33, 61, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 33, 71, 0.2);
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  border-color: rgba(0, 33, 71, 0.16);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(20, 33, 61, 0.1);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-size: clamp(0.96rem, 1.8vw, 1.08rem);
  line-height: 1.1;
}

.brand-text small {
  color: currentColor;
  opacity: 0.74;
  font-size: 0.76rem;
  line-height: 1.2;
  margin-top: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 170ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: currentColor;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  border-color: var(--line);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(680px, 78vh);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  color: var(--white);
  padding: calc(var(--header-height) + 54px) clamp(18px, 5vw, 72px) 68px;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  z-index: -3;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 22, 48, 0.92) 0%, rgba(0, 33, 71, 0.72) 42%, rgba(0, 33, 71, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 33, 71, 0.54) 0%, rgba(0, 33, 71, 0.02) 56%);
}

.hero-content {
  width: min(760px, 100%);
  padding-bottom: 2vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #9ee0df;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 16ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7.2vw, 6.2rem);
  font-weight: 700;
}

h2 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
}

.hero-lede {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.button-primary {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 14px 34px rgba(0, 33, 71, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(12px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.button-quiet {
  color: var(--oxford);
  background: var(--white);
  border-color: var(--line);
}

.impact-strip {
  width: min(1180px, calc(100% - 36px));
  margin: -44px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border: 1px solid rgba(20, 33, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.impact-strip div {
  padding: clamp(20px, 3vw, 30px);
  border-right: 1px solid var(--line);
}

.impact-strip div:last-child {
  border-right: 0;
}

.impact-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.impact-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 42px;
}

.heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.about-grid,
.resource-layout,
.committee-grid,
.event-list,
.discussion-spotlight,
.sponsor-band,
.join-layout {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.about-copy {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.about-copy p {
  margin: 0 0 20px;
}

.principles {
  display: grid;
  gap: 14px;
}

.principles article,
.event-card,
.discussion-spotlight,
.committee-grid article,
.resource-list article,
.resource-feature,
.join-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.principles article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px 20px;
  padding: clamp(18px, 2.4vw, 26px);
}

.principles h3,
.principles p {
  grid-column: 2;
}

.principles p,
.committee-grid p,
.event-card p,
.discussion-spotlight p,
.resource-feature p,
.resource-list p,
.sponsor-band p,
.join-copy p,
.site-footer p {
  color: var(--muted);
}

.principle-index {
  grid-row: span 2;
  color: var(--gold);
  font-weight: 900;
  font-size: 1rem;
}

.principles p,
.event-card p,
.discussion-spotlight p,
.committee-grid p,
.resource-list p {
  margin: 8px 0 0;
}

.section-events {
  background: var(--blue-mist);
}

.filters {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.filter-button {
  min-width: 72px;
  min-height: 40px;
  padding: 8px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 800;
}

.filter-button.is-active {
  color: var(--white);
  background: var(--oxford);
}

.discussion-spotlight {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: clamp(20px, 4vw, 44px);
  align-items: stretch;
  margin-bottom: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 33, 71, 0.98), rgba(14, 94, 98, 0.92)),
    var(--oxford);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  box-shadow: 0 24px 62px rgba(20, 33, 61, 0.14);
}

.discussion-time {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: clamp(18px, 2.2vw, 24px);
  color: var(--oxford);
  background: #fff8eb;
  text-align: center;
}

.discussion-time span,
.discussion-time small {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.discussion-time strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.12rem);
  line-height: 1;
}

.discussion-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 44px) clamp(22px, 4.8vw, 52px) clamp(24px, 4vw, 42px) 0;
}

.discussion-panel .event-type {
  color: #f1c879 !important;
}

.discussion-panel h3 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
}

.discussion-panel p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.discussion-highlight {
  color: #f1c879;
  font-family: cursive;
  font-style: italic;
  font-size: 1.16em;
  font-weight: inherit;
}

.voice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.voice-list span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 14px;
}

.event-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  padding: clamp(20px, 3vw, 30px);
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    border-color 160ms ease;
}

.event-card:hover {
  transform: translateX(4px);
  border-color: rgba(22, 124, 128, 0.38);
}

.event-card.is-hidden,
.discussion-spotlight.is-hidden {
  display: none;
}

.event-date {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 16px;
  border-radius: var(--radius);
  color: var(--oxford);
  background: var(--mist);
  text-align: center;
}

.event-date span {
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-date strong {
  font-size: 1.06rem;
}

.event-date small {
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.event-card[data-category="discussion"] .event-date strong {
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card[data-category="discussion"] .event-date span {
  color: var(--oxford);
  font-size: 1.06rem;
  font-weight: 900;
  text-transform: none;
}

.event-type {
  color: var(--coral) !important;
  margin: 0 0 8px !important;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.committee-grid article {
  padding: clamp(20px, 2.4vw, 28px);
}

.committee-name {
  margin: 10px 0 0 !important;
  color: var(--oxford) !important;
  font-weight: 900;
}

.committee-name a {
  text-decoration: underline;
  text-decoration-color: rgba(22, 124, 128, 0.32);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.committee-name a:hover,
.committee-name a:focus-visible {
  color: var(--teal-dark);
  text-decoration-color: currentColor;
}

.role-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: var(--mist);
}

.role-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-resources {
  background: var(--white);
}

.text-link {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.resource-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 16px;
}

.resource-feature {
  padding: clamp(24px, 3.4vw, 42px);
  color: var(--white);
  background: var(--oxford);
  border-color: var(--oxford);
}

.resource-feature .eyebrow {
  color: #aee3df;
}

.resource-feature p {
  color: rgba(255, 255, 255, 0.78);
  margin: 18px 0 28px;
}

.resource-list {
  display: grid;
  gap: 16px;
}

.resource-list article {
  padding: clamp(20px, 2.6vw, 30px);
}

.section-sponsors {
  padding-top: 0;
}

.sponsor-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(200, 149, 60, 0.32);
  border-radius: var(--radius);
  background: #fff8eb;
}

.sponsor-band p {
  width: min(700px, 100%);
  margin: 0;
  font-size: 1.06rem;
}

.sponsor-band .button-secondary {
  flex: 0 0 auto;
  color: var(--oxford);
  background: var(--white);
  border-color: rgba(200, 149, 60, 0.44);
}

.join-section {
  background: var(--blue-mist);
}

.join-heading {
  margin-bottom: 24px;
}

.join-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.join-copy {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.join-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.join-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(20, 33, 61, 0.08);
}

.join-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-weight: 800;
}

.join-form input,
.join-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.join-form input:focus,
.join-form select:focus {
  outline: 3px solid rgba(22, 124, 128, 0.18);
  border-color: var(--teal);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #101929;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.67);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #aee3df;
}

:focus-visible {
  outline: 3px solid rgba(200, 149, 60, 0.48);
  outline-offset: 3px;
}

#contact {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

@media (max-width: 980px) {
  .hero {
    min-height: min(700px, 80vh);
  }

  .impact-strip,
  .about-grid,
  .resource-layout,
  .discussion-spotlight,
  .join-layout {
    grid-template-columns: 1fr;
  }

  .discussion-time {
    min-height: auto;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .discussion-panel {
    padding: 0 clamp(22px, 4.8vw, 52px) clamp(24px, 4vw, 42px);
  }

  .committee-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .heading-row,
  .sponsor-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .sponsor-band .button {
    width: 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand-text small {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 12px;
    right: 12px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 170ms ease,
      transform 170ms ease,
      visibility 170ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 6px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--blue-mist);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 80vh;
    padding: calc(var(--header-height) + 44px) 18px 58px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(0, 22, 48, 0.94) 0%, rgba(0, 33, 71, 0.72) 70%, rgba(0, 33, 71, 0.2) 100%),
      linear-gradient(0deg, rgba(0, 33, 71, 0.58) 0%, rgba(0, 33, 71, 0.02) 64%);
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.9rem, 16vw, 4.9rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .impact-strip {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    grid-template-columns: 1fr;
    box-shadow: none;
  }

  .impact-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .impact-strip div:last-child {
    border-bottom: 0;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .discussion-spotlight {
    margin-bottom: 18px;
  }

  .discussion-time {
    flex-wrap: wrap;
    gap: 6px 10px;
    padding: 20px;
  }

  .discussion-time strong {
    font-size: 1.65rem;
  }

  .discussion-panel {
    padding: 0 20px 24px;
  }

  .voice-list span {
    flex: 1 1 145px;
    justify-content: center;
    text-align: center;
  }

  .event-date {
    min-height: auto;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
  }

  .event-card[data-category="discussion"] .event-date span {
    font-size: 1.16rem;
  }

  .event-date small {
    font-size: 0.7rem;
  }

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

  .filters {
    width: 100%;
  }

  .filter-button {
    flex: 1 1 120px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand-text strong {
    max-width: 13ch;
  }

  .button {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
