/* ============================================================
   wwb-shared.css  .  SINGLE SOURCE OF TRUTH
   Every WWB page inlines this via wwb-build.py. No page defines
   its own colors or fonts. Change a value here, run the build,
   and it changes on every page at once.
   Values from WWB_Brand_and_Collateral.md.
   ============================================================ */
:root{
  /* Navy is Old Glory Blue, the one navy. The earlier near-black is retired. */
  --navy:      #002868;
  --deep:      #002868;
  --deep-2:    #0a3a7d;
  --deep-3:    #123f8f;

  /* Aqua */
  --ocean:     #00aecb;
  --ocean-hi:  #00aecb;   /* retired as a separate color; resolves to the one aqua */
  --ocean-dim: rgba(0,174,203,0.10);

  /* Neutrals */
  --ink:       #1d1d1f;
  --slate:     #86868b;
  --mist:      #eef2f5;
  --sand:      #f7f3ec;
  --linen:     #faf8f4;
  --white:     #ffffff;

  /* Type. Arial everywhere on the web; the logo is Arial Bold. */
  --serif:     Arial, "Liberation Sans", Helvetica, sans-serif;
  --sans:      Arial, "Liberation Sans", Helvetica, sans-serif;
  --leading:   1.40;

  /* Tracking scale, Apple style: big type tight, small type open. */
  --track-display: -0.03em;
  --track-heading: -0.02em;
  --track-sub:     -0.01em;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}
em{font-style:normal}
body{font-family:var(--sans);color:var(--ink)}
p{line-height:var(--leading)}
