/*
 * Discourage saving or dragging deal images while leaving text selection,
 * navigation, logos, and accessibility metadata untouched.
 */
:where(
    body.single-post article .entry-content img,
    body.single-post article .post-thumbnail img,
    body.single-post article .wp-block-post-featured-image img,
    .ct-posts-shortcode .entry-card img,
    .entries .entry-card img,
    body.search article.post img
) {
    -webkit-touch-callout: none !important;
    -webkit-user-drag: none !important;
    user-drag: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
}
