/**
 * Bolds and colors the "Get in Touch" link in the main navigation to make
 * it read as a call to action against the rest of the nav items.
 *
 * Scoped narrowly to the nav-item-content link whose href is "#contact"
 * (rather than a nav-wide selector) since core/navigation gives every menu
 * item the same generic classes -- there is no "Get in Touch"-specific
 * class to hook without adding one via the block editor's Advanced panel.
 * If the link's destination or label ever changes, update the href here to
 * match.
 */

.wp-block-navigation a.wp-block-navigation-item__content[href="#contact"] {
	font-weight: 700;
	color: var(--wp--preset--color--green);
}
