body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
}

/* Headings and paragraphs get sensible family + wrapping only.
   Size, weight, line-height, tracking come from typography.css utility
   classes applied in markup (display-*, headline-*, body-*, etc.). */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-base-900);
  text-wrap: balance;
}

p {
  max-width: var(--content-measure);
  text-wrap: pretty;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: var(--max-width-narrow); }
.container--wide { max-width: var(--max-width-wide); }

.section { padding-block: var(--space-2xl); }
.section--sm { padding-block: var(--space-xl); }

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