/* Header ------------------------------------------------------------------ */

/* Site title: navy, centered, no color change on hover (matches production). */
.site-header .wp-block-site-title a {
	color: #001887;
	text-decoration: none;
}

.site-header .wp-block-site-title a:hover,
.site-header .wp-block-site-title a:focus {
	color: #001887;
}

/* Nav row: language switcher sits inline, left of the menu items. */
.site-nav-row .gtranslate_wrapper,
.site-nav-row .switcher {
	display: inline-flex;
	align-items: center;
}

/* Primary navigation items: gray, semibold, navy underline that appears on
   hover -- the "underline pointer" effect from the old Elementor menu.
   The 20px horizontal padding widens the spacing to match production. */
.site-navigation .wp-block-navigation-item__content {
	color: #7a7a7a;
	font-weight: 600;
	position: relative;
	padding: 0 20px 4px;
}

.site-navigation .wp-block-navigation-item__content::after {
	content: "";
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 0;
	height: 3px;
	background-color: #001887;
	transform: scaleX(0);
	transition: transform 0.3s ease, opacity 0.3s ease;
	opacity: 0;
}

.site-navigation .wp-block-navigation-item__content:hover,
.site-navigation .wp-block-navigation-item__content:focus,
.site-navigation .current-menu-item .wp-block-navigation-item__content {
	color: #001887;
}

.site-navigation .wp-block-navigation-item__content:hover::after,
.site-navigation .wp-block-navigation-item__content:focus::after,
.site-navigation .current-menu-item .wp-block-navigation-item__content::after {
	transform: scaleX(1);
	opacity: 1;
}

/* Buttons ----------------------------------------------------------------- */

/* Light-blue button variant (e.g. "Visit Group" on the Contact page):
   light blue that turns navy on hover, matching production. The :root prefix
   raises specificity above theme.json's generated button background rule. */
:root .wp-block-button.is-style-light-blue .wp-block-button__link {
	background-color: #6ec1e4;
	color: #ffffff;
}

:root .wp-block-button.is-style-light-blue .wp-block-button__link:hover,
:root .wp-block-button.is-style-light-blue .wp-block-button__link:focus {
	background-color: #4054b2;
}
