/* =========================================================
   Deocracy — Base styles
   Reset, typography defaults, document-level rules.
   Loaded after tokens.css.
   ========================================================= */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* Utility type ----------------------------------------- */
.trajan { font-family: var(--font-display); }
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--ink-3);
  text-transform: uppercase;
}

.rule-double {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  height: 4px;
  background: transparent;
}
