/**
 * Discourage casual saving of artwork (drag, callout, selection).
 * OS-level screenshots and external cameras cannot be blocked from a web page;
 * legal copy + these UX friction layers are the practical mitigation.
 */

.gallery-main .gallery-img,
.gallery-main .gallery-duo__imgwrap img,
.gallery-main .gallery-bento__imgwrap img,
.gallery-lightbox__img,
.gallery-dropframe__img,
.philo-main .philo-img,
.philo-main .philo-portrait__bg,
.philo-main .philo-portrait__fg {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}
