:root {
  color-scheme: light;
  --site-header-height: 4.25em;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  background: #f3f4f6;
  color: #111827;
}

a {
  color: #450a0a;
  transition:
    color 300ms,
    transform 300ms,
    background-color 300ms;
}

img {
  display: block;
  max-width: 100%;
}

.mobile-menu-toggle {
  display: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  font-size: 1rem;
  border-bottom: 1px solid #e7e5e4;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.site-header-inner {
  position: relative;
  display: grid;
  min-height: 3.25em;
  max-width: 120em;
  margin: 0 auto;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 1.5em;
  padding: 0.5em 1em;
}

.site-brand {
  flex-shrink: 0;
  justify-self: start;
  padding: 0.5em 0;
  transition:
    opacity 300ms ease,
    transform 300ms ease;
}

.site-brand img {
  width: 7.375em;
  height: auto;
}

.site-nav {
  display: none;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 1em;
}

.site-nav-item {
  display: flex;
  align-items: center;
  gap: 1em;
}

.site-nav-separator {
  color: #d6d3d1;
  font-size: 1em;
}

.site-nav a,
.mobile-menu-nav a,
.section-nav a,
.dictionary-tabs a,
.solid-button,
.site-contact a {
  transition:
    color 300ms,
    transform 300ms,
    background-color 300ms;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25em 0.1em;
  color: #450a0a;
  text-decoration: none;
  font-size: 0.8125em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a:hover,
.site-nav a.active {
  color: #b91c1c;
}

.site-nav a:hover {
  color: #b91c1c;
  transform: translateY(-0.15em);
}

.site-nav a:active {
  transform: translateY(-0.05em);
}

.site-contact {
  display: none;
  justify-self: end;
  padding: 0.25em 0;
  text-align: left;
  font-size: 0.75em;
  line-height: 1.5;
  color: #57534e;
  white-space: nowrap;
}

.site-contact-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35em;
}

.contact-icon {
  display: inline-flex;
  width: 0.875em;
  height: 0.875em;
  align-items: center;
  justify-content: center;
  color: #57534e;
  flex: 0 0 auto;
}

.contact-icon svg {
  display: block;
  width: 0.875em;
  height: 0.875em;
  fill: currentColor;
}

.site-contact a {
  color: inherit;
  text-decoration: none;
}

.site-contact a:hover {
  color: #b91c1c;
  transform: translateY(-0.15em);
}

.mobile-menu-button,
.mobile-menu-panel {
  display: none;
}

.mobile-menu-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  width: 2.5em;
  height: 2.5em;
  align-items: center;
  justify-content: center;
  color: #450a0a;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.mobile-menu-button span {
  position: absolute;
  width: 1.25em;
  height: 0.125em;
  background: currentColor;
  transition:
    transform 300ms,
    opacity 300ms;
}

.mobile-menu-button span:nth-child(1) {
  transform: translateY(-0.375em);
}

.mobile-menu-button span:nth-child(3) {
  transform: translateY(0.375em);
}

.mobile-menu-overlay {
  position: fixed;
  inset: var(--site-header-height) 0 0 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.mobile-menu-panel {
  position: absolute;
  inset: var(--site-header-height) 0 auto 0;
  z-index: 2;
  display: block;
  max-height: calc(100vh - var(--site-header-height));
  overflow-y: auto;
  border-top: 0;
  border-bottom: 1px solid #e7e5e4;
  background: #ffffff;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1em);
  transition:
    transform 300ms ease,
    opacity 300ms ease;
}

.mobile-menu-panel-inner {
  padding: 1.5em 1.5em 2em;
}

.mobile-menu-brand {
  display: flex;
  justify-content: center;
  padding-bottom: 1.5em;
  border-bottom: 1px solid #e7e5e4;
}

.mobile-menu-brand img {
  width: 11.25em;
  height: auto;
}

.mobile-menu-nav {
  display: grid;
  gap: 0;
  margin-top: 1.5em;
  text-align: center;
}

.mobile-menu-nav > * {
  border-top: 0;
}

.mobile-menu-nav > :first-child {
  border-top: 0;
}

.mobile-menu-top-link,
.mobile-menu-group-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  width: 100%;
  min-height: 3.2em;
  padding: 0;
  color: #450a0a;
  text-decoration: none;
  font-size: 1.125em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    color 300ms,
    transform 300ms;
}

.mobile-menu-group {
  margin: 0;
}

.mobile-menu-group summary {
  list-style: none;
  display: flex;
}

.mobile-menu-group summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-chevron {
  transition: transform 300ms ease;
}

.mobile-menu-group[open] .mobile-menu-chevron {
  transform: rotate(180deg);
}

.mobile-menu-subnav {
  display: grid;
  gap: 0.75em;
  padding-top: 0.85em;
}

.mobile-menu-subnav a {
  color: #b91c1c;
  text-decoration: none;
  font-size: 0.9375em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    color 300ms,
    transform 300ms;
}

.mobile-menu-top-link:hover,
.mobile-menu-top-link.active,
.mobile-menu-group-trigger:hover,
.mobile-menu-group-trigger.active,
.mobile-menu-subnav a:hover,
.mobile-menu-subnav a.active,
.mobile-menu-contact a:hover {
  color: #b91c1c;
  transform: translateY(-0.15em);
}

.mobile-menu-contact {
  margin-top: 2em;
  padding-top: 1.25em;
  border-top: 0;
  text-align: center;
  font-size: 0.875em;
  color: #57534e;
}

.mobile-menu-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.mobile-menu-contact-row + .mobile-menu-contact-row {
  margin-top: 0.75em;
}

.mobile-menu-contact a {
  color: inherit;
  text-decoration: none;
  transition:
    color 300ms,
    transform 300ms;
}

#mobile-menu-toggle:checked + .site-header .mobile-menu-button span:nth-child(1) {
  transform: rotate(45deg);
}

#mobile-menu-toggle:checked + .site-header .mobile-menu-button span:nth-child(2) {
  opacity: 0;
}

#mobile-menu-toggle:checked + .site-header .mobile-menu-button span:nth-child(3) {
  transform: rotate(-45deg);
}

#mobile-menu-toggle:checked + .site-header .site-brand {
  opacity: 0;
  transform: translateX(-3.25em);
  pointer-events: none;
}

#mobile-menu-toggle:checked + .site-header {
  background: #ffffff;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

#mobile-menu-toggle:checked + .site-header .mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

#mobile-menu-toggle:checked + .site-header .mobile-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-main {
  min-height: 100vh;
  padding-top: 3.75em;
  padding-bottom: 92px;
}

.site-page-shell,
.section-page-shell {
  max-width: 1580px;
  margin: 0 auto;
  padding: 2.5rem 1rem 0;
}

.site-page-wide {
  max-width: 1880px;
}

.site-page-narrow {
  max-width: 1120px;
}

.site-page-article {
  max-width: 1780px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.site-page-shell-embedded {
  max-width: none;
  margin: 0;
  padding: 0;
}

.page-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.page-title {
  margin: 0;
  color: #450a0a;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.page-title::first-letter {
  color: #b91c1c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.875em;
}

.page-title-article {
  font-size: clamp(1.25rem, 2.25vw, 1.8rem);
}

.page-subtitle {
  margin: 0.75rem 0 0;
  color: #6b7280;
  font-size: 1.425rem;
  line-height: 1.7;
}

.page-kicker {
  margin: 0 0 1rem;
  color: #991b1b;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-actions-centered {
  justify-content: center;
  margin-top: 1.75rem;
}

.solid-button,
.page-search-form button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border: 0;
  background: #450a0a;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.11rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(127, 29, 29, 0.14);
}

.solid-button:hover,
.page-search-form button:hover {
  background: #7f1d1d;
  transform: translateY(-3px);
}

.solid-button:active,
.page-search-form button:active {
  transform: translateY(-1px);
}

.page-search-form {
  display: flex;
  min-width: 320px;
  gap: 0.75rem;
}

.page-search-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d6d3d1;
  background: #ffffff;
  padding: 0 0.95rem;
  color: #111827;
  font-size: 1.425rem;
}

.surface-card {
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.section-page-grid {
  display: grid;
  min-height: calc(100vh - 136px);
  grid-template-columns: 240px minmax(0, 1fr);
}

.section-sidebar {
  position: sticky;
  top: 68px;
  align-self: start;
  height: calc(100vh - 68px);
  overflow-y: auto;
  border-right: 1px solid #d6d3d1;
  background: #f3f4f6;
}

.section-nav {
  display: grid;
  gap: 1rem;
  padding: 2.75rem 1.75rem;
}

.section-nav a {
  display: block;
  color: #475569;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.section-nav a.active {
  color: #b91c1c;
}

.section-nav a:hover {
  color: #b91c1c;
  transform: translateY(-3px);
}

.section-nav a:active {
  transform: translateY(-1px);
}

.section-main {
  display: grid;
  gap: 1.5rem;
  padding: 2.75rem 2.25rem;
}

.section-surface {
  padding: 2rem 2.25rem;
}

.section-surface-imprint {
  max-width: 72rem;
}

.section-card-title {
  margin: 0 0 1.5rem;
  color: #450a0a;
  font-size: 2.85rem;
  font-weight: 700;
  line-height: 1.15;
}

.imprint-content {
  margin-top: 2rem;
}

.bylaws-intro {
  padding-bottom: 1.25rem;
}

.bylaws-accordion {
  margin-top: 1.25rem;
  border-top: 1px solid #7f1d1d;
}

.bylaws-section {
  border-bottom: 1px solid #7f1d1d;
}

.bylaws-section summary::-webkit-details-marker {
  display: none;
}

.bylaws-toggle {
  list-style: none;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding: 1.6rem 0;
  cursor: pointer;
}

.bylaws-toggle-title {
  color: #450a0a;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
}

.bylaws-toggle-sign {
  flex: 0 0 auto;
  color: #450a0a;
  font-size: 1.35rem;
  font-weight: 700;
}

.bylaws-sign-open {
  display: none;
}

.bylaws-section[open] .bylaws-sign-closed {
  display: none;
}

.bylaws-section[open] .bylaws-sign-open {
  display: inline;
}

.bylaws-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 320ms ease,
    opacity 220ms ease;
}

.bylaws-content-inner {
  min-height: 0;
  overflow: hidden;
}

.bylaws-content-inner .news-richtext {
  padding-bottom: 1.5rem;
  transform: translateY(-0.35rem);
  transition: transform 320ms ease;
}

.bylaws-section[open] .bylaws-content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.bylaws-section[open] .bylaws-content-inner .news-richtext {
  transform: translateY(0);
}

.bylaws-accordion.is-enhanced .bylaws-content {
  display: block;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease;
}

.bylaws-accordion.is-enhanced .bylaws-content-inner .news-richtext {
  opacity: 0;
  transform: translateY(-0.5rem);
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease;
}

.bylaws-accordion.is-enhanced .bylaws-section[open] .bylaws-content {
  opacity: 1;
}

.bylaws-accordion.is-enhanced .bylaws-section[open] .bylaws-content-inner .news-richtext {
  opacity: 1;
  transform: translateY(0);
}

#chapter-1 .news-richtext ul {
  list-style: none;
  padding-left: 0;
}

.bylaws-content .news-richtext ul:has(> li > strong) {
  list-style: none;
  padding-left: 0;
}

.bylaws-content .news-richtext li:has(> strong) {
  margin-bottom: 0.5rem;
}

.awardees-intro {
  padding-bottom: 2.5rem;
}

.awardees-accordion {
  padding-top: 2.5rem;
  border-top: 1px solid #7f1d1d;
}

.awardees-section {
  border-bottom: 1px solid #7f1d1d;
}

.awardees-section summary::-webkit-details-marker {
  display: none;
}

.awardees-toggle {
  list-style: none;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 0;
  cursor: pointer;
}

.awardees-toggle-title {
  color: #7f1d1d;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.awardees-toggle-sign {
  flex: 0 0 auto;
  color: #7f1d1d;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.awardees-sign-open {
  display: none;
}

.awardees-section[open] .awardees-sign-closed {
  display: none;
}

.awardees-section[open] .awardees-sign-open {
  display: inline;
}

.awardees-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 320ms ease,
    opacity 220ms ease;
}

.awardees-content-inner {
  min-height: 0;
  overflow: hidden;
}

.awardees-content-inner .news-richtext {
  padding-top: 0.25rem;
  padding-bottom: 1.5rem;
  transform: translateY(-0.35rem);
  transition: transform 320ms ease;
}

.awardees-section[open] .awardees-content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.awardees-section[open] .awardees-content-inner .news-richtext {
  transform: translateY(0);
}

.awardees-accordion.is-enhanced .awardees-content {
  display: block;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease;
}

.awardees-accordion.is-enhanced .awardees-content-inner .news-richtext {
  opacity: 0;
  transform: translateY(-0.5rem);
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease;
}

.awardees-accordion.is-enhanced .awardees-section[open] .awardees-content {
  opacity: 1;
}

.awardees-accordion.is-enhanced .awardees-section[open] .awardees-content-inner .news-richtext {
  opacity: 1;
  transform: translateY(0);
}

.news-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.news-featured-card {
  min-width: 0;
  height: 100%;
}

.news-featured-link {
  display: block;
  height: 100%;
  overflow: hidden;
  background: #450a0a;
  text-decoration: none;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
}

.news-featured-media {
  position: relative;
  height: 100%;
  min-height: 432px;
  background-color: #450a0a;
  overflow: hidden;
}

.news-featured-background {
  position: absolute;
  inset: 0;
  background-color: #450a0a;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition:
    transform 300ms ease-out,
    filter 300ms ease-out;
}

.news-featured-background.is-empty {
  background-image: linear-gradient(135deg, #fecaca 0%, #f5f5f4 50%, rgba(69, 10, 10, 0.35) 100%);
}

.news-featured-link:hover .news-featured-background {
  transform: scale(1.02);
  filter: blur(2px) brightness(0.72);
}

.news-featured-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(69, 10, 10, 0.03) 34%,
    rgba(69, 10, 10, 0.42) 58%,
    rgba(91, 6, 6, 0.86) 78%,
    rgba(91, 6, 6, 0.96) 100%
  );
  transition:
    background-color 300ms ease-out,
    opacity 300ms ease-out;
}

.news-featured-link:hover .news-featured-gradient {
  background-color: rgba(0, 0, 0, 0.18);
}

.news-featured-cta {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms ease-out;
  pointer-events: none;
}

.news-featured-cta span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  color: #450a0a;
  font-size: 1.38rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.news-featured-link:hover .news-featured-cta {
  opacity: 1;
}

.news-featured-text {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 1rem 1rem 1.05rem 1.15rem;
  color: #ffffff;
  text-align: right;
  transition: opacity 220ms ease-out;
}

.news-featured-link:hover .news-featured-text {
  opacity: 0;
}

.news-featured-text p {
  margin: 0 0 0.45rem auto;
  color: rgba(255, 245, 245, 0.95);
  font-size: 15.6px;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.news-featured-text h2 {
  margin: 0 0 0 auto;
  max-width: 100%;
  width: 100%;
  text-align: right;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.news-featured-card:first-child .news-featured-text,
.news-featured-card:nth-child(2) .news-featured-text {
  padding: 1.15rem 1.2rem 1.1rem 1.4rem;
}

.news-featured-card:first-child .news-featured-text h2,
.news-featured-card:nth-child(2) .news-featured-text h2 {
  font-size: 1.26rem;
}

.honor-court-list {
  border-top: 1px solid #d1d5db;
}

.honor-court-item {
  border-bottom: 1px solid #d1d5db;
}

.honor-court-link {
  display: grid;
  gap: 1rem;
  padding: 2rem 0;
  text-decoration: none;
}

.honor-court-media {
  position: relative;
  height: 120px;
  overflow: hidden;
  background: #f3f4f6;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.honor-court-media img,
.honor-court-media-fallback {
  display: block;
  width: 100%;
  height: 100%;
}

.honor-court-media img {
  object-fit: cover;
  transition: transform 300ms ease;
}

.honor-court-media-fallback {
  background: linear-gradient(135deg, #fee2e2 0%, #e7e5e4 55%, #d1d5db 100%);
}

.honor-court-link:hover .honor-court-media img {
  transform: scale(1.03);
}

.honor-court-body {
  min-width: 0;
}

.honor-court-body h2 {
  margin: 0;
  color: #450a0a;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  transition: color 300ms ease;
}

.honor-court-link:hover .honor-court-body h2 {
  color: #b91c1c;
}

.honor-court-date {
  margin: 0.6rem 0 0;
  color: #737373;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

.honor-court-excerpt {
  margin: 0.9rem 0 0;
  color: #0f172a;
  display: -webkit-box;
  font-size: 0.95rem;
  line-height: 1.8;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-card {
  padding: 2rem 2.5rem;
}

.article-meta,
.card-meta {
  margin: 0 0 1rem;
  color: #6b7280;
  font-size: 1.23rem;
}

.article-meta-below-title {
  margin-top: 0.85rem;
  margin-bottom: 1.25rem;
}

.article-cover {
  width: 100%;
  margin: 1.5rem 0 2rem;
}

.article-files {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.article-files h2 {
  margin: 0 0 1rem;
  color: #450a0a;
  font-size: 1.875rem;
}

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

.members-box {
  border: 1px solid #e5e7eb;
  padding: 2rem 2rem 2.25rem;
}

.members-heading {
  align-items: baseline;
  display: flex;
  gap: 0;
  margin: 0;
  color: #450a0a;
  line-height: 1;
  letter-spacing: -0.02em;
}

.members-heading-initial {
  color: #b91c1c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 400;
}

.members-heading-text {
  font-size: 2.25rem;
  font-weight: 400;
}

.members-subheading {
  margin: 0.85rem 0 0;
  color: #111827;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.members-body-columns {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.members-body-column {
  text-align: center;
}

.members-body-column h3 {
  margin: 0;
  color: #450a0a;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.members-body-date {
  margin: 0.35rem 0 0;
  color: #111827;
  font-size: 0.78rem;
  font-weight: 500;
}

.members-body-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.members-body-item {
  margin: 0;
  color: #111827;
  font-size: 1rem;
  line-height: 1.35;
}

.members-application-copy {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  line-height: 1.8;
}

.members-application-copy hr {
  margin: 1.5rem 0;
  border: 0;
  border-top: 1px solid #fca5a5;
}

.members-modal-open-button,
.members-modal-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border: 0;
  background: #7f1d1d;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.members-modal-open-button {
  margin-top: 1.5rem;
}

.members-modal-open-button:hover,
.members-modal-submit-button:hover {
  background: #991b1b;
  transform: translateY(-2px);
}

.members-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.members-modal[hidden] {
  display: none !important;
}

.members-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
}

.members-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 64rem);
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.members-modal-form {
  padding: 1.5rem;
}

.members-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.members-modal-title {
  margin: 0;
  color: #450a0a;
  font-size: 1.6rem;
  font-weight: 700;
}

.members-modal-intro {
  margin: 0.6rem 0 0;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

.members-modal-close-button {
  flex: 0 0 auto;
  padding: 0.7rem 1rem;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.members-modal-close-button:hover {
  background: #f9fafb;
}

.members-modal-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.members-modal-field {
  display: grid;
  gap: 0.5rem;
}

.members-modal-field > span,
.members-modal-field legend {
  color: #111827;
  font-size: 0.92rem;
  font-weight: 600;
}

.members-modal-field input,
.members-modal-field textarea,
.members-modal-select-field select {
  width: 100%;
  border: 1px solid #d1d5db;
  background: #ffffff;
  padding: 0.85rem 1rem;
  color: #111827;
  font-size: 0.95rem;
  outline: none;
}

.members-modal-field textarea {
  resize: vertical;
}

.members-modal-field input:focus,
.members-modal-field textarea:focus,
.members-modal-select-field select:focus {
  border-color: #fca5a5;
}

.members-modal-date-grid {
  display: grid;
  gap: 0.75rem;
}

.members-modal-select-field {
  display: grid;
  gap: 0.45rem;
}

.members-modal-select-field > span {
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.members-modal-radio-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.members-modal-radio-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.members-modal-radio-options label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #111827;
  font-size: 0.92rem;
}

.members-modal-note {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid #fee2e2;
  background: rgba(254, 242, 242, 0.8);
  color: #1f2937;
  font-size: 0.92rem;
  line-height: 1.7;
}

.members-application-feedback {
  margin: 1rem 0 1.5rem;
  padding: 1rem 1.15rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.members-application-feedback-success {
  background: #eaf6ee;
  border: 1px solid #b9dfc4;
  color: #1e6a3d;
}

.members-application-feedback-error {
  background: #f9ece8;
  border: 1px solid #efc8bc;
  color: #7d1f1f;
}

.members-modal-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.members-modal-checkbox input {
  margin-top: 0.2rem;
}

.members-modal-checkbox span {
  color: #111827;
  font-size: 0.9rem;
  line-height: 1.7;
}

.members-modal-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.has-members-modal {
  overflow: hidden;
}

.members-active-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.members-search-form {
  width: 100%;
}

.members-search-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  padding: 0 1rem;
  color: #111827;
  font-size: 0.95rem;
  outline: none;
}

.members-search-form input:focus {
  border-color: #fca5a5;
}

.members-empty-state {
  margin-top: 2rem;
}

.members-active-grid {
  display: grid;
  gap: 1rem 2.5rem;
  margin-top: 2rem;
}

.members-active-item {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #e5e7eb;
}

.members-active-name {
  margin: 0;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
}

.members-active-order {
  margin: 0.3rem 0 0;
  color: #6b7280;
  font-size: 0.74rem;
  line-height: 1.2;
}

.members-active-meta {
  margin: 0.3rem 0 0;
  color: #4b5563;
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (min-width: 48em) {
  .members-modal-form {
    padding: 2rem;
  }

  .members-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .members-modal-field-span-2 {
    grid-column: span 2;
  }

  .members-modal-date-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .members-active-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .members-search-form {
    max-width: 20rem;
    margin-left: auto;
  }

  .members-active-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64em) {
  .members-body-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 90em) {
  .members-active-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.65rem;
  background: rgba(127, 29, 29, 0.08);
  color: #450a0a;
  font-size: 1.2rem;
  font-weight: 700;
}

.clean-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stacked-list-item {
  display: grid;
  gap: 0.25rem;
}

.info-card-grid,
.member-grid,
.dictionary-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.info-card,
.member-card,
.dictionary-link-card {
  padding: 1.15rem;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.info-card h3,
.member-card h3,
.dictionary-link-card strong {
  margin: 0 0 0.6rem;
  color: #450a0a;
  font-size: 1.5rem;
}

.dictionary-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
}

.dictionary-link-card span {
  color: #991b1b;
  font-size: 1.26rem;
  font-weight: 700;
}

.dictionary-link-card:hover {
  transform: translateY(-3px);
}

.dictionary-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dictionary-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  background: #ffffff;
  color: #450a0a;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.dictionary-tabs a:hover,
.dictionary-tabs a.active {
  background: #450a0a;
  color: #ffffff;
  transform: translateY(-3px);
}

.dictionary-links-grid {
  display: grid;
  gap: 1rem;
}

.dictionary-link-button {
  display: flex;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  background: #450a0a;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(127, 29, 29, 0.14);
}

.dictionary-link-button:hover,
.dictionary-link-button.active {
  background: #991b1b;
}

.dictionary-link-button:hover {
  transform: translateY(-3px);
}

.dictionary-surface {
  max-width: 72rem;
}

.dictionary-overview {
  display: grid;
  gap: 1.5rem;
}

.dictionary-overview-title {
  margin: 0;
  color: #450a0a;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dictionary-overview-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e7e5e4;
}

.dictionary-overview-trigger {
  padding: 0;
  border: 0;
  background: transparent;
  color: #1f2937;
  font-size: 1.05rem;
  cursor: pointer;
}

.dictionary-overview-trigger:hover {
  color: #b91c1c;
  transform: translateY(-3px);
}

.dictionary-browser {
  margin-top: 2rem;
}

.dictionary-search-grid {
  display: grid;
  gap: 1rem;
}

.dictionary-search-field input {
  width: 100%;
  border: 1px solid #d1d5db;
  background: #ffffff;
  padding: 0.8rem 1rem;
  color: #111827;
  font-size: 0.95rem;
  outline: none;
}

.dictionary-search-field input:focus {
  border-color: #fca5a5;
}

.dictionary-browser-table {
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.dictionary-browser-header {
  display: none;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}

.dictionary-browser-heading {
  padding: 0.75rem 1.25rem;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dictionary-browser-rows {
  display: grid;
}

.dictionary-browser-row {
  border-top: 1px solid #e5e7eb;
}

.dictionary-browser-row:first-child {
  border-top: 0;
}

.dictionary-browser-cell {
  padding: 1rem 1.25rem;
  color: #0f172a;
  font-size: 0.98rem;
  line-height: 1.8;
}

.dictionary-browser-cell-left {
  font-weight: 700;
}

.dictionary-browser-cell em {
  font-style: italic;
}

.dictionary-browser-empty {
  padding: 2.5rem 1.5rem;
  color: #6b7280;
  font-size: 0.95rem;
  text-align: center;
}

.dictionary-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.dictionary-modal[hidden] {
  display: none !important;
}

.dictionary-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.4);
  backdrop-filter: blur(2px);
}

.dictionary-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 107.5rem);
  max-height: 88vh;
  overflow-y: auto;
  border: 1px solid #e7e5e4;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.dictionary-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.dictionary-modal-close:hover {
  color: #111827;
}

.dictionary-modal-panel {
  padding: 1.75rem 1.5rem;
}

.dictionary-modal-title {
  margin: 0;
  padding-right: 2.5rem;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 700;
}

.dictionary-modal-content {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.dictionary-modal-copy {
  display: grid;
  gap: 1rem;
}

.dictionary-modal-copy p {
  margin: 0;
}

.dictionary-modal-copy ul {
  margin: 0;
  padding-left: 1.5rem;
}

.dictionary-modal-signoff {
  text-align: right;
  color: #6b7280;
}

.dictionary-modal-subtitle {
  margin: 0;
  padding-top: 0.5rem;
  color: #0f172a;
  font-size: 1rem;
}

.dictionary-abbreviation-grid {
  display: grid;
  gap: 0.5rem 1.5rem;
}

.dictionary-abbreviation-grid p {
  margin: 0;
}

.has-dictionary-modal {
  overflow: hidden;
}

.dictionary-table {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.dictionary-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
}

.dictionary-left,
.dictionary-right {
  font-size: 1.425rem;
  line-height: 1.6;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.pagination a {
  color: #7f1d1d;
  font-weight: 700;
  text-decoration: none;
}

.timeline-card-title {
  margin: 0;
  padding-bottom: 1rem;
  color: #7f1d1d;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-transform: uppercase;
}

.timeline-richtext p,
.timeline-richtext ul,
.timeline-richtext ol {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.timeline-mobile {
  display: grid;
  gap: 0;
}

.timeline-mobile-item {
  position: relative;
}

.timeline-mobile-card {
  border: 2px solid #7f1d1d;
  background: #ffffff;
  padding: 1.25rem;
  box-shadow: 0 18px 35px rgba(127, 29, 29, 0.08);
}

.timeline-mobile-connector {
  display: flex;
  justify-content: center;
  padding: 0.15rem 0;
}

.timeline-mobile-arrow {
  width: 2rem;
  height: 1.5rem;
  overflow: visible;
}

.timeline-desktop {
  position: relative;
  display: none;
}

.timeline-desktop-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.timeline-desktop-column {
  min-width: 0;
}

.timeline-desktop-card {
  position: relative;
  border: 3px solid #7f1d1d;
  background: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.08);
}

.empty-state {
  padding: 3rem 2rem;
  text-align: center;
}

.public-benefit-page-shell {
  max-width: 1580px;
  padding-top: 2.5rem;
  padding-bottom: 0;
}

.page-heading-row-public-benefit {
  margin-bottom: 1.5rem;
}

.public-benefit-grid {
  display: grid;
  gap: 0.75rem;
}

.public-benefit-card {
  position: relative;
  display: flex;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.public-benefit-card:hover {
  transform: translateY(-2px);
}

.public-benefit-card-overlay,
.public-benefit-card-hover {
  position: absolute;
  inset: 0;
  transition:
    opacity 300ms ease,
    background 300ms ease;
}

.public-benefit-card-overlay {
  background: linear-gradient(to bottom, rgba(69, 10, 10, 0), rgba(69, 10, 10, 0), rgba(69, 10, 10, 0.05));
}

.public-benefit-card-hover {
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
}

.public-benefit-card-cta {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms ease;
}

.public-benefit-card-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: #450a0a;
  font-size: 0.875rem;
  font-weight: 600;
}

.public-benefit-card-content {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  transition: opacity 300ms ease;
}

.public-benefit-card-content h2 {
  margin: 0;
  color: #450a0a;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.public-benefit-card-content p {
  margin: 1.5rem 0 0;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
}

.public-benefit-card:hover .public-benefit-card-hover,
.public-benefit-card:hover .public-benefit-card-cta {
  opacity: 1;
}

.public-benefit-card:hover .public-benefit-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(69, 10, 10, 0),
    rgba(69, 10, 10, 0.25),
    rgba(69, 10, 10, 0.8)
  );
}

.public-benefit-card:hover .public-benefit-card-content {
  opacity: 0;
}

.public-benefit-page-shell-content {
  max-width: 1120px;
}

.public-benefit-content-card {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.public-benefit-richtext {
  font-size: 0.875rem;
  line-height: 1.7;
}

.public-benefit-richtext h1,
.public-benefit-richtext h2 {
  color: #450a0a;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.public-benefit-richtext h2 {
  margin-top: 2rem;
}

.public-benefit-richtext h3 {
  margin-top: 1.5rem;
  color: #111827;
  letter-spacing: -0.01em;
}

.public-benefit-richtext a {
  color: #7f1d1d;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.public-benefit-richtext blockquote {
  padding: 0.25rem 1rem;
  border-left: 4px solid #fecaca;
}

.site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  background: #5b0606;
  color: #ffffff;
}

.site-footer-inner {
  display: flex;
  min-height: 48px;
  max-width: 1920px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.5rem 1.5rem;
}

.site-supporters {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-supporters p,
.site-footer-copy {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
}

.site-supporter-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-supporter-logos a {
  display: flex;
  align-items: center;
  transition: transform 300ms;
}

.site-supporter-logos a:hover {
  transform: translateY(-3px);
}

.site-supporter-logo {
  display: block;
  width: auto;
  height: auto;
  border-radius: 0.125rem;
  background: #ffffff;
}

.site-supporter-logo-communitas {
  width: 78px;
}

.site-supporter-logo-bga {
  width: 84px;
}

.news-richtext {
  font-size: 1rem;
  line-height: 1.7;
  color: #0f172a;
}

.news-richtext h1,
.news-richtext h2,
.news-richtext h3,
.news-richtext p,
.news-richtext li {
  white-space: break-spaces;
}

.news-richtext p {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

.news-richtext img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.news-richtext h1 {
  color: #450a0a;
  font-size: 2.25em;
  font-weight: 700;
  text-transform: uppercase;
}

.news-richtext h2 {
  color: #450a0a;
  font-weight: 700;
  text-transform: uppercase;
}

.news-richtext h3 {
  color: #450a0a;
  font-weight: 700;
}

.news-richtext ul {
  list-style-type: disc;
  padding-left: 1.25rem;
}

.news-richtext ol {
  list-style-type: decimal;
  padding-left: 1.25rem;
}

.news-richtext ul li::marker,
.news-richtext ol li::marker {
  color: #450a0a;
}

.news-richtext a {
  display: inline-block;
  color: #450a0a;
  font-weight: 700;
  text-decoration: underline;
  white-space: normal;
}

.news-richtext a:hover {
  color: #b91c1c;
  transform: translateY(-3px);
}

.news-richtext table {
  width: 100%;
  border-collapse: collapse;
}

.news-richtext td,
.news-richtext th {
  border: 1px solid #d6d3d1;
  padding: 0.65rem;
}

@media (min-width: 768px) {
  .news-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .honor-court-link {
    grid-template-columns: 170px minmax(0, 1fr);
    align-items: start;
    gap: 1.5rem;
    padding: 2.35rem 0;
  }

  .honor-court-media {
    height: 110px;
  }

  .public-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dictionary-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dictionary-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dictionary-modal-panel {
    padding: 2rem;
  }

  .dictionary-abbreviation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .news-featured-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 270px;
  }

  .news-featured-media {
    min-height: 0;
  }

  .news-featured-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .news-featured-card:nth-child(2) {
    grid-column: span 2;
  }

  .site-page-shell {
    padding-top: 2.75rem;
  }

  .public-benefit-content-card {
    padding: 2rem;
  }

  .dictionary-browser-header {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dictionary-browser-heading:first-child {
    border-right: 1px solid #e5e7eb;
  }

  .dictionary-browser-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dictionary-browser-cell-left {
    border-right: 1px solid #e5e7eb;
  }
}

@media (min-width: 64em) {
  .mobile-menu-button,
  .mobile-menu-overlay,
  .mobile-menu-panel {
    display: none;
  }

  .site-nav {
    display: flex;
  }
}

@media (min-width: 80em) {
  .site-contact {
    display: block;
  }

  .public-benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dictionary-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 64em) {
  :root {
    --site-header-height: 4.0625em;
  }

  .site-header {
    font-size: 0.9375rem;
  }

  .site-header-inner {
    min-height: 3.0625em;
    gap: 0.75em;
    padding: 0.5em 1em;
  }

  .site-main {
    padding-top: 3.9em;
    padding-bottom: 2.5rem;
  }

  .section-page-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .section-sidebar {
    display: none;
  }

  .section-main {
    padding: 1.5rem 0 0;
  }

  .page-heading-row,
  .page-search-form,
  .site-footer-inner,
  .site-supporters {
    flex-direction: column;
    align-items: center;
  }

  .page-search-form {
    min-width: 0;
  }

  .site-footer-inner {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    text-align: center;
  }

  .site-footer {
    position: static;
  }
}

@media (max-width: 48em) {
  :root {
    --site-header-height: 3.9625em;
  }

  .site-header {
    font-size: 0.875rem;
  }

  .site-header-inner {
    padding: 0.45em 0.75em;
  }

  .mobile-menu-panel-inner {
    padding-left: 1.25em;
    padding-right: 1.25em;
  }

  .site-main {
    padding-top: 3.7em;
  }
}

@media (max-width: 767px) {
  .site-page-shell,
  .section-page-shell {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .section-surface,
  .article-card {
    padding: 1.5rem 1.25rem;
  }

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

  .news-featured-text h2,
  .news-featured-card:first-child .news-featured-text h2,
  .news-featured-card:nth-child(2) .news-featured-text h2 {
    font-size: 1.2rem;
  }
}

@media (min-width: 64em) {
  .timeline-mobile {
    display: none;
  }

  .timeline-desktop {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem 5rem;
  }

  .timeline-desktop-column.is-left {
    padding-right: 2rem;
  }

  .timeline-desktop-column.is-right {
    padding-top: 4rem;
    padding-left: 2rem;
  }

  .timeline-card-title {
    font-size: 1.125rem;
  }

  .timeline-richtext {
    font-size: 0.94rem;
    line-height: 1.75;
  }
}

@media (min-width: 80em) {
  .timeline-desktop {
    gap: 4rem 7rem;
  }
}
