:root {
  --lm-navy: #1b3a5c;
  --lm-crimson: #8b1f2f;
  --lm-pale-navy: #bbc4ce;
  --lm-muted: #666666;
  --lm-page: #ffffff;
  --lm-black: #000000;
  --ink: var(--lm-navy);
  --ink-dark: #17204a;
  --text: #252529;
  --muted: #77787f;
  --rule: #dedfe5;
  --panel: #e9e9ee;
  --white: #ffffff;
  --red: #a91f32;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1200px;
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

a {
  color: var(--ink);
  text-decoration-color: currentColor;
  text-underline-offset: 0.12em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 132px;
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  transition: height 180ms ease, box-shadow 180ms ease;
}

.header-inner {
  width: min(100%, 1040px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 124px;
  height: auto;
  display: block;
  transition: width 180ms ease;
}

.site-header.is-compact {
  height: 74px;
  box-shadow: 0 1px 12px rgba(31, 43, 92, 0.08);
}

.site-header.is-compact .brand img {
  width: 86px;
}

.mission {
  min-height: auto;
  display: flex;
  justify-content: center;
  padding: 52px 40px 92px;
}

.copy-column {
  width: 760px;
  max-width: 100%;
}

h1,
h2,
h3,
.org-name {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 700;
}

.accent {
  width: 64px;
  height: 2px;
  margin-top: 28px;
  background: var(--red);
}

.intro-copy {
  margin-top: 36px;
}

.hero-illustration {
  width: min(920px, calc(100vw - 80px));
  max-width: none;
  margin: 28px 0 0;
  overflow: hidden;
  transform: translateX(-64px);
}

.hero-illustration picture,
.hero-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 760px) {
  body {
    min-width: 0;
  }

  .mission {
    padding: 92px 24px 96px;
  }

  .hero-illustration {
    height: 220px;
  }

  .hero-illustration img {
    width: 760px;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translateX(calc((100vw - 48px - 760px) / 2));
  }
}

.intro-copy p,
.why-copy p {
  margin: 0 0 25px;
}

.intro-copy p:last-child,
.why-copy p:last-child {
  margin-bottom: 0;
}

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 36px 0 34px;
}

.why-copy strong {
  font-weight: 800;
}

.actions {
  display: flex;
  gap: 16px;
  margin-top: 58px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  min-height: 52px;
  padding: 14px 28px;
  border: 2px solid var(--ink);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.button-primary {
  min-width: 218px;
  background: var(--ink);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  color: var(--text);
}

.work {
  background: var(--panel);
  padding: 92px 40px 104px;
}

.work-inner {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.work h2 {
  margin: 0 0 52px;
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
}

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

.work-card {
  min-height: 238px;
  padding: 38px 38px 34px;
  background: var(--white);
  border-left: 4px solid var(--ink);
  display: flex;
  flex-direction: column;
}

.work-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.2;
}

.work-card h3 s {
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-decoration-skip-ink: none;
}

.work-card p {
  max-width: 460px;
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
}

.work-card a {
  margin-top: auto;
  width: fit-content;
  font-size: 19px;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 56px 40px 38px;
  background: var(--white);
}

.footer-inner {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.footer-primary {
  display: grid;
  grid-template-columns: 1.2fr 0.58fr 0.58fr;
  gap: 74px;
  padding-bottom: 50px;
  border-bottom: 2px solid var(--ink);
}

.footer-about img {
  width: 96px;
  height: auto;
  display: block;
  margin-bottom: 22px;
}

.footer-about p {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.45;
}

.footer-about .org-name {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 700;
}

.editorial-note {
  margin-top: 22px !important;
  font-family: Georgia, "Times New Roman", serif;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.social-links a {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
}

.social-links svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

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

.footer-nav h2 {
  margin: 2px 0 18px;
  font-size: 20px;
  line-height: 1.2;
}

.footer-nav a {
  margin-bottom: 7px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 32px;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 13px;
}

.footer-bottom .social-links {
  margin-top: 0;
  gap: 16px;
}

.footer-bottom .social-links a {
  width: 20px;
  height: 20px;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
}

.article-page .site-header {
  height: 116px;
}

.article-page .brand img {
  width: 112px;
}

.article-page .site-header.is-compact {
  height: 74px;
}

.article-page .site-header.is-compact .brand img {
  width: 86px;
}

.article-hero {
  padding: 86px 40px 54px;
  display: flex;
  justify-content: center;
}

.article-wrap {
  width: 760px;
  max-width: 100%;
}

.back-link {
  display: inline-flex;
  margin-bottom: 56px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.article-hero h1 {
  font-size: 48px;
}

.article-hero h1 s {
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  text-decoration-skip-ink: none;
}

.dek {
  margin: 34px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.4;
}

.article-body {
  padding: 0 40px 110px;
  display: flex;
  justify-content: center;
}

.article-body h2 {
  margin: 54px 0 18px;
  font-size: 25px;
  line-height: 1.25;
}

.article-body p {
  margin: 0 0 24px;
}

.article-body ul {
  margin: 0 0 30px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 14px;
}

.article-body strong {
  font-weight: 800;
}

.article-body .closing-line {
  margin-top: 50px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.program-case-link {
  margin-top: 44px !important;
}

.article-sources {
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  color: #55565d;
  font-size: 14px;
}

.article-sources h2 {
  margin-top: 0;
  font-size: 19px;
}

.case-hero {
  padding-bottom: 46px;
  text-align: left;
}

.case-hero h1,
.case-hero .dek {
  text-align: left;
}

.case-hero .article-wrap {
  width: 820px;
}

.program-label {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.struck-kicker {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--red);
  text-decoration-skip-ink: none;
}

.case-body .article-wrap {
  width: 820px;
}

.case-body p,
.case-body li,
.case-body blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.68;
}

.case-body .case-meta {
  color: #585a61;
  font-size: 16px;
  line-height: 1.5;
}

.case-body .in-brief {
  margin: 34px 0;
  padding: 26px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.case-body .in-brief h2 {
  margin: 0 0 14px;
  color: var(--red);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-body .in-brief p {
  margin-bottom: 0;
  font-style: italic;
}

.case-body hr {
  margin: 34px 0;
}

.case-body .cite {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68em;
  line-height: 0;
}

.case-body .cite a {
  text-decoration: none;
}

.case-body blockquote {
  margin: 34px 0;
  padding-left: 24px;
  border-left: 3px solid var(--red);
  color: var(--ink);
}

.case-body .article-sources,
.case-body .version-history {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.case-body .article-sources h2,
.case-body .version-history h2 {
  margin-top: 0;
}

.case-body .source-list {
  margin: 18px 0 0;
  padding-left: 22px;
}

.case-body .source-list li {
  overflow-wrap: anywhere;
  margin-bottom: 16px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.source-back {
  white-space: nowrap;
}

.case-body .version-note {
  color: #585a61;
  font-size: 16px;
}

.article-illustration {
  margin: 58px 0 0;
}

.article-illustration picture,
.article-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.selective-illustration {
  width: min(920px, calc(100vw - 80px));
  transform: translateX(calc((760px - 100%) / 2));
}

.reform-illustration {
  width: min(860px, calc(100vw - 80px));
  transform: translateX(calc((760px - 100%) / 2));
}

.oppression-illustration {
  width: min(920px, calc(100vw - 80px));
  transform: translateX(calc((760px - 100%) / 2));
}

.forgotten-illustration {
  width: min(920px, calc(100vw - 80px));
  transform: translateX(calc((760px - 100%) / 2));
}

.support-hero {
  padding: 86px 40px 46px;
  display: flex;
  justify-content: center;
}

.support-wrap {
  width: 940px;
  max-width: 100%;
}

.support-hero h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.05;
}

.section-rule {
  width: 64px;
  height: 2px;
  margin: 24px 0 0;
}

.red-rule {
  background: var(--red);
}

.gold-rule {
  background: #c19a3b;
}

.tyrian-rule {
  background: #3e2a63;
}

.support-standfirst {
  width: 760px;
  max-width: 100%;
  margin: 42px 0 0;
  font-size: 21px;
  line-height: 1.55;
}

.support-body {
  padding: 0 40px 110px;
  display: flex;
  justify-content: center;
}

.support-section {
  margin-top: 72px;
}

.support-section h2,
.upper-tier h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
}

.support-section p,
.support-section li {
  font-size: 18px;
  line-height: 1.55;
}

.support-section p {
  width: 760px;
  max-width: 100%;
  margin: 30px 0 0;
}

.support-section ul {
  margin: 24px 0 0;
  padding-left: 24px;
}

.support-section li {
  margin-bottom: 14px;
}

.text-arrow {
  display: inline-flex;
  margin-top: 26px;
  font-size: 18px;
  font-weight: 700;
}

.support-promise {
  margin-top: 96px;
  margin-bottom: 92px;
}

.support-label {
  width: auto !important;
  margin: 0 0 24px !important;
  color: var(--muted);
  font-size: 14px !important;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.tier-card {
  min-height: 320px;
  padding: 34px 30px 32px;
  background: var(--white);
  border-left: 12px solid var(--rule);
}

.tier-card h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.2;
}

.tier-card p {
  width: auto;
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.5;
}

.tier-card .tier-price,
.upper-tier .tier-price {
  color: var(--muted);
  font-weight: 800;
}

.tier-card .tier-price {
  min-height: 3em;
}

.tier-reader {
  border-left-color: var(--rule);
}

.tier-friend {
  border-left-color: #7fa6cf;
}

.tier-member {
  border-left-color: #1e3a5f;
}

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

.upper-tier p {
  width: auto;
  margin: 26px 0 0;
}

.upper-tier .section-rule {
  height: 14px;
  width: 108px;
}

.custodian-tier .section-rule {
  border: 2px solid #c19a3b;
}

.give-panel {
  width: 760px;
  max-width: 100%;
  margin-top: 90px;
}

.donation-form {
  margin-top: 34px;
}

.donation-toggle {
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--rule);
}

.toggle-pill,
.amount-grid button {
  appearance: none;
  border-radius: 0;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 800;
}

.toggle-pill {
  min-width: 116px;
  padding: 11px 18px;
  border-color: transparent;
}

.toggle-pill.is-active {
  background: var(--ink);
  color: var(--white);
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(180px, 1.3fr);
  gap: 12px;
  margin-top: 24px;
}

.amount-grid button {
  min-height: 52px;
}

.amount-grid label {
  display: flex;
  align-items: center;
  min-height: 52px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.amount-grid span {
  padding-left: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.amount-grid input {
  width: 100%;
  min-width: 60px;
  border: 0;
  padding: 13px 14px 13px 8px;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  outline: none;
}

.give-button {
  margin-top: 24px;
}

.currency-note {
  width: auto !important;
  margin-top: 16px !important;
  color: var(--muted);
  font-size: 14px !important;
}

.newsletter-page {
  --newsletter-column: 904px;
  --newsletter-gutter: 40px;
  --newsletter-masthead-top: 112px;
  --newsletter-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --newsletter-sans: Inter, "Helvetica Neue", Arial, sans-serif;
  min-width: 0;
  background: var(--lm-page);
  color: var(--lm-navy);
}

.newsletter-shell,
.newsletter-content,
.newsletter-index {
  width: min(calc(100% - (var(--newsletter-gutter) * 2)), var(--newsletter-column));
  margin-inline: auto;
}

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

.newsletter-masthead {
  padding-block-start: var(--newsletter-masthead-top);
  text-align: start;
}

.newsletter-masthead a {
  text-decoration: none;
}

.newsletter-title {
  margin: 0;
  color: var(--lm-black);
  font-family: var(--newsletter-serif);
  font-size: 56px;
  line-height: 1.08;
  font-weight: 600;
}

.newsletter-title .brand-word {
  color: var(--lm-crimson);
}

.newsletter-tagline {
  margin-block: 28px 0;
  color: var(--lm-navy);
  font-family: var(--newsletter-serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.25;
}

.newsletter-issue-meta,
.newsletter-cadence {
  margin-block: 28px 0;
  color: var(--lm-navy);
  font-family: var(--newsletter-sans);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
}

.newsletter-lead {
  margin-block-start: 88px;
}

.newsletter-lead picture,
.newsletter-lead img {
  display: block;
  width: 100%;
}

.newsletter-lead img {
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
}

.newsletter-caption {
  margin-block-start: 18px;
  color: var(--lm-muted);
  font-family: var(--newsletter-sans);
}

.newsletter-caption p {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.35;
}

.newsletter-caption p + p {
  margin-block-start: 8px;
  font-size: 18px;
  font-weight: 500;
}

.newsletter-content {
  padding-block: 84px 112px;
}

.newsletter-rule {
  border: 0;
  border-block-start: 1px solid var(--lm-pale-navy);
  margin: 0;
}

.newsletter-rule.is-crimson {
  border-block-start-color: var(--lm-crimson);
}

.newsletter-brief {
  padding-block: 68px 70px;
}

.newsletter-brief.is-opening {
  padding-block-start: 68px;
}

.newsletter-brief h2,
.newsletter-index-card h2 {
  margin: 0;
  color: var(--lm-navy);
  font-family: var(--newsletter-serif);
  font-size: 32px;
  line-height: 1.18;
  font-weight: 600;
}

.newsletter-brief h2 a {
  color: inherit;
  text-decoration: none;
}

.newsletter-brief h2 a::after {
  content: "#";
  margin-inline-start: 10px;
  color: var(--lm-pale-navy);
  font-family: var(--newsletter-sans);
  font-size: 18px;
  opacity: 0;
}

.newsletter-brief h2 a:hover::after,
.newsletter-brief h2 a:focus-visible::after {
  opacity: 1;
}

.newsletter-brief p {
  margin-block: 24px 0;
  color: var(--lm-navy);
  font-family: var(--newsletter-sans);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.42;
}

.newsletter-sources {
  margin-block-start: 28px;
  color: var(--lm-muted);
  font-family: var(--newsletter-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.newsletter-sources a,
.newsletter-close a,
.newsletter-nav a,
.newsletter-index-card a,
.newsletter-rss-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.newsletter-signup {
  padding-block: 70px;
}

.newsletter-page[data-newsletter-signup="off"] .newsletter-signup {
  display: none;
}

.newsletter-signup p {
  margin-block: 0 24px;
  color: var(--lm-navy);
  font-family: var(--newsletter-sans);
  font-size: 24px;
  line-height: 1.4;
}

.newsletter-signup form {
  display: flex;
  gap: 10px;
  max-width: 600px;
}

.newsletter-signup input {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid var(--lm-pale-navy);
  padding-block: 15px;
  padding-inline: 22px;
  color: var(--lm-navy);
  font: 22px/1.2 var(--newsletter-sans);
}

.newsletter-signup button {
  border: 1px solid var(--lm-navy);
  background: var(--lm-navy);
  color: var(--white);
  padding-block: 15px;
  padding-inline: 34px;
  font: 700 22px/1.2 var(--newsletter-sans);
}

.newsletter-close {
  padding-block: 68px 42px;
  color: var(--lm-navy);
  font-family: var(--newsletter-sans);
}

.newsletter-close p {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.38;
}

.newsletter-close p + p {
  margin-block-start: 34px;
}

.newsletter-imprint {
  color: var(--lm-muted);
  font-weight: 500;
}

.newsletter-nav {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-block-start: 38px;
  color: var(--lm-navy);
  font-family: var(--newsletter-sans);
  font-size: 22px;
  line-height: 1.4;
}

.newsletter-nav-links,
.newsletter-languages {
  display: flex;
  gap: 30px;
  align-items: center;
}

.newsletter-languages {
  color: var(--lm-muted);
}

.newsletter-index {
  padding-block: 112px 130px;
}

.newsletter-index .newsletter-masthead {
  padding-block-start: 0;
}

.newsletter-issue-list {
  margin-block-start: 88px;
}

.newsletter-index-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  align-items: center;
  padding-block: 34px;
  border-block-start: 1px solid var(--lm-pale-navy);
}

.newsletter-index-card:last-child {
  border-block-end: 1px solid var(--lm-pale-navy);
}

.newsletter-index-card img {
  width: 180px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.newsletter-index-card p {
  margin-block: 0 14px;
  color: var(--lm-muted);
  font: 500 18px/1.4 var(--newsletter-sans);
}

.newsletter-index-card h2 {
  font-size: 32px;
}

.newsletter-topics-link {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--lm-navy);
  font-family: var(--newsletter-sans);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
}

.newsletter-topics-link span {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

@media (max-width: 760px) {
  .newsletter-page {
    --newsletter-gutter: 24px;
    --newsletter-masthead-top: 76px;
  }

  .newsletter-title {
    font-size: 40px;
  }

  .newsletter-tagline {
    font-size: 22px;
  }

  .newsletter-lead {
    margin-block-start: 64px;
  }

  .newsletter-content {
    padding-block-start: 58px;
  }

  .newsletter-brief {
    padding-block: 54px 58px;
  }

  .newsletter-brief h2,
  .newsletter-index-card h2 {
    font-size: 28px;
  }

  .newsletter-brief p {
    font-size: 21px;
  }

  .newsletter-sources,
  .newsletter-caption p,
  .newsletter-close p,
  .newsletter-nav {
    font-size: 18px;
  }

  .newsletter-signup form,
  .newsletter-nav,
  .newsletter-index-card {
    flex-direction: column;
    display: flex;
    align-items: stretch;
  }

  .newsletter-index-card img {
    width: 100%;
  }
}

.meridian-hero {
  padding-bottom: 34px;
}

.meridian-wrap {
  width: min(100%, 980px);
}

.meridian-mock {
  width: min(760px, 100%);
  margin: 46px auto 0;
}

.meridian-mock picture,
.meridian-mock img {
  width: 100%;
  height: auto;
  display: block;
}

.meridian-copy {
  padding-bottom: 110px;
}

@media (max-width: 1180px) {
  body {
    min-width: 0;
    overflow-x: hidden;
  }

  .header-inner,
  .work-inner,
  .footer-inner {
    width: 100%;
  }

  .hero-illustration,
  .selective-illustration,
  .reform-illustration,
  .oppression-illustration,
  .forgotten-illustration {
    width: 100%;
    transform: none;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .site-header,
  .article-page .site-header {
    height: 86px;
  }

  .header-inner {
    padding-inline: 28px;
  }

  .brand img,
  .article-page .brand img {
    width: 96px;
  }

  .site-header.is-compact,
  .article-page .site-header.is-compact {
    height: 68px;
  }

  .site-header.is-compact .brand img,
  .article-page .site-header.is-compact .brand img {
    width: 78px;
  }

  .mission {
    padding: 54px 28px 74px;
  }

  h1,
  .support-hero h1 {
    font-size: 44px;
    line-height: 1.08;
  }

  .intro-copy {
    margin-top: 30px;
  }

  .hero-illustration {
    margin-top: 26px;
  }

  .actions {
    margin-top: 42px;
  }

  .work {
    padding: 70px 28px 78px;
  }

  .cards,
  .support-cards,
  .upper-tiers {
    grid-template-columns: 1fr;
  }

  .work-card {
    min-height: 0;
    padding: 30px 28px 28px;
  }

  .work-card p,
  .work-card a {
    font-size: 17px;
  }

  .site-footer {
    padding: 48px 28px 34px;
  }

  .footer-primary {
    grid-template-columns: 1fr 1fr;
    gap: 38px 44px;
    padding-bottom: 38px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .article-hero,
  .support-hero {
    padding: 56px 28px 38px;
  }

  .article-body,
  .support-body {
    padding: 0 28px 82px;
  }

  .back-link {
    margin-bottom: 36px;
  }

  .article-hero h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  .dek {
    margin-top: 26px;
    font-size: 22px;
    line-height: 1.38;
  }

  .article-body h2 {
    margin-top: 44px;
  }

  .case-body p,
  .case-body li,
  .case-body blockquote {
    font-size: 18px;
    line-height: 1.62;
  }

  .article-illustration {
    margin-top: 40px;
  }

  .support-section {
    margin-top: 58px;
  }

  .support-promise {
    margin-block: 76px 68px;
  }

  .support-cards {
    gap: 18px;
  }

  .tier-card {
    min-height: 0;
    padding: 28px 26px;
  }

  .upper-tiers {
    gap: 44px;
  }

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

  .amount-grid label {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
    line-height: 1.55;
  }

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

  .site-header,
  .article-page .site-header {
    height: 72px;
  }

  .header-inner {
    justify-content: center;
    padding-inline: 20px;
  }

  .brand img,
  .article-page .brand img {
    width: 82px;
  }

  .site-header.is-compact,
  .article-page .site-header.is-compact {
    height: 62px;
  }

  .site-header.is-compact .brand img,
  .article-page .site-header.is-compact .brand img {
    width: 72px;
  }

  .mission {
    padding: 38px 22px 64px;
  }

  h1,
  .support-hero h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .accent {
    margin-top: 22px;
  }

  .hero-illustration {
    width: calc(100% + 12px);
    height: auto;
    margin: 22px -6px 0;
  }

  .hero-illustration img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
  }

  .intro-copy {
    margin-top: 26px;
  }

  .intro-copy p,
  .why-copy p {
    margin-bottom: 21px;
  }

  hr {
    margin: 30px 0;
  }

  .actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 13px 18px;
    text-align: center;
  }

  .work {
    padding: 58px 22px 66px;
  }

  .work h2 {
    margin-bottom: 34px;
  }

  .cards {
    gap: 18px;
  }

  .work-card {
    padding: 26px 22px 24px;
  }

  .work-card h3 {
    font-size: 21px;
  }

  .work-card p,
  .work-card a {
    font-size: 16px;
  }

  .site-footer {
    padding: 42px 22px 30px;
  }

  .footer-primary {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 34px;
  }

  .footer-about img {
    width: 86px;
  }

  .footer-nav h2 {
    margin-bottom: 14px;
    font-size: 19px;
  }

  .footer-nav a {
    font-size: 17px;
  }

  .footer-bottom {
    padding-top: 26px;
    font-size: 13px;
  }

  .footer-bottom .social-links {
    flex-wrap: wrap;
  }

  .article-hero,
  .support-hero {
    padding: 42px 22px 32px;
  }

  .article-body,
  .support-body {
    padding: 0 22px 70px;
  }

  .back-link {
    margin-bottom: 28px;
  }

  .article-hero h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .dek {
    font-size: 20px;
  }

  .article-body h2,
  .support-section h2,
  .upper-tier h2 {
    font-size: 24px;
    line-height: 1.24;
  }

  .article-body p,
  .article-body li,
  .support-section p,
  .support-section li {
    font-size: 16px;
  }

  .case-body p,
  .case-body li,
  .case-body blockquote {
    font-size: 17px;
    line-height: 1.6;
  }

  .case-body blockquote {
    margin: 28px 0;
    padding-left: 18px;
  }

  .source-back {
    white-space: normal;
  }

  .article-illustration {
    width: calc(100% + 12px);
    margin: 34px -6px 0;
  }

  .support-standfirst {
    margin-top: 34px;
    font-size: 18px;
  }

  .support-section {
    margin-top: 48px;
  }

  .support-promise {
    margin-block: 62px 56px;
  }

  .tier-card {
    padding: 24px 22px;
    border-left-width: 8px;
  }

  .upper-tiers {
    gap: 36px;
    margin-top: 40px;
  }

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

  .toggle-pill {
    min-width: 0;
    padding-inline: 10px;
  }

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

  .amount-grid label {
    flex-direction: column;
    align-items: stretch;
  }

  .amount-grid span {
    padding: 10px 14px 0;
  }

  .amount-grid input {
    padding: 8px 14px 13px;
  }

  .newsletter-page {
    --newsletter-gutter: 22px;
    --newsletter-masthead-top: 58px;
  }

  .newsletter-index {
    padding-block: 58px 78px;
  }

  .newsletter-title {
    font-size: 34px;
    line-height: 1.12;
  }

  .newsletter-tagline,
  .newsletter-issue-meta,
  .newsletter-cadence {
    font-size: 18px;
  }

  .newsletter-lead {
    margin-block-start: 46px;
  }

  .newsletter-content {
    padding-block: 48px 76px;
  }

  .newsletter-brief,
  .newsletter-brief.is-opening {
    padding-block: 44px 46px;
  }

  .newsletter-brief h2,
  .newsletter-index-card h2 {
    font-size: 25px;
  }

  .newsletter-brief p,
  .newsletter-signup p,
  .newsletter-close p,
  .newsletter-topics-link {
    font-size: 18px;
  }

  .newsletter-sources,
  .newsletter-caption p,
  .newsletter-caption p + p,
  .newsletter-index-card p,
  .newsletter-nav {
    font-size: 16px;
  }

  .newsletter-signup {
    padding-block: 48px;
  }

  .newsletter-signup form,
  .newsletter-nav,
  .newsletter-nav-links,
  .newsletter-languages {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-signup input,
  .newsletter-signup button {
    width: 100%;
    font-size: 18px;
  }

  .newsletter-issue-list {
    margin-block-start: 54px;
  }

  .newsletter-index-card {
    gap: 22px;
    padding-block: 28px;
  }

  .newsletter-nav {
    gap: 22px;
  }

  .newsletter-nav-links,
  .newsletter-languages {
    gap: 12px;
  }

  .meridian-copy {
    padding-bottom: 76px;
  }
}

@media (max-width: 380px) {
  .mission,
  .work,
  .site-footer,
  .article-hero,
  .article-body,
  .support-hero,
  .support-body {
    padding-inline: 18px;
  }

  h1,
  .article-hero h1,
  .support-hero h1 {
    font-size: 31px;
  }

  .dek {
    font-size: 18px;
  }

  .newsletter-page {
    --newsletter-gutter: 18px;
  }
}
