/* Image watermark overlay (feature: image protection)
   The overlay is an absolutely positioned pill; its left/top are computed in JS
   so it sits at the bottom-right corner of the image without moving the image in
   the DOM (keeps <picture> and lightbox/fancybox layouts intact). */
.stopclic-wm{position:absolute;left:0;top:0;padding:2px 8px;font:600 12px/1.4 Arial,Helvetica,sans-serif;color:#fff;background:rgba(0,0,0,.45);border-radius:3px;pointer-events:none;line-height:normal;max-width:90%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;z-index:2}

/* Print protection (feature: print notice / block) */
.stopclic-print-note{display:none}
@media print{
    .stopclic-print-note{display:block;text-align:center;padding:12px;margin-top:20px;border-top:1px solid #000;font:12px/1.5 Arial,Helvetica,sans-serif;color:#000}
    html.stopclic-print-block body > *:not(.stopclic-print-note){display:none !important}
    html.stopclic-print-block .stopclic-print-note{position:fixed;top:35%;left:0;right:0;border:none;font-size:16px;padding:0 30px}
}
