/* ─────────────────────────────────────────────────────────────────────────
   JorTech — base.css
   Box-model reset, body defaults, links, horizontal rules.
   ───────────────────────────────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background:   var(--bg);
  color:        var(--text);
  font-family:  var(--font);
  line-height:  1.6;
  overflow-x:   hidden;
}

a {
  color:           var(--titleColor);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

hr.divider {
  border:     none;
  border-top: 1px solid var(--border);
  margin:     0;
}
