/* ==========================================================================
   NX GLOBAL BASE & TYPOGRAPHY RESET
   Pasang di: Site Settings > Custom CSS
   ========================================================================== */

/* 1. Box-sizing reset agar padding & border tidak merusak kalkulasi lebar */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Hardware-accelerated text rendering & smooth scaling */
html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* 3. Base Body Defaults (Clean Slate) */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Mencegah horizontal layout shift */
}

/* 4. Reset default heading & paragraph margins */
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}