/* Image Fancybox overlay indicator */
.wp-block-image.has-fancybox,
figure.wp-block-image.has-fancybox {
  position: relative;
}

.wp-block-image.has-fancybox::after,
figure.wp-block-image.has-fancybox::after {
  content: "\f002"; /* Font Awesome magnifying glass (fa-search) */
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", "Font Awesome 5 Free";
  font-weight: 900; /* solid */
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 14px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.7);
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 5px;
  border-radius: 3px;
  z-index: 2;
  pointer-events: none; /* do not interfere with clicks */
}

/* Ensure the linked image remains clickable above figure overlays */
.wp-block-image.has-fancybox a.has-fancybox-link {
  position: relative;
  z-index: 1;
}
