/* ============================================================
   BASE — minimal element defaults wired to the token system.
   Keeps specimen cards and consuming pages consistent.
   ============================================================ */

:root {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: var(--type-body-md-size);
  line-height: var(--type-body-md-lh);
  font-weight: var(--weight-regular);
  color: var(--color-body);
  background: var(--color-canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Links are the blue link role — NEVER the primary-button color. */
a {
  color: var(--color-link);
  text-decoration: none;
}
a:hover {
  color: var(--color-link-active);
}

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