*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

:root {
  --red: #e70000;
  --green: #147a44;
  --black: #0b0b0b;
  --white: #ffffff;
  --sand: #f6f1e7;
  --ink: #161616;
  --muted: #5a5a5a;
  --surface: #ffffff;
  --surface-strong: #f7f4ee;
  --border: rgba(11, 11, 11, 0.14);
  --shadow: 0 22px 70px rgba(11, 11, 11, 0.15);
  --header: rgba(255, 255, 255, 0.92);
  --focus: #0a64c7;
  --max: 1180px;
  --wide: 1440px;
  --narrow: 780px;
  color-scheme: light;
}

:root[data-theme=dark] {
  --ink: #f6f1e7;
  --muted: #cbc6bb;
  --surface: #101010;
  --surface-strong: #1b1b1b;
  --border: rgba(255, 255, 255, 0.18);
  --header: rgba(11, 11, 11, 0.9);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --focus: #79b8ff;
  color-scheme: dark;
}

html {
  max-width: 100vw;
}

body {
  background: linear-gradient(140deg, rgba(20, 122, 68, 0.12), transparent 34rem), linear-gradient(320deg, rgba(231, 0, 0, 0.09), transparent 30rem), var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  max-width: 100vw;
}

div#page {
  max-width: 100vw;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration-color: var(--red);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--red);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.screen-reader-text,
.skip-link {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link:focus {
  clip: auto;
  clip-path: none;
  background: var(--surface);
  border: 3px solid var(--focus);
  color: var(--ink);
  height: auto;
  left: 1rem;
  padding: 0.75rem 1rem;
  top: 1rem;
  width: auto;
  z-index: 99999;
}

.content-wrap {
  margin-inline: auto;
  max-width: var(--max);
  padding-inline: clamp(1rem, 4vw, 2rem);
  width: 100%;
}

.content-wrap--narrow {
  max-width: var(--narrow);
}

.content-wrap--wide {
  max-width: var(--wide);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.75rem 1.1rem;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.wp-block-button__link:hover {
  transform: translateY(-1px);
}

.button--primary,
.wp-block-button.button--primary .wp-block-button__link {
  background: var(--red);
  color: var(--white);
}

.button--primary:hover,
.wp-block-button.button--primary .wp-block-button__link:hover {
  background: #b90000;
  color: var(--white);
}

.button--secondary,
.wp-block-button.button--secondary .wp-block-button__link {
  background: var(--surface);
  border-color: var(--border);
  color: var(--ink);
}

.wp-block-button__link {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.75rem 1.1rem;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button--full {
  width: 100%;
}

.eyebrow {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.lead {
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.45;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.page-band {
  background: var(--surface-strong);
  border-block: 1px solid var(--border);
  padding-block: clamp(3rem, 8vw, 6rem);
}

.two-column {
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.stack {
  display: grid;
  gap: 1rem;
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }
  .two-column {
    grid-template-columns: 1fr;
  }
}
.site-header {
  backdrop-filter: blur(16px);
  background: var(--header);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  transition: background 180ms ease, box-shadow 180ms ease;
  z-index: 1000;
}

.site-header::after {
  background: rgba(11, 11, 11, 0.36);
  backdrop-filter: blur(8px);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 1;
}

body.nav-is-open {
  overflow: hidden;
}

body.nav-is-open .site-header::after {
  opacity: 1;
}

.site-header.smaller {
  box-shadow: 0 12px 35px rgba(11, 11, 11, 0.12);
}

.site-header__inner {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-areas: "brand nav theme";
  grid-template-columns: auto 1fr auto;
  margin-inline: auto;
  max-width: var(--max);
  min-height: 245px;
  padding: 0.65rem clamp(1rem, 4vw, 2rem);
  position: relative;
  transition: min-height 180ms ease, padding 180ms ease;
  z-index: 2;
}

.site-header.smaller .site-header__inner {
  min-height: 84px;
  padding-block: 0.35rem;
}

.site-brand {
  display: block;
  grid-area: brand;
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-header.smaller .site-brand {
  transform: scale(0.78);
}

.site-brand img,
.site-brand svg {
  width: clamp(132px, 18vw, 275px);
}

.site-brand svg {
  max-height: 200px;
  transition: max-height 180ms ease;
}

.site-header.smaller .site-brand svg {
  max-height: 98px;
}

.site-nav {
  grid-area: nav;
  justify-self: end;
}

.site-nav__list {
  align-items: center;
  display: flex;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  border-radius: 8px;
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.65rem 0.75rem;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, padding 180ms ease;
}

.site-header.smaller .site-nav__list a {
  padding-block: 0.45rem;
}

.site-nav__list a:hover {
  background: var(--surface-strong);
  color: var(--ink);
}

.site-nav__help {
  display: none;
}

.nav-toggle {
  align-items: center;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 28px rgba(11, 11, 11, 0.16);
  color: var(--ink);
  cursor: pointer;
  display: none;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 0.45rem;
  grid-area: menu;
  justify-content: center;
  min-height: 42px;
  padding: 0.45rem 0.7rem 0.6rem;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease, transform 180ms ease;
}

.site-header.smaller .nav-toggle {
  padding-block: 0.38rem 0.5rem;
}

.nav-toggle__mark {
  display: grid;
  gap: 0.2rem;
  width: 0.75rem;
}

.nav-toggle__mark span {
  background: currentColor;
  display: block;
  height: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
  width: 100%;
}

.nav-toggle[aria-expanded=true] {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.nav-toggle[aria-expanded=true] .nav-toggle__mark span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded=true] .nav-toggle__mark span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.theme-switch {
  cursor: pointer;
  grid-area: theme;
  justify-self: end;
}

.theme-switch input {
  opacity: 0;
  position: absolute;
}

.theme-switch__track {
  align-items: center;
  background: var(--surface-strong);
  border: 2px solid var(--border);
  border-radius: 999px;
  display: flex;
  height: 34px;
  justify-content: space-between;
  padding: 3px;
  position: relative;
  transition: height 180ms ease, width 180ms ease;
  width: 66px;
}

.theme-switch__track::after {
  background: var(--black);
  border-radius: 999px;
  content: "";
  height: 24px;
  left: 4px;
  position: absolute;
  top: 3px;
  transition: transform 180ms ease;
  width: 24px;
}

.theme-switch input:checked + .theme-switch__track::after {
  transform: translateX(30px);
}

.theme-switch__icon {
  border-radius: 50%;
  display: block;
  height: 16px;
  margin-inline: 5px;
  width: 16px;
}

.theme-switch__icon--sun {
  background: #ffd84d;
}

.theme-switch__icon--moon {
  background: var(--red);
}

@media (max-width: 860px) {
  .site-header__inner {
    grid-template-areas: "brand spacer theme menu";
    grid-template-columns: auto 1fr auto auto;
    min-height: 78px;
    position: static;
  }
  .site-header.smaller .site-header__inner {
    min-height: 64px;
  }
  .site-brand img,
  .site-brand svg {
    width: clamp(118px, 34vw, 160px);
  }
  .nav-toggle {
    display: block;
    justify-self: end;
    margin-top: -0.65rem;
    position: relative;
    z-index: 4;
  }
  .site-nav {
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    border: 1px solid var(--border);
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow);
    display: block;
    inset-inline: 0;
    justify-self: stretch;
    margin: 0;
    max-height: calc(100vh - 78px);
    opacity: 0;
    overflow: auto;
    padding: 0.85rem clamp(1rem, 4vw, 2rem) calc(1rem + env(safe-area-inset-bottom));
    pointer-events: none;
    position: fixed;
    top: 78px;
    transform: translateY(-120%);
    transition: transform 220ms ease, opacity 180ms ease;
    z-index: 3;
  }
  .site-header.smaller .site-nav {
    max-height: calc(100vh - 64px);
    top: 64px;
  }
  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-nav__list {
    align-items: stretch;
    flex-direction: column;
    gap: 0.55rem;
  }
  .site-nav__list a {
    border: 1px solid var(--border);
    font-size: 1.08rem;
    padding: 0.95rem 1rem;
  }
  .site-nav__help {
    background: var(--green);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    display: block;
    font-weight: 900;
    margin-top: 0.65rem;
    min-height: 3.25rem;
    padding: 0.85rem 1rem;
    text-align: left;
    width: 100%;
  }
  .site-nav__help:hover {
    background: #0f6337;
  }
  .feedback-widget:not(.is-open) {
    pointer-events: none;
  }
  .feedback-widget:not(.is-open) .feedback-widget__button {
    display: none;
  }
}
.site-footer {
  background: var(--black);
  color: var(--white);
  padding-block: clamp(2rem, 5vw, 4rem) 1rem;
}

.site-footer__inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.5fr) minmax(12rem, 0.7fr) minmax(12rem, 0.8fr);
  margin-inline: auto;
  max-width: var(--max);
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.site-footer__brand img {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 0.5rem;
  width: 180px;
}

.site-footer a {
  color: var(--white);
}

.site-footer__menu {
  display: grid;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__contact h2 {
  font-size: 1.25rem;
}

.site-footer__fineprint {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2rem auto 0;
  max-width: var(--max);
  padding: 1rem clamp(1rem, 4vw, 2rem) 0;
}

@media (max-width: 760px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}
form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  font-weight: 800;
  gap: 0.35rem;
}

.jtc-petition .jtc-form .jtc-field__label,
.jtc-petition .jtc-form .jtc-field__checkbox-label,
.single-jtc_petition .jtc-form .jtc-field__label,
.single-jtc_petition .jtc-form .jtc-field__checkbox-label,
.petition-template [aria-label="Sign the petition"] form label,
.petition-template [aria-label="Sign the petition"] form .field-label,
.petition-template [aria-label="Sign the petition"] form .form-label {
  align-items: baseline;
  display: inline-flex !important;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.jtc-petition .jtc-form .jtc-field__label > *,
.jtc-petition .jtc-form .jtc-field__checkbox-label > *,
.single-jtc_petition .jtc-form .jtc-field__label > *,
.single-jtc_petition .jtc-form .jtc-field__checkbox-label > *,
.petition-template [aria-label="Sign the petition"] form label > *,
.petition-template [aria-label="Sign the petition"] form .field-label > *,
.petition-template [aria-label="Sign the petition"] form .form-label > * {
  display: inline !important;
}

.jtc-petition .jtc-form .jtc-required,
.single-jtc_petition .jtc-form .jtc-required,
.petition-template [aria-label="Sign the petition"] form label + [aria-hidden=true],
.petition-template [aria-label="Sign the petition"] form label + span,
.petition-template [aria-label="Sign the petition"] form .required,
.petition-template [aria-label="Sign the petition"] form .is-required {
  color: var(--red);
  display: inline-block !important;
  font-weight: 900;
  margin-left: 0.15rem;
  vertical-align: baseline;
}

input,
textarea {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  min-height: 3.2rem;
  padding: 0.75rem 0.9rem;
  width: 100%;
}

textarea {
  resize: vertical;
}

.form-row--split {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkbox-row {
  align-items: start;
  display: grid;
  font-weight: 600;
  gap: 0.65rem;
  grid-template-columns: 1.2rem 1fr;
}

.checkbox-row input {
  height: 1.2rem;
  margin-top: 0.2rem;
  min-height: 0;
  width: 1.2rem;
}

.petition-form,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 2rem);
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

@media (max-width: 620px) {
  .form-row--split {
    grid-template-columns: 1fr;
  }
}
.feedback-widget {
  bottom: calc(clamp(0.75rem, 2vw, 1.25rem) + env(safe-area-inset-bottom));
  left: clamp(0.75rem, 2vw, 1.25rem);
  max-width: calc(100vw - 2rem);
  position: fixed;
  z-index: 10000;
}

.feedback-widget.is-capturing {
  opacity: 0;
  pointer-events: none;
}

.feedback-widget__button {
  background: linear-gradient(180deg, #1c9658 0%, var(--green) 100%);
  border: 2px solid color-mix(in srgb, var(--surface) 92%, transparent);
  border-radius: 8px;
  box-shadow: 0 13px 32px rgba(11, 11, 11, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -3px 0 rgba(0, 0, 0, 0.18);
  color: var(--white);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
  min-height: 3.25rem;
  padding: 0.72rem 0.85rem 0.82rem;
  text-align: center;
  text-wrap: balance;
  transition: box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
  white-space: normal;
  width: min(var(--feedback-button-width, 168px), 100vw - 1.5rem);
}

.feedback-widget__button:hover {
  background: #0f6337;
  box-shadow: 0 16px 38px rgba(11, 11, 11, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.32), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.feedback-widget__button:active {
  box-shadow: 0 8px 20px rgba(11, 11, 11, 0.24), inset 0 2px 4px rgba(0, 0, 0, 0.18);
  transform: translateY(1px);
}

.feedback-widget.is-open .feedback-widget__button {
  display: none;
}

.feedback-widget__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: clamp(1rem, 3vw, 1.35rem);
  width: min(420px, 100vw - 2rem);
}

.feedback-widget__header {
  align-items: start;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr auto;
}

.feedback-widget__header h2 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0;
}

.feedback-widget__close {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  min-height: 2.45rem;
  padding: 0.45rem 0.75rem;
}

.feedback-widget__intro {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0.75rem 0 1rem;
}

.feedback-widget__form textarea {
  min-height: 8rem;
}

.feedback-widget__trap {
  display: none;
}

.feedback-widget__actions {
  display: flex;
}

.feedback-widget__actions .button {
  width: 100%;
}

.feedback-widget__status {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
  min-height: 1.5rem;
}

.feedback-widget__status.is-error {
  color: var(--red);
}

@media (max-width: 520px) {
  .feedback-widget {
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
    left: 0.75rem;
  }
  .feedback-widget__panel {
    width: 100%;
  }
}
.home-hero {
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3rem, 8vw, 7rem);
  position: relative;
}

.home-hero::before {
  background: linear-gradient(125deg, rgba(20, 122, 68, 0.2), transparent 55%), linear-gradient(45deg, rgba(231, 0, 0, 0.16), transparent 48%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.home-hero__blocks {
  inset: 0;
  position: absolute;
  z-index: -1;
  opacity: 0.15;
}

.home-hero__blocks span {
  background: var(--black);
  display: block;
  position: absolute;
  width: clamp(4rem, 11vw, 9rem);
}

.home-hero__blocks span:nth-child(1) {
  height: 64%;
  right: 16%;
  top: 18%;
}

.home-hero__blocks span:nth-child(2) {
  height: 50%;
  right: 5%;
  top: 32%;
}

.home-hero__blocks span:nth-child(3) {
  background: var(--red);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  height: clamp(6rem, 16vw, 13rem);
  right: 9%;
  top: 71%;
  width: clamp(7rem, 18vw, 15rem);
}

.home-hero__blocks span:nth-child(4) {
  background: var(--green);
  height: 35%;
  right: 32%;
  top: 10%;
  width: clamp(2rem, 5vw, 4rem);
}

.home-hero__inner {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 7vw, 5rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
}

.home-hero__copy {
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  border-left: 8px solid var(--red);
  padding: clamp(1rem, 3vw, 2rem);
}

.home-hero__image {
  justify-self: center;
}

.home-hero__image img {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
  width: min(500px, 90vw);
  transform: scale(1.3) rotate(-2deg) translateX(1rem) translateY(2rem);
  border: 5px solid #fff;
}

.petition-section,
.resources-section,
.contact-section {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.petition-section__inner {
  align-items: start;
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1.05fr);
}

.check-list {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

.check-list li {
  padding-left: 1.8rem;
  position: relative;
}

.check-list li::before {
  background: var(--green);
  border-radius: 50%;
  color: var(--white);
  content: "";
  height: 0.85rem;
  left: 0;
  position: absolute;
  top: 0.45rem;
  width: 0.85rem;
}

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

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

.resource-grid > li {
  list-style: none;
  margin: 0;
}

.resource-card,
.entry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
}

.resource-card h3 a,
.resource-card .wp-block-post-title a,
.entry-card h2 a,
.entry-card h1 a {
  text-decoration: none;
}

.resource-card .wp-block-post-date,
.resource-card .wp-block-post-excerpt {
  margin-block: 0 0.75rem;
}

.action-section {
  background: linear-gradient(100deg, rgba(20, 122, 68, 0.2), transparent), var(--surface-strong);
}

.action-section__inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

@media (max-width: 860px) {
  .home-hero__inner,
  .petition-section__inner {
    grid-template-columns: 1fr;
  }
  .home-hero__mark {
    display: none;
  }
  .resource-grid {
    grid-template-columns: 1fr;
  }
  .section-heading,
  .action-section__inner {
    align-items: start;
    flex-direction: column;
  }
}
.page-hero {
  background: linear-gradient(120deg, rgba(231, 0, 0, 0.18), transparent 55%), linear-gradient(300deg, rgba(20, 122, 68, 0.16), transparent 45%), var(--surface-strong);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(3rem, 8vw, 6rem);
}

.page-hero--compact h1 {
  max-width: 14ch;
}

.page-content .wysiwyg {
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.wysiwyg > * {
  margin-block: 0 1.1rem;
}

.wysiwyg p,
.wysiwyg li {
  color: var(--muted);
}

.wysiwyg a {
  font-weight: 800;
}

.archive-description {
  max-width: var(--narrow);
}

.navigation {
  margin-top: 2rem;
}

.petition-template__header {
  background: linear-gradient(115deg, rgba(231, 0, 0, 0.2), transparent 52%), linear-gradient(290deg, rgba(20, 122, 68, 0.18), transparent 46%), var(--surface-strong);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.petition-template__header h1 {
  max-width: 13ch;
}

.petition-template__body {
  padding-block: clamp(2rem, 5vw, 4rem);
}

.petition-template__body > .content-wrap {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
}