:root {
  --navy-950: #07162d;
  --navy-900: #071c3b;
  --navy-800: #102d52;
  --navy-700: #234568;
  --blue-france: #1a3f72;
  --red-france: #b32635;
  --red-dark: #8f1f2b;
  --gold: #b89b55;
  --gold-light: #ddcb98;
  --paper: #f6f4ef;
  --paper-deep: #ece8df;
  --white: #ffffff;
  --ink: #172033;
  --text: #3f4858;
  --muted: #687184;
  --line: #d8d9dc;
  --line-dark: #b9bdc5;
  --green: #276749;
  --amber: #9a5a0a;
  --gray: #646b77;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, Arial, Helvetica, system-ui, sans-serif;
  --shadow: 0 12px 34px rgba(7, 28, 59, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  overflow: visible;
  clip: auto;
  color: var(--white);
  background: var(--navy-900);
}

.container {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.republican-ribbon {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 4px;
}

.republican-ribbon i:nth-child(1) {
  background: #193f73;
}

.republican-ribbon i:nth-child(2) {
  background: #ffffff;
}

.republican-ribbon i:nth-child(3) {
  background: #c42b3c;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(7, 28, 59, .05);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(100% - 48px, 1280px);
  min-height: 82px;
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  color: var(--navy-900);
  text-decoration: none;
}

.brand-emblem {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--red-france);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.election-countdown {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.election-countdown b {
  color: var(--navy-900);
  font-weight: 800;
}

.site-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  flex: 1;
  gap: 18px 34px;
  font-size: 13px;
  font-weight: 700;
}

.site-nav-group {
  display: grid;
  gap: 9px;
}

.site-nav-row {
  display: flex;
  align-items: center;
  gap: 12px 18px;
}

.site-nav-institutional {
  justify-items: end;
  padding-left: 24px;
  border-left: 1px solid var(--line-dark);
}

.site-nav-institutional .site-nav-row {
  justify-content: flex-end;
}

.site-nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav sup {
  top: -.35em;
  margin-left: 1px;
  color: var(--red-france);
  font-family: var(--serif);
  font-size: 9px;
}

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

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

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--navy-900);
  border-radius: 2px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-900);
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  border-bottom: 6px solid var(--red-france);
}

.hero::before {
  content: "2027";
  position: absolute;
  top: -80px;
  right: 2%;
  color: rgba(255, 255, 255, .025);
  font-family: var(--serif);
  font-size: 300px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
  padding: 28px 0 20px;
}

.hero-masthead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: center;
  gap: 64px;
}

.hero-copy {
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red-france);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
}

.hero .eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--red-france);
}

.hero-title {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-deck {
  max-width: 820px;
  margin: 12px 0 6px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.28;
}

.hero-subtitle {
  max-width: 770px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
}

.hero-seal {
  display: grid;
  justify-items: center;
  align-content: center;
  width: 190px;
  min-height: 218px;
  padding: 18px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--gold-light);
  box-shadow: 12px 12px 0 rgba(184, 155, 85, .16);
}

.hero-seal img {
  width: 136px;
  height: 136px;
  object-fit: contain;
}

.hero-seal span {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.hero-actions,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.button,
.filter-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--red-france);
  border-color: var(--red-france);
}

.button-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .38);
  background: transparent;
}

.button-ghost:hover {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--white);
}

.button-dark,
.filter-row a {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.button-dark:hover,
.filter-row a:hover {
  background: var(--blue-france);
  border-color: var(--blue-france);
}

.candidate-directory {
  padding-top: 34px;
  padding-bottom: 64px;
}

.candidate-order-note {
  margin: 0;
  padding: 13px 16px;
  color: var(--navy-900);
  background: var(--white);
  border-left: 4px solid var(--red-france);
  font-family: var(--serif);
  font-size: 17px;
}

.candidate-controls {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 36px;
  margin: 28px 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.candidate-control-group {
  min-width: 0;
}

.candidate-control-label {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.candidate-controls .filter-row {
  margin-top: 8px;
}

.filter-row a.active {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--navy-900);
}

.candidate-sort-row {
  display: inline-flex;
  margin-top: 8px;
  border: 1px solid var(--navy-900);
}

.candidate-sort-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 14px;
  color: var(--navy-900);
  background: var(--white);
  border-right: 1px solid var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.candidate-sort-row a:last-child {
  border-right: 0;
}

.candidate-sort-row a:hover,
.candidate-sort-row a.active {
  color: var(--white);
  background: var(--navy-900);
}

.hero-carousel {
  position: relative;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.carousel-heading {
  display: grid;
  gap: 2px;
  margin-bottom: 15px;
}

.carousel-heading span {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
}

.carousel-heading small {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.hero-carousel-viewport {
  overflow: hidden;
}

.hero-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 450ms ease;
  will-change: transform;
}

.hero-candidate-card {
  flex: 0 0 296px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 3px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.hero-candidate-card a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  height: 145px;
  color: var(--ink);
  text-decoration: none;
}

.hero-candidate-photo-wrap {
  position: relative;
  height: 100%;
}

.hero-candidate-photo-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: var(--red-france);
}

.hero-candidate-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  background: var(--paper-deep);
  filter: saturate(.82) contrast(1.04);
}

.hero-candidate-info {
  align-self: center;
  padding: 14px 15px;
}

.hero-candidate-info h3 {
  margin: 0 0 9px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.2;
}

.candidate-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 8px;
  color: var(--white);
  background: var(--navy-700);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 800;
}

.candidate-political-family {
  display: block;
  margin: -4px 0 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.candidate-status-declared {
  background: var(--green);
}

.candidate-status-assumed {
  background: var(--amber);
}

.candidate-status-primary_candidate {
  background: var(--blue-france);
}

.candidate-status-conditional {
  background: #87531b;
}

.candidate-status-media_pseudo_candidate {
  background: var(--blue-france);
}

.candidate-status-withdrawn,
.candidate-status-historical {
  background: var(--gray);
}

.candidate-status-unclear,
.candidate-status-not_candidate {
  background: #756f68;
}

.candidate-current-contest {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.candidate-score {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.carousel-controls {
  position: absolute;
  top: 25px;
  right: 0;
  display: flex;
  gap: 7px;
}

.carousel-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.carousel-controls button:hover {
  color: var(--navy-900);
  background: var(--white);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.carousel-dots i {
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, .32);
}

.carousel-dots i.active {
  background: var(--red-france);
}

.hero-empty {
  margin-top: 34px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .25);
}

.search-band {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quick-search {
  display: grid;
  grid-template-columns: 250px minmax(200px, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 18px 20px;
}

.quick-search label {
  display: grid;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.quick-search label small {
  margin-top: 3px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  outline: none;
}

input,
select {
  min-height: 44px;
  padding: 10px 12px;
}

textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-france);
  box-shadow: 0 0 0 3px rgba(26, 63, 114, .12);
}

.page-hero {
  padding-top: 42px;
  padding-bottom: 70px;
}

.meeting-matrix-page {
  padding-top: 8px;
  padding-bottom: 70px;
}

.meeting-matrix-hero {
  padding-bottom: 30px;
}

.meeting-matrix-guidance {
  margin: 0 0 12px;
  padding: 11px 14px;
  color: var(--navy-900);
  background: rgba(26, 63, 114, .06);
  border-left: 4px solid var(--blue-france);
  font-size: 14px;
  font-weight: 800;
}

.meeting-matrix-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.meeting-matrix-intro article,
.meeting-matrix-method,
.meeting-matrix-filters,
.meeting-matrix-board-section,
.meeting-timeline-section,
.meeting-matrix-table-section {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy-900);
}

.meeting-matrix-intro article,
.meeting-matrix-method,
.meeting-matrix-board-section,
.meeting-timeline-section,
.meeting-matrix-table-section {
  padding: 22px;
}

.meeting-matrix-intro h2,
.meeting-matrix-method h2 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 25px;
}

.meeting-matrix-intro pre {
  overflow-x: auto;
  padding: 12px;
  background: var(--paper);
  border-left: 3px solid var(--red-france);
  font-size: 12px;
}

.meeting-matrix-method {
  margin-bottom: 24px;
}

.meeting-matrix-method > p,
.meeting-matrix-method > ul {
  max-width: 980px;
}

.meeting-matrix-method ul {
  margin: 16px 0 20px;
  padding-left: 22px;
}

.meeting-matrix-method li + li {
  margin-top: 9px;
}

.meeting-matrix-method .method-note {
  margin-top: 16px;
  padding: 12px 14px;
  color: var(--navy-900);
  background: #f5f6f7;
  border-left: 4px solid var(--blue-france);
  font-weight: 700;
}

.meeting-matrix-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
  padding: 18px;
}

.meeting-matrix-filters label span {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.meeting-matrix-filters input,
.meeting-matrix-filters select {
  min-height: 40px;
}

.meeting-matrix-toggles {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 12px 18px;
}

.meeting-matrix-toggles label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
}

.meeting-matrix-toggles input {
  width: 18px;
  min-height: 18px;
}

.meeting-matrix-toggles button {
  min-height: 34px;
  padding: 7px 11px;
  color: var(--navy-900);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  cursor: pointer;
}

.meeting-matrix-board-section,
.meeting-timeline-section,
.meeting-matrix-table-section {
  margin-bottom: 28px;
}

.meeting-matrix-board-wrap {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: clamp(360px, 46vw, 560px) auto;
  gap: 10px;
  overflow: visible;
}

.meeting-matrix-y-label,
.meeting-matrix-x-label {
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.meeting-matrix-y-label {
  display: grid;
  place-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.meeting-matrix-x-label {
  grid-column: 2;
  text-align: center;
}

.meeting-matrix-board {
  position: relative;
  min-height: 360px;
  overflow: visible;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), var(--navy-900) calc(50% - 1px), var(--navy-900) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), var(--navy-900) calc(50% - 1px), var(--navy-900) calc(50% + 1px), transparent calc(50% + 1px)),
    #fbfbfa;
  border: 1px solid var(--line-dark);
}

.meeting-quadrant {
  position: absolute;
  width: 50%;
  height: 50%;
  padding: 12px;
  color: rgba(7, 28, 59, .72);
  font-size: 11px;
  font-weight: 900;
  pointer-events: none;
  text-transform: uppercase;
  overflow: hidden;
}

.quadrant-top-left {
  top: 0;
  left: 0;
  background: rgba(180, 104, 24, .1);
}

.quadrant-top-right {
  top: 0;
  right: 0;
  background: rgba(47, 122, 80, .1);
  text-align: right;
}

.meeting-ideal-zone {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 25%;
  height: 25%;
  min-width: 118px;
  min-height: 72px;
  padding: 10px;
  color: rgba(28, 91, 58, .86);
  background: rgba(47, 122, 80, .045);
  border: 1px dashed rgba(28, 91, 58, .58);
  pointer-events: none;
  text-align: center;
}

.meeting-ideal-zone span {
  max-width: 120px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
}

.quadrant-bottom-left {
  bottom: 0;
  left: 0;
  background: rgba(179, 38, 53, .08);
}

.quadrant-bottom-right {
  right: 0;
  bottom: 0;
  background: rgba(26, 63, 114, .08);
  text-align: right;
}

.meeting-matrix-point {
  position: absolute;
  left: var(--x);
  bottom: var(--y);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  background: var(--red-france);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(7, 28, 59, .32);
  cursor: pointer;
  transform: translate(-50%, 50%);
  text-decoration: none;
}

.meeting-matrix-point[hidden] {
  display: none !important;
}

.meeting-matrix-point::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
}

.meeting-matrix-point.selected {
  width: 34px;
  height: 34px;
  background: var(--navy-900);
  box-shadow: 0 0 0 4px rgba(179, 38, 53, .18);
}

.meeting-point-label {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .25);
}

.meeting-matrix-point.average {
  background: transparent;
  border: 0;
  box-shadow: none;
  width: 26px;
  height: 26px;
  border-radius: 0;
}

.meeting-matrix-point.average .average-marker {
  display: block;
  width: 22px;
  height: 22px;
  background: var(--blue-france);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px rgba(7, 28, 59, .32);
  transform: rotate(45deg);
}

.meeting-matrix-point.average-family .average-marker {
  background: var(--green);
}

.meeting-matrix-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 40;
  width: 300px;
  max-width: min(300px, calc(100vw - 40px));
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-top: 3px solid var(--navy-900);
  box-shadow: var(--shadow);
  font-size: 12px;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity .16s ease, transform .16s ease;
}

.meeting-matrix-tooltip strong {
  display: block;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 16px;
}

.meeting-matrix-point:hover,
.meeting-matrix-point:focus-visible {
  z-index: 80;
}

.meeting-matrix-point:hover .meeting-matrix-tooltip,
.meeting-matrix-point:focus-visible .meeting-matrix-tooltip {
  opacity: 1;
  transform: translate(-50%, -10px);
}

.meeting-timeline-chart {
  min-height: 320px;
  overflow-x: auto;
}

.meeting-timeline-chart svg {
  min-width: 720px;
  width: 100%;
  height: 320px;
}

.meeting-timeline-empty {
  margin: 0;
  padding: 18px;
  background: var(--paper);
  border-left: 4px solid var(--red-france);
}

.meeting-comparison-table th {
  cursor: pointer;
}

.meeting-comparison-table tr.is-hidden,
.meeting-matrix-point.is-hidden {
  display: none;
}

.meeting-comparison-table td:nth-child(n+4):nth-child(-n+11) {
  text-align: right;
}

.profile-hero {
  position: relative;
  padding: 56px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero::before,
.profile-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 9px;
  background: var(--blue-france);
  border-right: 3px solid var(--white);
  box-shadow: 4px 0 0 var(--red-france);
}

.page-hero h1,
.profile-hero h1 {
  max-width: 940px;
  margin: 0 0 12px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero p,
.profile-hero p {
  max-width: 790px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 54px;
  margin-bottom: 54px;
}

.intro-panel {
  position: relative;
  padding: 26px 28px 28px;
  background: var(--white);
  border-top: 4px solid var(--navy-900);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.intro-panel:nth-child(2) {
  border-top-color: var(--red-france);
}

.intro-panel h2,
.mode-panel h2 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
}

.intro-panel p:last-child,
.mode-panel p:last-child,
.content-card p:last-child {
  margin-bottom: 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 58px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-dark);
}

.section-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.2;
}

.section-heading a {
  color: var(--red-france);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.section-heading a::after {
  content: " →";
}

.card-grid,
.candidate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.content-card,
.candidate-card,
.content-block,
.mode-panel,
.poll-chart,
.source-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.content-card,
.content-block {
  position: relative;
  padding: 22px;
}

.content-card {
  border-top: 3px solid var(--navy-800);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.content-card:hover {
  border-top-color: var(--red-france);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.content-card span,
.mode-panel span {
  display: block;
  color: var(--red-france);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.content-card h2,
.content-card h3,
.candidate-card h3 {
  margin: 8px 0 10px;
  color: var(--navy-900);
  font-family: var(--serif);
  line-height: 1.25;
}

.content-card h2 {
  font-size: 23px;
}

.content-card h3,
.candidate-card h3 {
  font-size: 21px;
}

.content-card a,
.candidate-card a,
.mode-panel {
  text-decoration: none;
}

.candidate-card {
  position: relative;
  overflow: hidden;
}

.candidate-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--red-france);
}

.candidate-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper-deep);
  filter: saturate(.82) contrast(1.03);
}

.candidate-card-body {
  padding: 19px 20px 21px;
}

.score-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 9px;
  color: var(--white);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 800;
}

.score-high {
  background: var(--green);
}

.score-good {
  background: #347255;
}

.score-mid {
  background: var(--amber);
}

.score-low {
  background: #87531b;
}

.score-risk {
  background: var(--red-france);
}

.score-empty {
  background: var(--gray);
}

.matrix-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy-900);
  border-radius: 2px;
  box-shadow: 0 8px 28px rgba(7, 28, 59, .05);
}

.matrix-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.matrix-table th,
.matrix-table td {
  padding: 13px 15px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}

.matrix-table th {
  position: sticky;
  top: 0;
  color: var(--white);
  background: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.matrix-table tbody tr:nth-child(even) {
  background: #f7f7f5;
}

.matrix-table tbody tr:hover {
  background: #edf1f6;
}

.matrix-table th:first-child,
.matrix-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
}

.matrix-table td:first-child {
  background: inherit;
  font-family: var(--serif);
  font-weight: 700;
}

.matrix-table th:first-child {
  z-index: 3;
  background: var(--navy-900);
}

.matrix-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  margin-bottom: 12px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.matrix-summary a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 12px 18px;
  color: var(--navy-900);
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.matrix-summary a:last-child {
  border-right: 0;
}

.matrix-summary a:hover {
  color: var(--red-france);
  background: var(--white);
}

.matrix-summary span {
  color: var(--red-france);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
}

.matrix-section {
  padding-top: 46px;
  padding-bottom: 54px;
  scroll-margin-top: 100px;
}

.matrix-section-heading {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(320px, 1fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.matrix-section-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.15;
}

.matrix-section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.theme-directory {
  border-top: 3px solid var(--navy-900);
}

.theme-directory-row {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.6fr);
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}

.theme-directory-row:nth-child(even) {
  background: rgba(255, 255, 255, .52);
}

.theme-root-link {
  display: grid;
  gap: 3px;
  color: var(--navy-900);
  text-decoration: none;
}

.theme-root-link strong {
  font-family: var(--serif);
  font-size: 19px;
}

.theme-root-link span {
  color: var(--muted);
  font-size: 12px;
}

.theme-root-link:hover strong,
.theme-child-links a:hover {
  color: var(--red-france);
}

.theme-child-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
}

.theme-child-links a {
  color: var(--blue-france);
  font-size: 13px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: #aebbd0;
  text-underline-offset: 3px;
}

.theme-no-child {
  color: var(--muted);
  font-size: 11px;
  font-style: italic;
}

.matrix-global-band {
  background: #eceff3;
  border-top: 1px solid #d3d8df;
  border-bottom: 1px solid #d3d8df;
}

.thematic-matrix {
  min-width: max(760px, calc(210px + (var(--theme-count) * 108px)));
  table-layout: fixed;
}

.thematic-matrix th:first-child,
.thematic-matrix td:first-child {
  width: 210px;
  min-width: 210px;
}

.thematic-matrix th:not(:first-child),
.thematic-matrix td:not(:first-child) {
  width: 108px;
  padding-right: 8px;
  padding-left: 8px;
  text-align: center;
}

.thematic-matrix th a {
  color: var(--white);
  text-decoration: none;
}

.thematic-matrix th a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.matrix-score,
.matrix-score-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 32px;
  color: var(--white);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.matrix-score:hover {
  outline: 3px solid rgba(7, 28, 59, .16);
}

.matrix-score-empty {
  color: var(--muted);
  background: #e3e5e8;
}

.matrix-caption {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.candidate-matrix-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 3px solid var(--navy-900);
}

.candidate-matrix-directory a {
  display: grid;
  gap: 3px;
  min-height: 68px;
  padding: 13px 15px;
  color: var(--navy-900);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.candidate-matrix-directory a:nth-child(3n) {
  border-right: 0;
}

.candidate-matrix-directory a:hover {
  color: var(--red-france);
  background: var(--white);
}

.candidate-matrix-directory strong {
  font-family: var(--serif);
  font-size: 17px;
}

.candidate-matrix-directory span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.matrix-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 24px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.matrix-page-nav a,
.matrix-parent-link {
  color: var(--blue-france);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.matrix-page-nav a::before {
  content: "← ";
  color: var(--red-france);
}

.matrix-parent-link {
  display: inline-block;
  margin-top: 14px;
}

.matrix-subthemes {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.matrix-subthemes span {
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.matrix-subthemes a {
  color: var(--blue-france);
  font-size: 13px;
  font-weight: 750;
}

.theme-detail-table {
  min-width: 900px;
}

.candidate-theme-table {
  min-width: 920px;
}

.candidate-theme-table .theme-child-row td:first-child {
  padding-left: 34px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 13px;
}

.candidate-theme-table .theme-root-row td {
  border-top: 2px solid #c5cad2;
}

.matrix-muted {
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 64px;
  margin-bottom: 68px;
  border: 1px solid var(--line);
}

.mode-panel {
  min-height: 220px;
  padding: 28px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
}

.mode-panel:last-child {
  border-right: 0;
}

.mode-panel:hover {
  background: #f0f3f7;
}

.mode-panel.accent {
  color: rgba(255, 255, 255, .78);
  background: var(--navy-900);
}

.mode-panel.accent h2 {
  color: var(--white);
}

.mode-panel.accent span {
  color: var(--gold-light);
}

.profile-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 44px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
}

.profile-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper-deep);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  box-shadow: 12px 12px 0 var(--paper-deep);
  filter: saturate(.82);
}

.score-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--navy-900);
  font-weight: 700;
}

.profile-metrics {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.profile-summary {
  max-width: 780px;
  margin-top: 18px;
  padding: 15px 18px;
  background: #f5f6f7;
  border-left: 4px solid var(--red-france);
}

.profile-current-contest {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-summary span {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-900);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-hero .profile-summary p {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.profile-metrics .score-line {
  margin-top: 0;
  padding-right: 16px;
  border-right: 1px solid var(--line-dark);
}

.rank-line {
  display: grid;
  align-content: center;
  min-width: 112px;
}

.rank-line span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.rank-line strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 18px;
}

.profile-jump-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.profile-jump-nav span {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-jump-nav a {
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  text-decoration-color: var(--red-france);
  text-underline-offset: 4px;
}

.profile-jump-nav a:hover,
.profile-jump-nav a:focus-visible {
  color: var(--red-france);
}

.candidacy-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.candidacy-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 150px;
  width: 1px;
  background: var(--line-dark);
}

.candidacy-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 42px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.candidacy-timeline li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 145px;
  width: 11px;
  height: 11px;
  background: var(--white);
  border: 3px solid var(--red-france);
  border-radius: 50%;
}

.candidacy-source-reference {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}

.candidacy-source-links {
  display: inline-flex;
  gap: 5px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.candidacy-source-links a,
a.candidacy-source-links {
  color: var(--blue-france);
  font-weight: 800;
  text-underline-offset: 3px;
}

.candidacy-timeline time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.candidacy-timeline li > div {
  min-width: 0;
}

.candidacy-timeline li > div > span {
  display: block;
  color: var(--red-france);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.candidacy-timeline h3 {
  margin: 5px 0 7px;
  font-size: 20px;
}

.candidacy-timeline .markdown-content p {
  margin: 6px 0;
}

.candidacy-timeline li > div > a {
  display: inline-block;
  margin-top: 6px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration-color: var(--red-france);
  text-underline-offset: 4px;
}

.support-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.support-row {
  display: grid;
  grid-template-columns: minmax(170px, .7fr) minmax(0, 1.6fr) auto;
  gap: 22px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.support-row strong,
.support-row time {
  display: block;
}

.support-row strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 18px;
}

.support-row time {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.support-row p {
  margin: 0;
}

.support-row a {
  color: var(--red-france);
  font-size: 11px;
  font-weight: 800;
}

.meeting-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.meeting-row {
  display: grid;
  grid-template-columns: minmax(145px, .55fr) minmax(0, 1.8fr);
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.meeting-row-meta {
  display: grid;
  align-content: start;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
}

.meeting-row-meta time {
  color: var(--red-france);
  font-weight: 800;
}

.meeting-row h3 {
  margin: 0 0 7px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 22px;
}

.meeting-row p {
  margin: 0;
}

.meeting-row-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 12px;
}

.meeting-row-links a,
.meeting-source-note a,
.meeting-facts a:not(.button) {
  color: var(--red-france);
  font-size: 11px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.meeting-hero a {
  color: inherit;
  text-underline-offset: 4px;
}

.meeting-analysis {
  padding-top: 48px;
  padding-bottom: 58px;
}

.meeting-method-callout {
  margin: 0 0 16px;
  padding: 14px 18px;
  color: var(--navy-900);
  background: #edf1f6;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
}

.meeting-method-callout strong {
  font-family: var(--serif);
  font-size: 16px;
}

.meeting-method-callout a {
  color: var(--red-france);
  font-weight: 800;
  text-underline-offset: 4px;
}

.meeting-source-note {
  display: grid;
  gap: 3px;
  margin-bottom: 34px;
  padding: 16px 18px;
  background: var(--white);
  border-left: 4px solid var(--red-france);
}

.meeting-source-note strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 18px;
}

.meeting-source-note span {
  color: var(--muted);
  font-size: 12px;
}

.meeting-facts dl {
  margin: 0 0 22px;
}

.meeting-facts dl > div {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.meeting-facts dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.meeting-facts dd {
  margin: 3px 0 0;
  color: var(--navy-900);
  font-weight: 700;
}

.meeting-facts dd a {
  display: block;
  margin-top: 5px;
}

.side-content a.meeting-resource-link {
  margin: 0 0 10px;
  padding: 11px 13px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--navy-900);
  text-align: center;
  text-decoration: none;
}

.side-content a.meeting-resource-link:hover,
.side-content a.meeting-resource-link:focus-visible {
  color: var(--white);
  background: var(--navy-900);
}

.side-content a.button-dark,
.side-content a.meeting-video-link {
  color: var(--white);
}

.side-content a.button-dark:hover,
.side-content a.button-dark:focus-visible,
.side-content a.meeting-video-link:hover,
.side-content a.meeting-video-link:focus-visible {
  color: var(--white);
}

.meeting-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 22px;
}

.meeting-score-grid a {
  display: grid;
  align-content: space-between;
  min-width: 0;
  min-height: 96px;
  padding: 12px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line-dark);
  text-decoration: none;
}

.meeting-score-grid a:hover,
.meeting-score-grid a:focus-visible {
  border-color: var(--red-france);
}

.meeting-score-grid span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.meeting-score-grid strong {
  font-family: var(--serif);
  font-size: 26px;
}

.meeting-score-grid small {
  margin-left: 2px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
}

.meeting-notes-help {
  position: relative;
  display: inline-flex;
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: help;
  outline: none;
}

.meeting-notes-help > span {
  border-bottom: 1px dotted var(--red-france);
}

.meeting-notes-tooltip {
  position: absolute;
  right: 0;
  top: calc(100% + 9px);
  z-index: 20;
  width: min(520px, calc(100vw - 42px));
  max-height: min(620px, calc(100vh - 120px));
  overflow-y: auto;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-top: 4px solid var(--navy-900);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  text-transform: none;
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease;
}

.meeting-notes-tooltip p {
  margin: 0 0 11px;
}

.meeting-notes-tooltip p:last-child {
  margin-bottom: 0;
}

.meeting-notes-help:hover .meeting-notes-tooltip,
.meeting-notes-help:focus .meeting-notes-tooltip,
.meeting-notes-help:focus-within .meeting-notes-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.meeting-final-score-panel {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.meeting-final-score-labels,
.meeting-final-score-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.meeting-final-score-labels {
  margin-bottom: 8px;
}

.meeting-final-score-labels span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.meeting-final-score-grid a {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 14px 10px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line-dark);
  text-decoration: none;
}

.meeting-final-score-grid a:hover,
.meeting-final-score-grid a:focus-visible {
  border-color: var(--red-france);
}

.meeting-final-score-grid strong {
  font-family: var(--serif);
  font-size: 30px;
}

.meeting-final-score-grid small {
  margin-left: 2px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
}

.markdown-content {
  min-width: 0;
}

.markdown-content > :first-child {
  margin-top: 0;
}

.markdown-content > :last-child {
  margin-bottom: 0;
}

.markdown-content p,
.markdown-content li {
  overflow-wrap: anywhere;
}

.markdown-content ul,
.markdown-content ol {
  display: grid;
  gap: 7px;
  margin: 12px 0 18px;
  padding-left: 24px;
}

.markdown-content h3,
.markdown-content h4,
.markdown-content h5 {
  margin: 22px 0 8px;
  color: var(--navy-900);
  font-family: var(--serif);
  line-height: 1.3;
}

.markdown-content h3 {
  font-size: 22px;
}

.markdown-content h4 {
  font-size: 19px;
}

.markdown-content h5 {
  font-size: 17px;
}

.markdown-content blockquote {
  margin: 18px 0;
  padding: 10px 16px;
  color: var(--navy-900);
  background: var(--white);
  border-left: 3px solid var(--gold);
}

.markdown-content pre {
  max-width: 100%;
  padding: 14px;
  overflow-x: auto;
  background: var(--navy-950);
  color: var(--white);
}

.markdown-content code {
  padding: 1px 4px;
  background: var(--paper-deep);
  font-size: .9em;
}

.markdown-content pre code {
  padding: 0;
  background: transparent;
}

.markdown-content a {
  color: var(--red-france);
  font-weight: 700;
  text-underline-offset: 3px;
}

.markdown-references {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.markdown-references h3 {
  margin-top: 0;
  font-size: 20px;
}

.markdown-references ol {
  gap: 12px;
}

.markdown-references li {
  scroll-margin-top: 110px;
}

.markdown-references a span,
.markdown-references a small {
  display: block;
}

.markdown-references a small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 400;
  overflow-wrap: anywhere;
}

.markdown-reference-call {
  scroll-margin-top: 110px;
}

.transcript-page {
  max-width: 960px;
  padding-top: 46px;
  padding-bottom: 70px;
}

.transcript-notice {
  display: grid;
  gap: 4px;
  margin-bottom: 34px;
  padding: 17px 20px;
  background: var(--white);
  border-left: 4px solid var(--red-france);
}

.transcript-notice strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 19px;
}

.transcript-notice span {
  color: var(--muted);
  font-size: 12px;
}

.transcript-notice a,
.transcript-back {
  color: var(--red-france);
  font-weight: 800;
  text-underline-offset: 4px;
}

.transcript-content {
  font-size: 16px;
  line-height: 1.8;
}

.transcript-back {
  display: inline-block;
  margin-top: 36px;
}

.meeting-method-band {
  padding: 48px 0 58px;
  color: var(--white);
  background: var(--navy-900);
  scroll-margin-top: 96px;
}

#coherence-portee {
  scroll-margin-top: 112px;
}

.meeting-method-band h2 {
  max-width: 760px;
  margin: 5px 0 26px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 34px;
}

.meeting-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: meeting-method;
}

.meeting-method-grid li {
  min-width: 0;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, .35);
  border-right: 1px solid rgba(255, 255, 255, .2);
  counter-increment: meeting-method;
}

.meeting-method-grid li::before {
  content: "0" counter(meeting-method);
  display: block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 20px;
}

.meeting-method-grid strong,
.meeting-method-grid span {
  display: block;
}

.meeting-method-grid strong {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 19px;
}

.meeting-method-grid span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.55;
}

.main-content h2[id],
.side-content h2[id],
#sources {
  scroll-margin-top: 112px;
}

.main-content {
  min-width: 0;
  max-width: 900px;
  padding-top: 42px;
  padding-bottom: 54px;
}

.main-content h2,
.side-content h2 {
  margin: 34px 0 12px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.25;
}

.main-content h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 8px;
  background: var(--red-france);
}

.main-content h3 {
  color: var(--navy-900);
  font-family: var(--serif);
}

.side-content {
  align-self: start;
  margin-top: 42px;
  padding: 20px;
  background: var(--white);
  border-top: 4px solid var(--navy-900);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.side-content h2:first-child {
  margin-top: 0;
}

.side-content a {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-france);
  font-weight: 700;
}

blockquote {
  position: relative;
  margin: 24px 0;
  padding: 24px 28px 24px 34px;
  color: var(--navy-900);
  background: var(--white);
  border-left: 5px solid var(--red-france);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.45;
}

.notice {
  padding: 14px 16px;
  color: #65410f;
  background: #fff8e8;
  border: 1px solid #e4cd98;
  border-left: 4px solid var(--gold);
  border-radius: 2px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list a {
  padding: 7px 11px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.tag-list a:hover {
  color: var(--white);
  background: var(--navy-900);
}

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

.poll-list-count {
  margin: 0;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.poll-list {
  gap: 9px;
}

.poll-list .content-card {
  padding: 12px 14px;
  border-top-width: 2px;
}

.poll-list .content-card span {
  font-size: 10px;
  line-height: 1.25;
}

.poll-list .content-card h2 {
  margin: 5px 0 0;
  font-size: 17px;
  line-height: 1.22;
}

.poll-list .content-card p {
  margin: 5px 0 0;
  font-size: 13px;
  line-height: 1.35;
}

.poll-list .content-card .poll-card-metrics {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.poll-list .content-card p:empty {
  display: none;
}

.poll-chart {
  padding: 20px;
  border-top: 4px solid var(--navy-900);
}

.poll-viz {
  position: relative;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy-900);
  border-radius: 3px;
}

.poll-viz-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.poll-viz-head h2 {
  margin: 3px 0 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.16;
}

.poll-viz-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.poll-viz-toggle,
.poll-card-compare {
  min-height: 30px;
  padding: 6px 10px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
}

.poll-viz-toggle:hover,
.poll-card-compare:hover,
.poll-viz-toggle[aria-pressed="true"] {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.poll-viz-status {
  min-height: 18px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.poll-viz-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 28, 59, .035), rgba(255, 255, 255, 0)),
    var(--paper);
  border: 1px solid var(--line);
}

.poll-viz-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.poll-viz-grid line {
  stroke: rgba(7, 28, 59, .11);
  stroke-width: 1;
}

.poll-viz-grid text,
.poll-viz-axis text {
  fill: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.poll-viz-axis line {
  stroke: rgba(7, 28, 59, .08);
  stroke-width: 1;
}

.poll-viz-band {
  opacity: .14;
  pointer-events: none;
}

.poll-viz-line {
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .8));
}

.poll-viz-point {
  cursor: pointer;
  transition: r 140ms ease, stroke-width 140ms ease;
}

.poll-viz-point:hover,
.poll-viz-point:focus {
  r: 8px;
  stroke-width: 4;
}

.poll-viz-empty {
  fill: var(--muted);
  font-size: 17px;
  font-weight: 800;
}

.poll-viz-tooltip {
  position: absolute;
  z-index: 4;
  width: min(270px, calc(100% - 16px));
  padding: 10px 11px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
  pointer-events: none;
}

.poll-viz-tooltip strong,
.poll-viz-tooltip span {
  display: block;
}

.poll-viz-tooltip strong {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 15px;
}

.poll-viz-tooltip span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.poll-viz-meta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(120px, .55fr);
  gap: 10px;
  margin-top: 10px;
}

.poll-viz-meta-card {
  padding: 10px 11px;
  background: #f7f8fa;
  border: 1px solid var(--line);
}

.poll-viz-nav-card {
  appearance: none;
  display: block;
  width: 100%;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.poll-viz-nav-card:not(:disabled):hover {
  background: var(--white);
  border-color: var(--navy-900);
}

.poll-viz-nav-card:disabled {
  cursor: default;
  opacity: .55;
}

.poll-viz-meta span,
.poll-viz-meta strong,
.poll-viz-meta small {
  display: block;
}

.poll-viz-meta span {
  color: var(--red-france);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.poll-viz-meta strong {
  margin-top: 4px;
  color: var(--navy-900);
  font-size: 13px;
  line-height: 1.25;
}

.poll-viz-version-count {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}

.poll-viz-meta small {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.poll-viz-panel {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.poll-viz-panel h3 {
  margin: 0 0 5px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.15;
}

.poll-viz-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.poll-viz-filter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-content: flex-start;
  max-height: 132px;
  overflow: auto;
  padding-right: 4px;
}

.poll-viz-picker {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 12px;
}

.poll-viz-picker-column {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
}

.poll-viz-picker-column > span {
  color: var(--red-france);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.poll-viz-filter {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 27px;
  padding: 4px 7px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--series-color);
  cursor: pointer;
  text-align: left;
}

.poll-viz-filter:hover {
  border-color: var(--navy-900);
}

.poll-viz-filter.is-active {
  background: #f8fbff;
  box-shadow: inset 0 -2px 0 rgba(26, 63, 114, .12);
}

.poll-viz-filter.is-reference.is-available {
  background: #f8fbff;
}

.poll-viz-filter i {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--series-color);
  border-radius: 50%;
}

.poll-viz-filter strong {
  color: var(--navy-900);
  font-size: 11px;
  line-height: 1.1;
}

.poll-viz-filter strong small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.05;
}

.poll-viz-filter em {
  padding: 2px 4px;
  color: var(--blue-france);
  background: #eef3fb;
  border: 1px solid #d3dce8;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.poll-viz-filter > span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-left: auto;
  color: var(--navy-900);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.poll-viz-picker-empty {
  margin: 0;
  padding: 8px 9px;
  color: var(--muted);
  background: var(--paper);
  border: 1px dashed var(--line-dark);
  font-size: 11px;
}

.poll-viz-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.poll-viz-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.poll-viz-legend-item i {
  width: 18px;
  height: 3px;
  background: var(--series-color);
}

.poll-viz-legend-item.is-muted {
  opacity: .55;
}

.poll-viz-legend-item.is-muted i {
  background: repeating-linear-gradient(
    90deg,
    var(--series-color) 0 4px,
    transparent 4px 7px
  );
}

.poll-competition {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.poll-competition span {
  color: var(--red-france);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.poll-competition h3 {
  margin: 4px 0 6px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.18;
}

.poll-competition p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.poll-competition-help {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-france);
}

.poll-competition-help strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.15;
}

.poll-competition-help p {
  font-size: 10px;
}

.poll-competition-help b {
  color: var(--navy-900);
}

.poll-competition-subtable + .poll-competition-subtable,
.poll-competition-global {
  margin-top: 16px;
}

.poll-competition-subtable h4 {
  margin: 0 0 5px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.2;
}

.poll-competition-subtable > p {
  margin: 0 0 8px;
}

.poll-competition-global {
  display: grid;
  gap: 16px;
}

.poll-competition-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 11px;
}

.poll-competition-table th,
.poll-competition-table td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.poll-competition-table th {
  color: var(--muted);
  background: #f7f8fa;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.poll-competition-table td:nth-child(2),
.poll-competition-table td:nth-child(3),
.poll-competition-table td:nth-child(4) {
  width: 86px;
  color: var(--navy-900);
  font-weight: 800;
  white-space: nowrap;
}

.poll-competition-table strong,
.poll-competition-table small,
.poll-competition-table b,
.poll-competition-table td span {
  display: block;
}

.poll-competition-table strong {
  color: var(--navy-900);
  font-size: 12px;
  line-height: 1.25;
}

.poll-competition-table small,
.poll-competition-table td span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.poll-competition-table b {
  color: var(--red-france);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
}

.poll-competition-empty {
  padding: 13px 14px;
  background: var(--white);
  border: 1px dashed var(--line-dark);
}

.poll-card-compare {
  margin-top: 7px;
}

.poll-viz:fullscreen {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto auto;
  gap: 10px;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  padding: 18px 22px;
  background: var(--white);
}

.poll-viz:fullscreen .poll-viz-frame {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.poll-viz:fullscreen .poll-viz-meta {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr) minmax(108px, .32fr);
  margin-top: 0;
}

.poll-viz:fullscreen .poll-viz-meta-card {
  padding: 8px 9px;
}

.poll-viz:fullscreen .poll-viz-meta-local small {
  display: none;
}

.poll-viz:fullscreen .poll-viz-panel {
  grid-template-columns: 300px minmax(0, 1fr);
  margin-top: 0;
  padding-top: 10px;
}

.poll-viz:fullscreen .poll-viz-picker {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}

.poll-viz:fullscreen .poll-viz-filter-grid {
  max-height: 82px;
}

.poll-viz:fullscreen .poll-viz-filter {
  align-items: flex-start;
  width: 138px;
  min-height: 42px;
}

.poll-viz:fullscreen .poll-viz-filter strong {
  display: -webkit-box;
  overflow: hidden;
  max-width: 102px;
  white-space: normal;
  line-height: 1.15;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.poll-viz:fullscreen .poll-competition {
  display: none;
}

.polls-page-hero {
  padding-bottom: 28px;
}

.polls-overview-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  align-items: start;
  margin-top: 18px;
}

.poll-row {
  display: grid;
  grid-template-columns: 150px minmax(120px, 1fr) 60px 100px;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
}

.poll-bar {
  height: 10px;
  overflow: hidden;
  background: var(--paper-deep);
}

.poll-bar i {
  display: block;
  height: 100%;
  background: var(--blue-france);
  border-right: 3px solid var(--red-france);
}

.source-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.source-list li {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
}

.form-shell {
  max-width: 800px;
  padding-top: 42px;
  padding-bottom: 56px;
}

.form-shell form {
  display: grid;
  gap: 17px;
  padding: 26px;
  background: var(--white);
  border-top: 4px solid var(--navy-900);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.form-shell label {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.alert {
  padding: 12px 16px;
  color: #701f2a;
  background: #fff0f1;
  border: 1px solid #e3afb5;
  border-left: 4px solid var(--red-france);
}

.declaration-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  border-bottom: 6px solid var(--red-france);
}

.declaration-hero::after {
  content: "RF";
  position: absolute;
  right: 3%;
  bottom: -65px;
  color: rgba(255, 255, 255, .035);
  font-family: var(--serif);
  font-size: 250px;
  font-weight: 700;
  line-height: 1;
}

.declaration-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: center;
  gap: 64px;
  padding-top: 68px;
  padding-bottom: 68px;
}

.declaration-hero .eyebrow {
  color: var(--gold-light);
}

.declaration-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 57px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.declaration-lead {
  max-width: 850px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .76);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
}

.declaration-hero img {
  width: 180px;
  height: 180px;
  padding: 12px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--gold-light);
  box-shadow: 12px 12px 0 rgba(184, 155, 85, .16);
}

.declaration {
  max-width: 1080px;
  padding-top: 62px;
  padding-bottom: 40px;
}

.declaration-preamble {
  max-width: 920px;
  margin: 0 auto 62px;
  padding: 30px 34px;
  background: var(--white);
  border-top: 4px solid var(--navy-900);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.declaration-preamble > span {
  display: block;
  margin-bottom: 14px;
  color: var(--red-france);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.declaration-preamble p {
  margin-top: 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
}

.declaration-preamble p:last-child {
  margin-bottom: 0;
}

.declaration-section {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 28px;
  padding: 50px 0;
  border-top: 1px solid var(--line-dark);
}

.declaration-number {
  margin: 0;
  color: var(--red-france);
  font-family: var(--serif);
  font-size: 45px;
  line-height: 1;
}

.declaration-section h2 {
  max-width: 800px;
  margin: 0 0 20px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.2;
}

.declaration-section p {
  max-width: 830px;
  font-size: 17px;
  line-height: 1.75;
}

.declaration-section blockquote {
  max-width: 790px;
  margin: 28px 0;
  font-size: 23px;
}

.declaration-section-dark {
  margin: 26px -48px;
  padding: 48px;
  color: rgba(255, 255, 255, .76);
  background: var(--navy-900);
  border-top: 5px solid var(--red-france);
}

.declaration-section-dark .declaration-number {
  color: var(--gold-light);
}

.declaration-section-dark h2 {
  color: var(--white);
}

.declaration-questions {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: questions;
}

.declaration-questions li {
  display: grid;
  grid-template-columns: minmax(220px, .75fr) minmax(0, 1.25fr);
  gap: 24px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, .17);
  counter-increment: questions;
}

.declaration-questions strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
}

.declaration-questions strong::before {
  content: counter(questions, decimal-leading-zero) ". ";
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 11px;
}

.declaration-questions span {
  font-size: 14px;
}

.declaration-closing {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  margin-top: 36px;
  padding: 34px;
  background: var(--white);
  border-top: 5px solid var(--navy-900);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.declaration-closing img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.declaration-closing p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.declaration-closing strong {
  display: block;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.3;
}

.declaration-closing span {
  display: block;
  margin-top: 13px;
  color: var(--red-france);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  margin-top: 64px;
  color: rgba(255, 255, 255, .78);
  background: var(--navy-950);
}

.site-footer .republican-ribbon {
  height: 5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  padding-top: 40px;
  padding-bottom: 30px;
}

.footer-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 620px;
}

.footer-identity img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  padding: 5px;
  background: var(--white);
}

.footer-identity strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 23px;
}

.footer-identity p {
  margin: 3px 0 0;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-content: center;
  gap: 7px 24px;
}

.site-footer nav a {
  color: var(--white);
  font-size: 12px;
  text-decoration: none;
}

.footer-disclaimer {
  padding-top: 15px;
  padding-bottom: 20px;
  color: rgba(255, 255, 255, .52);
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 11px;
  text-transform: uppercase;
}

@media (max-width: 1240px) {
  .site-header-inner {
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 24px;
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .site-nav {
    flex: 0 0 100%;
    order: 3;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    gap: 18px 32px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .container,
  .hero-inner,
  .site-header-inner {
    width: min(100% - 32px, 1180px);
  }

  .site-header-inner {
    min-height: 74px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand-emblem {
    width: 50px;
    height: 50px;
  }

  .meeting-matrix-intro,
  .meeting-matrix-filters {
    grid-template-columns: 1fr 1fr;
  }

  .meeting-matrix-board-wrap {
    overflow-x: auto;
  }

  .meeting-matrix-board {
    min-width: 680px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    order: 3;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 20px;
    width: 100%;
    padding: 14px 0 10px;
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 7px 0;
  }

  .site-nav-row {
    align-items: start;
    flex-wrap: wrap;
    gap: 2px 18px;
  }

  .hero-masthead {
    grid-template-columns: minmax(0, 1fr) 160px;
    gap: 30px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-deck {
    font-size: 23px;
  }

  .hero-seal {
    width: 155px;
    min-height: 190px;
    padding: 12px;
  }

  .hero-seal img {
    width: 112px;
    height: 112px;
  }

  .section-grid,
  .profile-grid,
  .content-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .candidate-controls {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .matrix-section-heading,
  .theme-directory-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .candidate-matrix-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .candidate-matrix-directory a:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .candidate-matrix-directory a:nth-child(2n) {
    border-right: 0;
  }

  .mode-panel {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mode-panel:last-child {
    border-bottom: 0;
  }

  .quick-search {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    max-width: 360px;
  }

  .side-content {
    margin-top: 0;
  }

  .declaration-hero-inner {
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 32px;
  }

  .declaration-hero h1 {
    font-size: 47px;
  }

  .declaration-hero img {
    width: 140px;
    height: 140px;
  }

  .declaration-section-dark {
    margin-right: -16px;
    margin-left: -16px;
    padding: 40px 32px;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-inner,
  .site-header-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .brand-emblem {
    width: 46px;
    height: 46px;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  .meeting-matrix-intro,
  .meeting-matrix-filters {
    grid-template-columns: 1fr;
  }

  .meeting-matrix-board-section,
  .meeting-timeline-section,
  .meeting-matrix-table-section,
  .meeting-matrix-method,
  .meeting-matrix-intro article {
    padding: 16px;
  }

  .meeting-matrix-y-label {
    display: none;
  }

  .meeting-matrix-board-wrap {
    grid-template-columns: 1fr;
  }

  .meeting-matrix-board,
  .meeting-timeline-chart svg {
    min-width: 640px;
  }

  .meeting-final-score-labels,
  .meeting-final-score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav-institutional {
    justify-items: start;
    padding-top: 14px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-nav-institutional .site-nav-row {
    justify-content: flex-start;
  }

  .site-nav-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .profile-metrics {
    gap: 9px;
  }

  .profile-metrics .score-line {
    padding-right: 10px;
  }

  .profile-jump-nav {
    gap: 10px 16px;
  }

  .support-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .candidacy-timeline::before {
    left: 5px;
  }

  .candidacy-timeline li {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-left: 28px;
  }

  .candidacy-timeline li::before {
    top: 23px;
    left: 0;
  }

  .meeting-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .meeting-row-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 14px;
  }

  .meeting-method-grid {
    grid-template-columns: 1fr;
  }

  .meeting-method-grid li {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .hero-inner {
    padding: 34px 0 28px;
  }

  .hero::before {
    display: none;
  }

  .hero-masthead {
    grid-template-columns: 1fr;
  }

  .hero-seal {
    display: none;
  }

  .hero .eyebrow {
    font-size: 10px;
  }

  .hero .eyebrow::before {
    width: 24px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-deck {
    margin-top: 12px;
    font-size: 20px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 17px;
    gap: 7px;
  }

  .hero-actions .button {
    min-height: 39px;
    padding: 8px 11px;
    font-size: 11px;
  }

  .hero-carousel {
    margin-top: 26px;
    padding-top: 16px;
  }

  .carousel-heading span {
    font-size: 18px;
  }

  .carousel-heading small {
    max-width: 230px;
  }

  .carousel-controls {
    top: 18px;
  }

  .hero-candidate-card {
    flex-basis: calc(100vw - 28px);
  }

  .hero-candidate-card a {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    height: 132px;
  }

  .hero-candidate-photo-wrap,
  .hero-candidate-photo {
    height: 100%;
  }

  .hero-candidate-photo {
    aspect-ratio: auto;
  }

  .hero-candidate-info {
    align-self: center;
    padding: 12px;
  }

  .hero-candidate-info h3 {
    font-size: 18px;
  }

  .search-band {
    width: 100%;
  }

  .quick-search {
    padding: 16px 14px;
  }

  .page-hero,
  .profile-hero {
    padding: 38px 0;
  }

  .page-hero h1,
  .profile-hero h1 {
    font-size: 37px;
  }

  .page-hero p,
  .profile-hero p {
    font-size: 15px;
  }

  .section-grid {
    gap: 16px;
    margin-top: 34px;
    margin-bottom: 34px;
  }

  .polls-overview-grid {
    grid-template-columns: 1fr;
  }

  .poll-viz-head,
  .poll-viz-meta,
  .poll-viz-panel,
  .poll-competition {
    grid-template-columns: 1fr;
  }

  .poll-viz-picker {
    grid-template-columns: 1fr;
  }

  .poll-viz-head {
    display: grid;
  }

  .poll-viz-actions {
    justify-content: flex-start;
  }

  .poll-viz-frame {
    min-width: 640px;
  }

  .poll-viz {
    overflow-x: auto;
  }

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

  .candidate-directory {
    padding-top: 24px;
  }

  .candidate-order-note {
    font-size: 15px;
  }

  .candidate-controls,
  .candidate-control-group,
  .candidate-controls .filter-row,
  .candidate-sort-row {
    width: 100%;
  }

  .candidate-controls .filter-row {
    gap: 7px;
  }

  .candidate-controls .filter-row a {
    flex: 1 1 calc(50% - 7px);
    padding-right: 8px;
    padding-left: 8px;
  }

  .candidate-sort-row a {
    flex: 1 1 0;
    padding-right: 8px;
    padding-left: 8px;
  }

  .section-heading {
    margin-top: 42px;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .intro-panel h2,
  .mode-panel h2 {
    font-size: 24px;
  }

  .mode-grid {
    margin-top: 46px;
    margin-bottom: 50px;
  }

  .matrix-summary {
    grid-template-columns: 1fr;
  }

  .matrix-summary a {
    min-height: 50px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .matrix-summary a:last-child {
    border-bottom: 0;
  }

  .matrix-section {
    padding-top: 34px;
    padding-bottom: 40px;
  }

  .matrix-section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .matrix-section-heading h2 {
    font-size: 27px;
  }

  .theme-directory-row {
    padding-right: 10px;
    padding-left: 10px;
  }

  .candidate-matrix-directory {
    grid-template-columns: 1fr;
  }

  .candidate-matrix-directory a,
  .candidate-matrix-directory a:nth-child(2n),
  .candidate-matrix-directory a:nth-child(3n) {
    border-right: 0;
  }

  .thematic-matrix th:first-child,
  .thematic-matrix td:first-child {
    width: 168px;
    min-width: 168px;
  }

  .thematic-matrix {
    min-width: max(720px, calc(168px + (var(--theme-count) * 100px)));
  }

  .thematic-matrix th:not(:first-child),
  .thematic-matrix td:not(:first-child) {
    width: 100px;
  }

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

  .footer-grid {
    gap: 26px;
  }

  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .declaration-hero::after {
    display: none;
  }

  .declaration-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .declaration-hero h1 {
    font-size: 39px;
  }

  .declaration-lead {
    font-size: 18px;
  }

  .declaration-hero img {
    display: none;
  }

  .declaration {
    padding-top: 34px;
  }

  .declaration-preamble {
    margin-bottom: 36px;
    padding: 22px 20px;
  }

  .declaration-preamble p {
    font-size: 17px;
  }

  .declaration-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 36px 0;
  }

  .declaration-number {
    font-size: 32px;
  }

  .declaration-section h2 {
    font-size: 28px;
  }

  .declaration-section p {
    font-size: 16px;
  }

  .declaration-section-dark {
    margin-right: -14px;
    margin-left: -14px;
    padding: 32px 20px;
  }

  .declaration-questions li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .declaration-closing {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .declaration-closing img {
    width: 90px;
    height: 90px;
  }

  .declaration-closing strong {
    font-size: 23px;
  }
}

.contact-manifesto,
.contact-single,
.mailbox,
.conversation {
  padding-top: 36px;
  padding-bottom: 60px;
}

.contact-manifesto > div {
  max-width: 900px;
}

.contact-manifesto h2,
.contact-panel h2 {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 30px;
}

.contact-manifesto a {
  color: var(--red-france);
  font-weight: 800;
  text-underline-offset: 4px;
}

.contact-manifesto blockquote {
  margin: 28px 0 0;
  padding: 20px 24px;
  color: var(--navy-900);
  background: var(--paper);
  border-left: 4px solid var(--red-france);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

.contact-access {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 60px;
}

.contact-panel {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy-900);
}

.contact-single {
  max-width: 720px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label span,
.editor-field > span {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #aeb5c0;
  border-radius: 2px;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-alert {
  margin: 18px 0;
  padding: 13px 16px;
  color: #731e2a;
  background: #fff0f1;
  border-left: 4px solid var(--red-france);
}

.totp-public,
.recovery-public {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.totp-public strong {
  overflow-wrap: anywhere;
  color: var(--navy-900);
  font-family: monospace;
  font-size: 20px;
}

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

.recovery-public code {
  padding: 10px;
  background: var(--white);
  text-align: center;
}

.mailbox-actions,
.message-bubble header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.mailbox-actions {
  margin-bottom: 20px;
}

.mailbox-actions form {
  margin: 0;
}

.thread-list,
.message-stack {
  display: grid;
  gap: 8px;
}

.thread-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
}

.thread-row.unread {
  border-left: 5px solid var(--red-france);
}

.message-bubble {
  max-width: 82%;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.message-bubble.owner {
  justify-self: end;
  background: #edf1f6;
  border-left: 4px solid var(--blue-france);
}

.message-bubble.user {
  border-left: 4px solid var(--red-france);
}

.message-bubble header {
  color: var(--muted);
  font-size: 11px;
}

.message-bubble p {
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

.reply-box {
  margin-top: 24px;
}

.editor-field {
  position: relative;
}

.bold-tool {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 28px;
  color: var(--navy-900);
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
}

.pagination-links {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}

.activity-log {
  padding-top: 42px;
  padding-bottom: 64px;
}

.activity-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.activity-list li {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}

.activity-list time {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
}

.activity-list time strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 18px;
}

.activity-list li > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.activity-list small {
  color: var(--red-france);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.activity-list a,
.activity-list li > div > span {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration-color: var(--red-france);
  text-underline-offset: 4px;
}

.activity-list a strong {
  color: var(--red-france);
}

.activity-list a strong.activity-strong-neutral {
  color: var(--navy-900);
}

.public-directory {
  padding-top: 42px;
  padding-bottom: 68px;
}

.meeting-directory-list,
.support-directory-list {
  border-top: 1px solid var(--line-dark);
}

.meeting-directory-list > article {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.meeting-directory-meta {
  display: grid;
  align-content: start;
  gap: 6px;
}

.meeting-directory-meta a,
.meeting-directory-list h2 a,
.support-directory-list a {
  color: var(--navy-900);
  text-decoration-color: var(--red-france);
  text-underline-offset: 4px;
}

.meeting-directory-meta a {
  font-weight: 800;
}

.meeting-directory-meta time,
.meeting-directory-list article > div:last-child > span,
.support-directory-list time {
  color: var(--muted);
  font-size: 11px;
}

.meeting-directory-list h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 24px;
}

.meeting-directory-excerpt {
  position: relative;
  max-height: 8.4em;
  margin: 0 0 9px;
  overflow: hidden;
  color: var(--ink);
}

.meeting-directory-excerpt::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2.8em;
  pointer-events: none;
  background: linear-gradient(rgba(255, 255, 255, 0), var(--paper));
}

.meeting-directory-excerpt p,
.meeting-directory-excerpt li {
  margin-bottom: 6px;
}

.meeting-directory-excerpt ul,
.meeting-directory-excerpt ol {
  gap: 4px;
  margin: 7px 0 8px;
  padding-left: 20px;
}

.meeting-directory-excerpt h3,
.meeting-directory-excerpt h4,
.meeting-directory-excerpt h5 {
  margin: 8px 0 4px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.25;
}

.meeting-directory-excerpt blockquote {
  margin: 8px 0;
  padding: 8px 12px;
}

.meeting-directory-excerpt .markdown-references {
  display: none;
}

.meeting-directory-list p,
.support-directory-list p {
  margin: 0 0 8px;
}

.support-directory-list > article {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  gap: 26px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.support-directory-list strong,
.support-directory-list time {
  display: block;
}

.support-directory-list strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 19px;
}

.support-directory-list .support-candidate {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 800;
}

.volume-page {
  padding-top: 42px;
  padding-bottom: 68px;
}

.volume-totals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.volume-totals > div {
  display: grid;
  gap: 7px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.volume-totals > div:last-child {
  border-right: 0;
}

.volume-totals span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.volume-totals strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 35px;
}

.volume-rankings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.volume-rankings section {
  min-width: 0;
}

.volume-rankings h2 {
  min-height: 58px;
  margin: 0;
  padding-bottom: 12px;
  color: var(--navy-900);
  border-bottom: 3px solid var(--navy-900);
  font-family: var(--serif);
  font-size: 23px;
}

.volume-rankings ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: volume-rank;
}

.volume-rankings li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: volume-rank;
}

.volume-rankings li::before {
  content: counter(volume-rank, decimal-leading-zero);
  color: var(--red-france);
  font-family: var(--serif);
  font-weight: 700;
}

.volume-rank-title {
  min-width: 0;
}

.volume-rank-title a,
.methodology-content a {
  color: var(--navy-900);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration-color: var(--red-france);
  text-underline-offset: 4px;
}

.volume-rank-title small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.volume-rankings li > strong {
  color: var(--navy-900);
}

.volume-note {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.methodology-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 860px);
  gap: 54px;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 74px;
}

.methodology-toc {
  position: sticky;
  top: 112px;
  padding: 18px;
  background: var(--white);
  border-top: 4px solid var(--navy-900);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.methodology-toc > strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 19px;
}

.methodology-toc nav {
  display: grid;
  margin-top: 12px;
}

.methodology-toc a {
  padding: 7px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.methodology-content > section {
  padding: 8px 0 44px;
  scroll-margin-top: 110px;
}

.methodology-content > section + section {
  padding-top: 38px;
  border-top: 1px solid var(--line-dark);
}

.methodology-content h2 {
  margin: 4px 0 17px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 33px;
  line-height: 1.2;
}

.methodology-content p {
  font-size: 16px;
  line-height: 1.75;
}

.methodology-criteria {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.methodology-criteria li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.methodology-criteria strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 18px;
}

.methodology-five {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 24px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.methodology-five > div {
  min-width: 0;
  padding: 14px;
  border-right: 1px solid var(--line);
}

.methodology-five > div:last-child {
  border-right: 0;
}

.methodology-five strong,
.methodology-five span {
  display: block;
}

.methodology-five strong {
  margin-bottom: 8px;
  color: var(--navy-900);
  font-family: var(--serif);
}

.methodology-five span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.methodology-faq details {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.methodology-faq summary {
  color: var(--navy-900);
  font-weight: 800;
  cursor: pointer;
}

.methodology-faq details p {
  margin-bottom: 0;
}

.donation-independence,
.correction-policy,
.contact-warning {
  margin: 26px 0;
  padding: 22px;
  background: var(--white);
  border-left: 4px solid var(--red-france);
}

.donation-independence p:first-child {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.donation-independence a,
.correction-policy a,
.contact-warning strong {
  color: var(--red-france);
  font-weight: 800;
}

.correction-policy {
  margin-top: 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.correction-policy p {
  margin: 9px 0;
}

.correction-policy strong {
  color: var(--navy-900);
}

.correction-policy-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.correction-policy-note em {
  color: var(--text);
}

.correction-rate-note {
  margin-top: 16px;
  padding: 11px 13px;
  color: var(--navy-900);
  background: #f4f2ed;
  border-left: 3px solid var(--blue-france);
  font-size: 13px;
  font-weight: 800;
}

.donation-button {
  margin-top: 8px;
}

.contact-warning {
  margin-top: 0;
  margin-bottom: 38px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-warning strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 21px;
}

.contact-warning p {
  margin: 8px 0;
  font-size: 13px;
}

@media (max-width: 760px) {
  .contact-access {
    grid-template-columns: 1fr;
  }

  .thread-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .message-bubble {
    max-width: 94%;
  }

  .recovery-public {
    grid-template-columns: 1fr;
  }

  .activity-list li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .activity-list time {
    justify-content: flex-start;
  }

  .meeting-directory-list > article,
  .support-directory-list > article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .volume-totals,
  .volume-rankings,
  .methodology-layout {
    grid-template-columns: 1fr;
  }

  .volume-totals > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .volume-totals > div:last-child {
    border-bottom: 0;
  }

  .volume-rankings h2 {
    min-height: 0;
  }

  .methodology-toc {
    position: static;
  }

  .methodology-criteria li,
  .methodology-five {
    grid-template-columns: 1fr;
  }

  .methodology-five > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .methodology-five > div:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
