/* =============================================================
   NLIGN — Base
   Global resets, body, typography, and link defaults.
   ============================================================= */

/* ── Box model & font smoothing ────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* ── Body ───────────────────────────────────────────────────── */
body,
body.nlign-body {
  background-color: var(--nlign-color-onyx);
  color: var(--nlign-color-dust-grey);
  font-family: var(--nlign-body-font-family);
  font-size: var(--nlign-body-font-size);
  line-height: var(--nlign-body-line-height);
}

/* ── Links ──────────────────────────────────────────────────── */
a {
  text-decoration: none;
  color: inherit;
  transition: color var(--nlign-transition);
}

/* ── Focus ──────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 3px;
}

/* ── Images ─────────────────────────────────────────────────── */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Lists (reset within theme components) ───────────────────── */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ── WordPress alignment helpers ────────────────────────────── */
.alignleft  { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { text-align: center; margin-inline: auto; display: block; }
