/*
 * WildfireAction.org offline export — plain-code hover dropdown for the
 * "Language" nav item (desktop). No JS involved: the base theme CSS hides
 * every nested <ul> inside .elementor-nav-menu by default
 * (".elementor-nav-menu ul { display:none }"), and previously only
 * Elementor's own JS revealed it on click. This shows it on hover/focus
 * instead, purely with CSS.
 */
.elementor-nav-menu--main li.menu-item-has-children {
	position: relative;
}

.elementor-nav-menu--main li.menu-item-has-children:hover > ul.sub-menu,
.elementor-nav-menu--main li.menu-item-has-children:focus-within > ul.sub-menu {
	display: block;
}

.elementor-nav-menu--main .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9999;
	min-width: 160px;
	margin: 0;
	padding: 0;
	list-style: none;
	background: #fff;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
