/**
 * Hero Overlay Interaction Fix
 * Makes the hero overlay non-interactive while preserving visual effect
 */

/* Fix the blocking hero overlay */
.overlay.tophero.v2 {
  pointer-events: none !important;
}

/* Ensure any content within the hero that needs interaction still works */
.overlay.tophero.v2 > * {
  pointer-events: auto;
}