/*
 * ALOPTWAH site-wide image interaction deterrence.
 * This discourages casual right-click, dragging, selection, and mobile
 * long-press menus without changing the site's normal links or layout.
 */
html:not(.wp-toolbar) body img,
html:not(.wp-toolbar) body picture,
html:not(.wp-toolbar) body figure,
html:not(.wp-toolbar) body a:has(> img),
html:not(.wp-toolbar) body a:has(picture img) {
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -webkit-touch-callout: none !important;
}

html:not(.wp-toolbar) body img {
    pointer-events: auto;
}

/* Protect images created inside the museum lightbox as well. */
.aloptwah-lightbox img,
.aloptwah-lightbox-stage,
.aloptwah-lightbox-filmstrip,
.aloptwah-lightbox-thumb {
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -webkit-touch-callout: none !important;
}
