/* ============================================================
   main.css — STRUCTURAL ONLY
   Shared across all three sites (SLS, HD, SL)
   NO colours, NO fonts, NO visual opinions
   Each site loads its own identity CSS:
     SLS → sls.css  (template-sls-*.php)
     HD  → hd.css   (template-hd-*.php)
     SL  → sl.css   (template-sl-*.php)
   ============================================================ */

/* ── Base reset — in @layer base so Tailwind utilities win ─── */
@layer base {
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    font-size: 16px;
    scroll-behavior: smooth;
  }

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

/* ── Centring container — used by all three sites ───────────── */
/* Defined outside @layer so it beats Tailwind's layered version
   and the @layer base margin/padding reset above               */
.delimiter {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 86rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
