/* Neutralize Tailwind preflight on official pages */
html.official-site-active img {
  max-width: none;
}

html.official-site-active main {
  min-height: unset;
}

/* Mobile: hide page scrollbar (scroll still works) */
@media (max-width: 880px) {
  html.official-site-active {
    scroll-behavior: auto;
  }
  html.official-site-active,
  html.official-site-active body {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  html.official-site-active::-webkit-scrollbar,
  html.official-site-active body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}
