.bh-nav {
	--bh-green: var(--burgdorf-green, #008c4a);
	--bh-green-dark: var(--burgdorf-green-dark, #006536);
	--bh-ink: #0d1110;
	--bh-muted: #68706b;
	--bh-paper: #f4f5f1;
	--bh-line: rgba(13, 17, 16, 0.14);
	--bh-page-padding: clamp(20px, 4.2vw, 76px);
	position: sticky !important;
	top: 0;
	z-index: 1000;
	width: 100%;
	background: #fff;
	color: var(--bh-ink);
	font-family: inherit;
	border-bottom: 0 !important;
	box-shadow: none !important;
}

.admin-bar .bh-nav {
	top: 32px;
}

.bh-nav,
.bh-nav * {
	box-sizing: border-box;
}

.bh-nav a {
	color: inherit;
	text-decoration: none;
}

.bh-nav button,
.bh-nav input {
	font: inherit;
}

.bh-nav button {
	appearance: none;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.bh-nav svg {
	display: block;
	width: 1.1em;
	height: 1.1em;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.bh-nav__utility {
	min-height: 38px;
	background: #080b09;
	color: #fff;
}

.bh-nav__utility-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(230px, 340px) minmax(0, 1fr);
	align-items: center;
	gap: 30px;
	min-height: 38px;
	padding: 0 var(--bh-page-padding);
}

.bh-nav__quick-links,
.bh-nav__service-links {
	display: flex;
	align-items: center;
	gap: clamp(13px, 1.35vw, 25px);
	white-space: nowrap;
}

.bh-nav__quick-links a,
.bh-nav__service-links > a:not(.bh-nav__social) {
	position: relative;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.035em;
	line-height: 38px;
	opacity: 0.82;
	transition: color 160ms ease, opacity 160ms ease;
}

.bh-nav__quick-links a::after,
.bh-nav__service-links > a:not(.bh-nav__social)::after {
	position: absolute;
	right: 0;
	bottom: 5px;
	left: 0;
	height: 2px;
	background: var(--bh-green);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease;
}

.bh-nav__quick-links a:hover,
.bh-nav__quick-links a:focus-visible,
.bh-nav__service-links > a:hover,
.bh-nav__service-links > a:focus-visible {
	opacity: 1;
}

.bh-nav__quick-links a:hover::after,
.bh-nav__quick-links a:focus-visible::after,
.bh-nav__service-links > a:hover::after,
.bh-nav__service-links > a:focus-visible::after {
	transform: scaleX(1);
}

.bh-nav__search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 30px;
	align-items: center;
	gap: 3px;
	width: 100%;
	height: 30px;
	margin: 0;
	padding: 2px 2px 2px 12px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.08);
	transition: border-color 160ms ease, background 160ms ease;
}

.bh-nav__search:focus-within {
	border-color: var(--bh-green);
	background: rgba(255, 255, 255, 0.12);
}

.bh-nav__search input[type="search"] {
	appearance: none;
	width: 100%;
	min-width: 0;
	height: 24px;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 0 !important;
	border-radius: 0;
	outline: 0;
	background: transparent;
	box-shadow: none !important;
	color: #fff;
	font-size: 11px;
	line-height: 24px;
}

.bh-nav__search input[type="search"]::placeholder {
	color: rgba(255, 255, 255, 0.62);
	opacity: 1;
}

.bh-nav__search button {
	display: grid;
	place-items: center;
	width: 26px;
	height: 24px;
	min-height: 0;
	margin: 0;
	padding: 0;
	border-radius: 2px;
	background: var(--bh-green);
	color: #fff;
}

.bh-nav__search button:hover,
.bh-nav__search button:focus-visible {
	background: var(--bh-green-dark);
}

.bh-nav__search button svg {
	width: 13px;
	height: 13px;
}

.bh-nav__service-links {
	justify-content: flex-end;
}

.bh-nav__service-links .bh-nav__social {
	display: grid;
	place-items: center;
	width: 25px;
	height: 25px;
	border: 1px solid #fff !important;
	border-radius: 4px;
	background: #fff !important;
	color: var(--bh-ink) !important;
	transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.bh-nav__social + .bh-nav__social {
	margin-left: -7px;
}

.bh-nav__service-links .bh-nav__social:hover,
.bh-nav__service-links .bh-nav__social:focus-visible {
	border-color: var(--bh-green) !important;
	background: var(--bh-green) !important;
	color: #fff !important;
}

.bh-nav__social svg {
	width: 12px;
	height: 12px;
}

.bh-nav__social .bh-nav__brand-svg,
.bh-nav__social .bh-nav__brand-svg path {
	fill: var(--bh-ink) !important;
	stroke: none !important;
}

.bh-nav__social:hover .bh-nav__brand-svg,
.bh-nav__social:hover .bh-nav__brand-svg path,
.bh-nav__social:focus-visible .bh-nav__brand-svg,
.bh-nav__social:focus-visible .bh-nav__brand-svg path {
	fill: #fff !important;
}

.bh-nav__main-row {
	position: relative;
	z-index: 2;
	height: 94px;
	background: #fff;
}

.bh-nav__main-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 100%;
	padding: 0 var(--bh-page-padding);
}

.bh-nav__primary {
	display: flex;
	grid-column: 1;
	align-items: stretch;
	justify-self: start;
	gap: clamp(18px, 2.25vw, 43px);
	height: 100%;
}

.bh-nav__primary-group {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}

.bh-nav__primary-group::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 5px;
	background: var(--bh-green);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.bh-nav__primary-group:hover::after,
.bh-nav__primary-group:focus-within::after,
.bh-nav__primary-group.is-active::after {
	transform: scaleX(1);
}

.bh-nav__primary-link {
	display: flex;
	align-items: center;
	height: 100%;
	font-size: clamp(15px, 1.15vw, 18px);
	font-weight: 900;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.bh-nav__primary-toggle {
	display: grid;
	place-items: center;
	width: 28px;
	height: 40px;
	margin-left: 1px;
	color: var(--bh-green);
}

.bh-nav__primary-toggle svg {
	width: 13px;
	height: 13px;
	transition: transform 180ms ease;
}

.bh-nav__primary-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.bh-nav__logo {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	width: min(240.5px, 27.3vw);
	height: 101.4px;
	transform: translate(-50%, -50%);
}

.bh-nav__logo-image {
	display: block;
	width: auto;
	max-width: 100%;
	height: 93.6px;
	object-fit: contain;
}

.bh-nav__logo-fallback {
	color: var(--bh-green);
	font-size: 17px;
	font-weight: 950;
	line-height: 0.9;
	text-align: center;
	text-transform: uppercase;
}

.bh-nav__main-actions {
	display: flex;
	grid-column: 3;
	align-items: center;
	justify-self: end;
}

.bh-nav__mobile-toggle,
.bh-nav__mobile-utility {
	display: none;
}

.bh-nav__mega {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 1;
	max-height: calc(100vh - 132px);
	overflow: auto;
	border-top: 1px solid var(--bh-line);
	background: #fff;
	box-shadow: 0 28px 60px rgba(6, 12, 9, 0.2);
}

.bh-nav__mega[hidden] {
	display: none;
}

.bh-nav__mega-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	min-height: 74px;
	padding: 12px var(--bh-page-padding);
	background: var(--bh-ink);
	color: #fff;
}

.bh-nav__mega-heading > div {
	display: flex;
	align-items: baseline;
	gap: 18px;
}

.bh-nav__mega-heading strong {
	font-size: clamp(22px, 2vw, 32px);
	font-weight: 950;
	letter-spacing: -0.035em;
}

.bh-nav__mega-heading span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.bh-nav__overview-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 36px;
	padding: 0 16px;
	background: var(--bh-green);
	color: #fff !important;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.075em;
	text-transform: uppercase;
	transition: background 160ms ease, transform 160ms ease;
}

.bh-nav__overview-link:hover,
.bh-nav__overview-link:focus-visible {
	background: var(--bh-green-dark);
	transform: translateY(-1px);
}

.bh-nav__overview-link svg {
	width: 17px;
	height: 17px;
}

.bh-nav__mega-close {
	display: none;
}

.bh-nav__mega-content {
	width: 100%;
	padding: clamp(24px, 3.2vw, 48px) var(--bh-page-padding);
}

.bh-nav__eyebrow {
	display: block;
	margin-bottom: 8px;
	color: var(--bh-green);
	font-size: 10px;
	font-weight: 950;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.bh-nav__link-list {
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.bh-nav__link-list li {
	margin: 0;
	border-top: 1px solid var(--bh-line);
}

.bh-nav__link-list li:last-child {
	border-bottom: 1px solid var(--bh-line);
}

.bh-nav__link-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 42px;
	font-size: 13px;
	font-weight: 800;
	transition: color 150ms ease, padding 150ms ease;
}

.bh-nav__link-list a:hover,
.bh-nav__link-list a:focus-visible {
	padding-left: 5px;
	color: var(--bh-green-dark);
}

.bh-nav__link-list svg {
	width: 17px;
	height: 17px;
	color: var(--bh-green);
}

.bh-nav__news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.bh-nav__news-tile {
	position: relative;
	display: block;
	min-height: clamp(230px, 21vw, 310px);
	overflow: hidden;
	border: 1px solid var(--bh-line);
	transition: border-color 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}

.bh-nav__news-tile:hover,
.bh-nav__news-tile:focus-visible {
	border-color: var(--bh-green);
	box-shadow: 0 13px 30px rgba(10, 50, 29, 0.1);
	transform: translateY(-3px);
}

.bh-nav__news-tile--black {
	border-color: var(--bh-ink);
	background: var(--bh-ink);
	color: #fff !important;
}

.bh-nav__news-tile--white {
	background: #fff;
	color: var(--bh-ink) !important;
}

.bh-nav__news-tile--green {
	border-color: var(--bh-green);
	background: var(--bh-green);
	color: #fff !important;
}

.bh-nav__news-image {
	position: absolute;
	inset: 0;
	display: block;
	background-position: center;
	background-size: cover;
	opacity: 0.1;
	transform: scale(1.001);
	transition: transform 320ms ease;
}

.bh-nav__news-tile:hover .bh-nav__news-image,
.bh-nav__news-tile:focus-visible .bh-nav__news-image {
	transform: scale(1.045);
}

.bh-nav__news-tile-content {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: inherit;
	padding: clamp(24px, 2.6vw, 40px);
	flex-direction: column;
	align-items: flex-start;
}

.bh-nav__news-label {
	font-size: 10px;
	font-weight: 950;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.bh-nav__news-tile--black .bh-nav__news-label,
.bh-nav__news-tile--green .bh-nav__news-label {
	color: #fff;
	opacity: 0.8;
}

.bh-nav__news-tile--white .bh-nav__news-label {
	color: var(--bh-green);
}

.bh-nav__news-tile-content > strong {
	margin-top: 22px;
	font-size: clamp(28px, 3vw, 48px);
	font-weight: 950;
	letter-spacing: -0.05em;
	line-height: 0.98;
}

.bh-nav__news-tile-content > small {
	margin-top: 13px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
}

.bh-nav__news-tile--black small,
.bh-nav__news-tile--green small {
	color: rgba(255, 255, 255, 0.78);
}

.bh-nav__news-tile--white small {
	color: var(--bh-muted);
}

.bh-nav__news-tile-content > em {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: auto;
	padding-top: 28px;
	font-size: 11px;
	font-style: normal;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bh-nav__news-tile-content > em svg {
	width: 17px;
	height: 17px;
}

.bh-nav__teams-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	padding-top: 0;
	padding-bottom: 0;
}

.bh-nav__team-column {
	padding: clamp(28px, 3vw, 46px) clamp(22px, 2.6vw, 40px) clamp(32px, 3.2vw, 50px);
	border-right: 1px solid var(--bh-line);
}

.bh-nav__team-column:first-child {
	padding-left: 0;
}

.bh-nav__team-column--male {
	padding-right: 0;
	border-right: 0;
}

.bh-nav__team-column--performance {
	position: relative;
}

.bh-nav__team-column--performance::before {
	position: absolute;
	top: 0;
	right: 24px;
	left: 0;
	height: 5px;
	background: var(--bh-green);
	content: "";
}

.bh-nav__team-column h2,
.bh-nav__club-column h2 {
	margin: 0;
	color: var(--bh-ink);
	font-size: clamp(24px, 2.25vw, 34px);
	font-weight: 950;
	letter-spacing: -0.045em;
	line-height: 1;
}

.bh-nav__team-column > small {
	display: block;
	margin-top: 8px;
	color: var(--bh-muted);
	font-size: 11px;
	font-weight: 700;
}

.bh-nav__shared-teams {
	display: grid;
	grid-column: 2 / 4;
	grid-template-columns: minmax(0, 1.6fr) minmax(235px, 0.7fr);
	gap: 14px;
	margin: 0 0 clamp(30px, 3.2vw, 48px) clamp(22px, 2.6vw, 40px);
}

.bh-nav__mixed-teams,
.bh-nav__ball-group {
	padding: 22px 25px;
	background: var(--bh-paper);
}

.bh-nav__mixed-teams {
	display: grid;
	grid-template-columns: minmax(170px, 0.55fr) minmax(0, 1.45fr);
	align-items: center;
	gap: 24px;
}

.bh-nav__mixed-teams h3,
.bh-nav__ball-group h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 950;
	letter-spacing: -0.025em;
}

.bh-nav__mixed-teams small,
.bh-nav__ball-group small {
	display: block;
	margin-top: 6px;
	color: var(--bh-muted);
	font-size: 11px;
	line-height: 1.35;
}

.bh-nav__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.bh-nav__chips a {
	padding: 7px 10px;
	border: 1px solid var(--bh-line);
	background: #fff;
	font-size: 11px;
	font-weight: 850;
	transition: border-color 150ms ease, background 150ms ease;
}

.bh-nav__chips a:hover,
.bh-nav__chips a:focus-visible {
	border-color: var(--bh-green);
	background: var(--bh-green);
	color: #fff;
}

.bh-nav__ball-group {
	display: flex;
	flex-direction: column;
	background: var(--bh-green);
	color: #fff !important;
	transition: background 160ms ease;
}

.bh-nav__ball-group:hover,
.bh-nav__ball-group:focus-visible {
	background: var(--bh-green-dark);
}

.bh-nav__ball-group .bh-nav__eyebrow {
	color: #fff;
	opacity: 0.78;
}

.bh-nav__ball-group h3 {
	color: #fff !important;
}

.bh-nav__ball-group small {
	color: rgba(255, 255, 255, 0.7);
}

.bh-nav__ball-group em {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 16px;
	font-size: 10px;
	font-style: normal;
	font-weight: 900;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.bh-nav__club-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.bh-nav__club-column {
	min-height: 330px;
	padding: 27px;
	border: 1px solid var(--bh-line);
	background: #fff;
}

.bh-nav__club-column--soft {
	background: var(--bh-paper);
}

.bh-nav__club-column--dark {
	border-color: var(--bh-ink);
	background: var(--bh-ink);
	color: #fff;
}

.bh-nav__club-column--dark h2 {
	color: #fff;
}

.bh-nav__club-column--dark .bh-nav__eyebrow,
.bh-nav__club-column--dark .bh-nav__link-list svg {
	color: #fff;
}

.bh-nav__club-column--dark .bh-nav__link-list li {
	border-color: rgba(255, 255, 255, 0.15);
}

.bh-nav__club-column--dark .bh-nav__link-list a:hover,
.bh-nav__club-column--dark .bh-nav__link-list a:focus-visible {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: var(--bh-green);
	text-underline-offset: 4px;
}

.bh-nav__anniversary {
	display: flex;
	margin-top: 17px;
	padding: 16px;
	flex-direction: column;
	background: var(--bh-green);
	color: #fff !important;
}

.bh-nav__anniversary strong {
	font-size: 12px;
	font-weight: 900;
}

.bh-nav__anniversary span {
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 10px;
}

@media (max-width: 1320px) {
	.bh-nav__utility-inner {
		gap: 18px;
	}

	.bh-nav__quick-links,
	.bh-nav__service-links {
		gap: 13px;
	}

	.bh-nav__quick-links a,
	.bh-nav__service-links > a:not(.bh-nav__social) {
		font-size: 10px;
	}

	.bh-nav__news-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1100px) {
	.bh-nav__utility {
		display: none;
	}

	.bh-nav__main-row {
		height: 76px;
	}

	.bh-nav__main-inner {
		grid-template-columns: 1fr auto 1fr;
		padding: 0 18px;
	}

	.bh-nav__logo {
		width: min(208px, 62.4vw);
		height: 88.4px;
	}

	.bh-nav__logo-image {
		height: 80.6px;
	}

	.bh-nav__main-actions {
		grid-column: 1;
		grid-row: 1;
		justify-self: start;
	}

	.bh-nav__mobile-toggle {
		display: grid;
		place-items: center;
		width: 44px;
		height: 44px;
		border: 1px solid var(--bh-line);
		background: #fff;
		color: var(--bh-ink);
	}

	.bh-nav__mobile-toggle svg {
		width: 23px;
		height: 23px;
	}

	.bh-nav.is-mobile-open .bh-nav__mobile-toggle {
		border-color: var(--bh-green);
		background: var(--bh-green);
		color: #fff;
	}

	.bh-nav__primary {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		height: auto;
		max-height: calc(100vh - 76px);
		overflow: auto;
		flex-direction: column;
		gap: 0;
		border-top: 1px solid var(--bh-line);
		background: #fff;
		box-shadow: 0 28px 60px rgba(6, 12, 9, 0.2);
	}

	.bh-nav.is-mobile-open .bh-nav__primary {
		display: flex;
	}

	.bh-nav.is-mega-open .bh-nav__primary {
		display: none;
	}

	.bh-nav__primary-group {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 58px;
		height: 68px;
		padding-left: 20px;
		border-bottom: 1px solid var(--bh-line);
	}

	.bh-nav__primary-group::after {
		top: 0;
		right: auto;
		bottom: 0;
		width: 5px;
		height: auto;
		transform: scaleY(0);
		transform-origin: top;
	}

	.bh-nav__primary-group.is-active::after {
		transform: scaleY(1);
	}

	.bh-nav__primary-link {
		font-size: 20px;
	}

	.bh-nav__primary-toggle {
		width: 58px;
		height: 67px;
		border-left: 1px solid var(--bh-line);
	}

	.bh-nav__mobile-utility {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1px;
		padding: 20px;
		background: var(--bh-paper);
	}

	.bh-nav__mobile-utility form {
		display: grid;
		grid-column: 1 / -1;
		grid-template-columns: minmax(0, 1fr) 42px;
		align-items: center;
		gap: 3px;
		margin-bottom: 12px;
		padding: 3px 3px 3px 13px;
		border: 1px solid var(--bh-line);
		background: #fff;
	}

	.bh-nav__mobile-utility input[type="search"] {
		appearance: none;
		width: 100%;
		min-width: 0;
		height: 38px;
		min-height: 0;
		margin: 0;
		padding: 0;
		border: 0 !important;
		border-radius: 0;
		outline: 0;
		box-shadow: none !important;
	}

	.bh-nav__mobile-utility button {
		display: grid;
		place-items: center;
		width: 40px;
		height: 38px;
		min-height: 0;
		margin: 0;
		padding: 0;
		background: var(--bh-green);
		color: #fff;
	}

	.bh-nav__mobile-utility button svg {
		width: 16px;
		height: 16px;
	}

	.bh-nav__mobile-utility > a {
		padding: 12px;
		background: #fff;
		font-size: 11px;
		font-weight: 800;
	}

	.bh-nav__mega {
		position: fixed;
		top: 76px;
		bottom: 0;
		max-height: none;
		z-index: 1002;
	}

	.admin-bar .bh-nav__mega {
		top: 108px;
	}

	.bh-nav__mega-heading {
		position: sticky;
		top: 0;
		z-index: 3;
		min-height: 72px;
		padding: 11px 18px;
	}

	.bh-nav__mega-heading > div {
		display: block;
	}

	.bh-nav__mega-heading span {
		display: none;
	}

	.bh-nav__overview-link {
		margin-left: auto;
		padding: 0 11px;
	}

	.bh-nav__mega-close {
		display: grid;
		place-items: center;
		width: 38px;
		height: 38px;
		border: 1px solid rgba(255, 255, 255, 0.25);
	}

	.bh-nav__mega-content {
		padding: 20px 18px 34px;
	}

	.bh-nav__news-grid,
	.bh-nav__teams-grid,
	.bh-nav__club-grid {
		grid-template-columns: 1fr;
	}

	.bh-nav__news-tile {
		min-height: 185px;
	}

	.bh-nav__teams-grid {
		padding: 0 18px 34px;
	}

	.bh-nav__team-column,
	.bh-nav__team-column:first-child,
	.bh-nav__team-column--male {
		padding: 30px 0;
		border-right: 0;
		border-bottom: 1px solid var(--bh-line);
	}

	.bh-nav__team-column--performance::before {
		right: 0;
	}

	.bh-nav__shared-teams {
		grid-column: auto;
		grid-template-columns: 1fr;
		margin: 10px 0 0;
	}

	.bh-nav__mixed-teams {
		grid-template-columns: 1fr;
	}

	.bh-nav__club-column {
		min-height: 0;
	}
}

@media (max-width: 520px) {
	.bh-nav__overview-link {
		width: 38px;
		padding: 0;
		justify-content: center;
		font-size: 0;
	}

	.bh-nav__overview-link svg {
		width: 18px;
		height: 18px;
	}

	.bh-nav__mobile-utility {
		grid-template-columns: 1fr;
	}

	.bh-nav__mobile-utility form {
		grid-column: 1;
	}
}

@media (max-width: 782px) {
	.admin-bar .bh-nav {
		top: 46px;
	}

	.admin-bar .bh-nav__mega {
		top: 122px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bh-nav *,
	.bh-nav *::before,
	.bh-nav *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

html.bh-nav-lock {
	overflow: hidden;
}
