#site-header .header-nav-item {
	position: relative;
	display: flex;
	align-items: center;
}

#site-header nav .header-nav-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

#site-header .header-nav-link__chevron {
	display: inline-flex;
	width: 14px;
	height: 14px;
}

#site-header .header-nav-link__chevron svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

#site-header .header-nav-submenu {
	position: absolute;
	top: calc(100% - 1px);
	left: 0;
	z-index: 10000;
	min-width: 250px;
	padding: 12px 0;
	border: 1px solid rgba(31, 15, 38, 0.12);
	background: #fff;
	box-shadow: 0 18px 38px rgba(31, 15, 38, 0.12);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.16s ease, visibility 0.16s ease;
}

#site-header .header-nav-item:hover .header-nav-submenu,
#site-header .header-nav-item:focus-within .header-nav-submenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

#site-header .header-nav-submenu a {
	display: block;
	padding: 14px 20px;
	color: #1f0f26;
	font-size: 16px;
	line-height: 1.2;
	text-transform: none;
	white-space: nowrap;
}

#site-header .header-nav-submenu a:hover,
#site-header .header-nav-submenu a:focus {
	background: rgba(21, 100, 85, 0.08);
	color: var(--wp--preset--color--primary);
}

.mobile-menu-submenu {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 10px 0 18px 28px;
}

.mobile-menu-items nav .mobile-menu-item--has-children > a {
	margin-bottom: 12px;
}

.mobile-menu-items nav .mobile-menu-submenu a {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 0;
	padding: 13px 0;
	border-bottom-color: rgba(0, 0, 0, 0.08);
}
