.wp-block-image a {
  cursor: zoom-in;
}

.wp-block-uagb-image a {
  cursor: zoom-in;
}

/* Tooltip for image blocks on hover */
.wp-block-image a:hover::after,
.wp-block-uagb-image a:hover::after {
  content: 'Click to zoom';
  position: absolute;
  left: 50%;
  top: 100%;
  margin-top: 10px;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 100;
}

/* Ensure parent is positioned for absolute tooltip */
.wp-block-image,
.wp-block-uagb-image {
  position: relative;
}
