/* ==========================================================================
   SB Law Group, PLLC — Reset
   Minimal modern reset. Loaded after variables.css, before styles.css.
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-on-surface);
  background: var(--color-background);
  line-height: 1.6;
  font-size: var(--text-base);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--color-primary);
}

ul {
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}
