/* Block iOS save sheet + selection */
img.protect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Optional: overlay to absorb taps while keeping click via parent link */
.protect-wrap {
  position: relative;
  display: inline-block;
}
.protect-wrap img.protect {
  pointer-events: none; /* stops long-press on the img */
}
.protect-wrap a.tap-capture,
.protect-wrap .tap-capture {
  position: absolute; inset: 0;
  background: transparent;
  display: block;
}

img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

