

.column {
  max-width: var(--column);
  margin: 0 auto;
  padding: var(--space-6) var(--space-3) var(--space-8);
}

.column--wide {
  max-width: var(--column-wide);
  padding-left: var(--column-wide-inset);
  padding-right: var(--column-wide-inset);
}

.prose {
  margin: 0 0 var(--space-3);
  max-width: var(--measure);
  font-size: var(--size-500);
  line-height: var(--line-height-prose);
  text-wrap: pretty;
}

.prose-muted {
  margin: 0 0 var(--space-3);
  max-width: var(--measure);
  font-size: var(--size-500);
  line-height: var(--line-height-prose);
  color: var(--color-text-muted);
  text-wrap: pretty;
}

.section-heading {
  margin: 0 0 var(--space-2);
  font-family: var(--font-serif);
  font-size: var(--size-700);
  font-weight: var(--weight-bold);
  line-height: var(--line-height-heading);
  letter-spacing: var(--letter-spacing-heading);
  color: var(--color-text-primary);
}

.footnote {
  margin: var(--space-1) 0 0;
  font-size: var(--size-100);
  line-height: var(--line-height-prose);
  opacity: 0.75;
}

.section-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}

.section-stack > .section-heading {
  margin-bottom: 0;
}

.section-divider {
  border-top: var(--border-width-hairline) solid var(--color-border-subtle);
  padding-top: clamp(32px, 4vw, 48px);
  margin-top: clamp(56px, 7vw, 96px);
}

.heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}

.heading-row .section-heading {
  margin: 0;
}

.section-cta {
  display: flex;
  justify-content: center;
  padding-top: var(--space-2);
}

.text-muted-note {
  margin: 0;
  font-size: var(--size-400);
  color: var(--color-text-muted);
}

.text-accent {
  color: var(--color-mark-accent);
}

.figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.cta-row .btn {
  flex: 1 1 auto;
}

.statement-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.statement-list__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1) var(--space-4);
  padding: var(--space-2) 0;
  border-bottom: var(--border-width-hairline) solid var(--color-border-subtle);
}

.statement-list__row:last-child {
  border-bottom: none;
}

.statement-list__claim {
  flex: 1 1 22ch;
  min-width: 0;
  font-family: var(--font-serif);
  font-size: var(--size-500);
  font-weight: var(--weight-bold);
  letter-spacing: var(--letter-spacing-heading);
  color: var(--color-text-primary);
  text-wrap: balance;
}

.statement-list__support {
  flex: 1 1 26ch;
  min-width: 0;
  max-width: var(--measure);
  color: var(--color-text-muted);
  text-wrap: pretty;
}

.statement-card {
  display: flex;
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 56px);
  background-color: var(--color-surface-raised);
  border: var(--border-width-hairline) solid var(--color-border-subtle);
  border-radius: var(--radius-default);
}

.statement-card::before {
  content: "";
  flex: none;
  width: 3px;
  border-radius: var(--radius-pill);
  background-color: var(--color-mark-accent);
}

.statement-card__text {
  margin: 0;
  flex: 1;
  font-family: var(--font-serif);
  font-size: var(--size-700);
  line-height: var(--line-height-heading);
  letter-spacing: var(--letter-spacing-heading);
  text-wrap: pretty;
}

.statement-card__lead {
  display: block;
  margin-bottom: 0.5em;
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  

  text-wrap: balance;
}

.statement-card__follow {
  display: block;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.rule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 76ch;
}

.rule-list__item {
  position: relative;
  padding: clamp(14px, 2vw, 18px) 0 clamp(14px, 2vw, 18px) 1.4rem;
  border-top: var(--border-width-hairline) solid var(--color-border-subtle);
  font-size: var(--size-400);
  line-height: var(--line-height-body);
  text-wrap: pretty;
}

.rule-list__item:last-child {
  border-bottom: var(--border-width-hairline) solid var(--color-border-subtle);
}

.rule-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(clamp(14px, 2vw, 18px) + 0.62em);
  width: var(--list-bullet-size);
  height: var(--list-bullet-size);
  border-radius: var(--radius-pill);
  background-color: var(--list-bullet-color);
}
