/* ==========================================================================
   SBIC — style.css
   Global layout guards & horizontal overflow prevention
   ========================================================================== */

html,
body {
  overflow-x: hidden !important;
  max-width: 100vw;
}

body {
  position: relative;
}

/* Prevent flex/grid children from forcing horizontal scroll */
.container,
.header__inner,
.brand-dominance-container {
  max-width: 100%;
}
