/* set a baseline for how some typography rules should work */
:root {
  line-height: var(--s0);
  font-size: var(--font-size);
  font-family: var(--font-body);
  color: var(--font-color);
  font-weight: var(--font-weight);
}

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

article a {
  text-decoration: underline;
}

a.button {
  text-decoration: none;
}

p {
  line-height: 1.5;
  margin: unset;
}

h1,
h2,
h3,
h4,
h5 {
  color: inherit;
  font-weight: 600;
  letter-spacing: 0.03ch;
  line-height: var(--line-height);
  margin: unset;
}

ul,
menu {
  padding: unset;
  margin: unset;
}

li>ul {
  padding-left: var(--s0);
}

ul.unstyled {
  list-style: none;
}

i {
  color: var(--color-muted);
}

hr {
  height: var(--border-thin);
  background: var(--color-lightish);
  border: none;
  margin: inherit;
}

dd {
  margin-inline-start: 0;
}

dt {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-darkish);
  font-feature-settings: "c2sc";
  font-variant: small-caps;
  letter-spacing: calc(var(--s-7)/2);
  font-size: .74074rem;
}

pre {
  margin: 0;
  font-family: var(--font-mono);
}

/*code {*/
/*  font-family: var(--font-mono);*/
/*  font-size: 0.9em;*/
/*  background-color: var(--color-lightish);*/
/*  padding: 0.1em 0.3em;*/
/*  border-radius: var(--border-radius);*/
/*}*/
