/* ─────────────────────────────────────────────────────────────────
   base.css — Shared foundation styles for the entire project.
   Includes: reset, fonts, icons, smooth scroll fallback,
             custom link-preview tooltip.
   ──────────────────────────────────────────────────────────────── */

/* Smooth scroll fallback (for when JS hasn't loaded yet) */
html {
    scroll-behavior: smooth;
}

/* Material Symbols default settings */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Font defaults */
body {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3 {
    font-family: 'Manrope', sans-serif;
}

