/* Site-wide rules every page shares, regardless of its own layout/type system. */
* { box-sizing: border-box; }

/* Links are color-only, no underline. Selector list covers every
   link-styled element across the site (plain anchors, footer nav,
   breadcrumbs, and button-as-link elements in calculators). */
a, a:visited, .prose button, .crumb a {
  color: var(--accent-text);
  text-decoration: none;
}
footer a, footer a:visited, footer button {color: var(--g-text); text-decoration: none;}
footer a:hover, footer button:hover { color: var(--g-text); text-decoration: none;}
