/**
 * Anniversary Logo Override
 *
 * Hides the default header logo (icon + text SVG) and replaces it
 * with the 10th anniversary logo via background-image.
 *
 * Enable/disable from: Appearance > Anniversary Logo
 */

/* Hide the icon (barn2 geometric mark) */
.page-navigation__title a > .icon {
	display: none !important;
}

/* Hide the inline BARN2 text SVG */
.page-navigation__title a > svg {
	display: none !important;
}

/* Show anniversary logo as background on the link */
.page-navigation__title a {
	display: block !important;
	background-image: url('../svg/barn2-logo--anniversary.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	min-width: 14rem;
	min-height: 3rem;
}

/* Sticky nav: smaller logo */
.is-transitioning .page-navigation__title a,
.show-sticky-nav .page-navigation__title a {
	min-height: 2.5rem;
	min-width: 11.5rem;
}

/* Mobile: smaller logo */
@media (max-width: 61.9375rem) {
	.page-navigation__title a {
		min-height: 2.1875rem;
		min-width: 10rem;
	}
}
