/*******************************
    Computed Typography
*******************************/

/*
  These variables will most likely not need to be modified but are derived from theming
  variables to handle common typography utilities
*/

:root {

  /* -------------------
       Typography
  -------------------- */

  /* Maximum Single Character Glyph Width, aka Capital "W" */
  --glyph-width: 1.1em;

  /* Used to match floats with text */
  --line-height-offset: calc((var(--line-height) - 1em) / 2);
  --header-line-height-offset: calc(var(--header-line-height) - 1em) / 2;

  /* Header Spacing */
  --header-calc-top-margin: calc(var(--header-top-margin) - var(--header-line-height-offset));
  --header-bottom-margin: 1rem;
  --header-margin: var(--header-calc-top-margin) 0em var(--header-bottom-margin);


}
