/**
 * Global mobile viewport safeguards (included after tailwind.css via _mesa_tailwind.html).
 * overflow-x: clip prevents sideways page drag; inner regions keep overflow-x-auto for carousels.
 */
html {
    overflow-x: clip;
}
body {
    min-width: 0;
    overflow-x: clip;
}
iframe,
embed,
object {
    max-width: 100%;
}
