/* IF Initiative — base element defaults.
   Light, optional. Sets the brand face and sensible text colors. */

:root {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-heading);
  line-height: var(--lh-tight);
  margin: 0;
  text-wrap: balance;
}

p { text-wrap: pretty; }

a { color: var(--text-link); text-decoration: none; }

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