/* Content protection
 *
 * Stops the iOS long-press "Save Image" sheet and image dragging. Text
 * selection is deliberately left alone so copy, translation and text-to-speech
 * tools keep working for visitors who rely on them.
 */

body.acv-protected img,
body.acv-protected picture,
body.acv-protected video {
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

/* Images inside links must stay clickable. */
body.acv-protected a img,
body.acv-protected button img {
    pointer-events: auto;
}
