/* ===================================
   RGI PLATFORM CORE STYLES
   Extracted for layout stability
=================================== */

*{
  box-sizing:border-box;
}

html{
  scrollbar-gutter: stable;
}

body{
  margin:0;
  overflow-x:hidden;   /* HARD LOCK — prevents sideways page */
  background:#f9fafb;
}

/* container safety */

.container{
  max-width:1100px;
  margin:24px auto;
  padding:0 16px;
}

/* image protection */

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