/* Hides the scrollbar on the swipeable image galleries built by assets/js/gallery.js.
   Tailwind has no built-in utility for this, so it lives here instead of inline. */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
