/* Restores the hover-dropdown that Elementor Pro's dynamically-generated CSS
   provided on the live WordPress site but the static crawl did not capture.
   SmartMenus JS + the submenu markup + item styling all survived the crawl;
   only the rule that reveals the panel on hover was missing (0 .sub-menu
   display rules in the crawled stylesheets). Added by postprocess_blissity.py. */
.elementor-nav-menu .menu-item-has-children:hover > .sub-menu,
.elementor-nav-menu .menu-item-has-children:focus-within > .sub-menu,
.elementor-nav-menu .sub-menu.elementor-nav-menu--dropdown:hover {
  display: block !important;
}
/* keep the panel reachable: no gap between parent and submenu on hover */
.elementor-nav-menu .menu-item-has-children > .sub-menu { margin-top: 0; }
