/* kr3m base element defaults — light utility layer consumers inherit */
/* Synced 1:1 from kr3m Design System — tokens/base.css. Do not edit by hand. */
/* WordPress-specific adjustments belong in ../style.css, not here. */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin: 0;
}
h1 { font-size: var(--fs-h1); font-weight: var(--fw-extrabold); }
h2 { font-size: var(--fs-h2); font-weight: var(--fw-bold); }
h3 { font-size: var(--fs-h3); font-weight: var(--fw-bold); }
h4 { font-size: var(--fs-h4); font-weight: var(--fw-semibold); }

p { margin: 0; text-wrap: pretty; }

/* Uppercase kicker / eyebrow label — a recurring kr3m deck device */
.kr-overline {
  font-size: var(--fs-overline);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--text-accent);
}

a { color: var(--kr-red); text-decoration: none; transition: color var(--dur-fast) var(--ease-standard); }
a:hover { color: var(--kr-red-600); text-decoration: underline; }

::selection { background: rgba(234,46,66,.20); }
