/* responsive.css — companion to responsive.js
   Removes fixed min-width constraints so the JS transform can take effect.
   No visual design changes are made — desktop layout is fully preserved. */

html {
  overflow-x: hidden;
}

@media screen and (max-width: 1365px) {
  body {
    min-width: 0 !important;
    max-width: none !important;
    overflow: visible !important;
    margin: 0 !important;
  }
  #contain {
    min-width: 0 !important;
    border-left: none !important;
    border-right: none !important;
  }
}
