/**
 * BIGBAT58 — Premium header & navigation (Phase 10A)
 */

:root {
	--bb58-announcement-height: 44px;
	--bb58-header-height: 96px;
	--bb58-header-height-scrolled: 78px;
	--bb58-site-header-offset: calc(var(--bb58-announcement-height) + var(--bb58-header-height));
	--bb58-header-logo-width: 145px;
	--bb58-header-logo-width-scrolled: 115px;
	--bb58-header-brand-width: 150px;
	--bb58-header-nav-gap: clamp(1rem, 1.6vw, 2rem);
	--bb58-header-nav-actions-gap: clamp(3rem, 4vw, 4rem);
	--bb58-header-actions-gap: clamp(0.5rem, 1.2vw, 0.875rem);
	--bb58-header-ease: cubic-bezier(0.4, 0, 0.2, 1);
	--bb58-header-z: 1100;
	--bb58-header-dropdown-z: 1110;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--bb58-site-header-offset, 140px);
}

body.bb58-has-fixed-header {
	padding-top: 0;
	line-height: 0;
}

body.bb58-has-fixed-header #main-content {
	margin-top: var(--bb58-site-header-offset);
	transition: margin-top 0.4s var(--bb58-header-ease);
	line-height: 1.6;
}

body.bb58-has-fixed-header .bb58-footer {
	line-height: 1.6;
}

body.bb58-drawer-open {
	overflow: hidden;
}

/* Zero in-flow footprint — fixed chrome overlays the viewport */
.bb58-site-header-mount {
	display: block;
	height: 0;
	margin: 0;
	padding: 0;
	overflow: visible;
	pointer-events: none;
}

.bb58-site-header-mount .bb58-site-header {
	pointer-events: auto;
}

/* WordPress admin bar — keep chrome flush below the bar when logged in */
@media screen and (min-width: 783px) {
	body.admin-bar .bb58-site-header {
		top: 32px;
	}

	body.admin-bar.bb58-has-fixed-header #main-content {
		margin-top: calc(var(--bb58-site-header-offset) + 32px);
	}
}

@media screen and (max-width: 782px) {
	body.admin-bar .bb58-site-header {
		top: 46px;
	}

	body.admin-bar.bb58-has-fixed-header #main-content {
		margin-top: calc(var(--bb58-site-header-offset) + 46px);
	}
}

.bb58-site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: var(--bb58-header-z);
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	transition: transform 0.4s var(--bb58-header-ease);
}

.bb58-site-header--no-announcement {
	--bb58-announcement-height: 0px;
}

.bb58-site-header.is-scrolled {
	--bb58-header-height: var(--bb58-header-height-scrolled);
	--bb58-header-logo-width: var(--bb58-header-logo-width-scrolled);
	--bb58-site-header-offset: calc(var(--bb58-announcement-height) + var(--bb58-header-height-scrolled));
}

/* Announcement ticker stays visible — unified sticky shell (see announcement-ticker.css). */

/* Language switcher — see lang-switcher.css */

/* ─── Main header ─── */

.bb58-header--main {
	position: relative;
	z-index: 2;
	flex-shrink: 0;
	height: var(--bb58-header-height);
	overflow: visible;
	background:
		linear-gradient(
			180deg,
			color-mix(in srgb, #1c1c1e 92%, var(--color-primary) 8%) 0%,
			color-mix(in srgb, #111113 96%, transparent) 55%,
			color-mix(in srgb, #0d0d0f 98%, transparent) 100%
		);
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 18%, transparent);
	box-shadow:
		0 8px 32px color-mix(in srgb, #000 55%, transparent),
		inset 0 1px 0 color-mix(in srgb, var(--color-primary) 12%, transparent);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transition: height 0.4s var(--bb58-header-ease);
}

.bb58-header__glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 60% 120% at 15% -40%, color-mix(in srgb, var(--color-primary) 14%, transparent), transparent 55%),
		radial-gradient(ellipse 50% 100% at 85% -30%, color-mix(in srgb, var(--color-accent) 8%, transparent), transparent 50%);
	opacity: 0.9;
}

/* Desktop: logo | nav | flex spacer | actions group */

.bb58-header__shell {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: clamp(0.75rem, 1.5vw, 1.25rem);
	height: 100%;
	overflow: visible;
}

.bb58-header__brand {
	display: flex;
	align-items: center;
	width: var(--bb58-header-brand-width);
	max-width: var(--bb58-header-brand-width);
	flex: 0 0 auto;
}

.bb58-header__nav--desktop {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex: 0 1 auto;
	min-width: 0;
	overflow: visible;
}

.bb58-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 0 0 auto;
	flex-shrink: 0;
	margin-left: auto;
	padding-left: var(--bb58-header-nav-actions-gap);
	gap: var(--bb58-header-actions-gap);
}

.bb58-header__logo,
.bb58-header__logo--wp {
	display: inline-flex;
	align-items: center;
	width: var(--bb58-header-logo-width);
	max-width: var(--bb58-header-logo-width);
	text-decoration: none;
	transition: width 0.4s var(--bb58-header-ease), max-width 0.4s var(--bb58-header-ease);
}

.bb58-header__logo-img {
	display: block;
	width: 100%;
	max-width: var(--bb58-header-logo-width);
	max-height: 46px;
	height: auto;
	object-fit: contain;
	object-position: left center;
	transition:
		max-width 0.4s var(--bb58-header-ease),
		max-height 0.4s var(--bb58-header-ease);
}

.bb58-site-header.is-scrolled .bb58-header__logo-img {
	max-height: 40px;
}

.bb58-header__site-title {
	display: inline-block;
	width: var(--bb58-header-logo-width);
	max-width: var(--bb58-header-logo-width);
	font-size: 0.9375rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--color-primary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition:
		width 0.4s var(--bb58-header-ease),
		max-width 0.4s var(--bb58-header-ease),
		font-size 0.4s var(--bb58-header-ease);
}

.bb58-site-header.is-scrolled .bb58-header__site-title {
	font-size: 0.8125rem;
	letter-spacing: 0.1em;
}

/* Desktop navigation */

.bb58-menu--primary {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: var(--bb58-header-nav-gap);
	width: max-content;
	max-width: 100%;
	margin: 0;
	list-style: none;
	padding: 0;
	overflow: visible;
}

.bb58-menu--primary .bb58-menu__link,
.bb58-menu--primary > li > a {
	position: relative;
	display: inline-block;
	padding: 0.5rem 0.65rem;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	color: color-mix(in srgb, var(--color-text) 88%, transparent);
	white-space: nowrap;
	transition: color 0.25s var(--bb58-header-ease);
}

.bb58-menu--primary .bb58-menu__link::after,
.bb58-menu--primary > li > a::after {
	content: "";
	position: absolute;
	left: 0.65rem;
	right: 0.65rem;
	bottom: 0.2rem;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-accent), transparent);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.32s var(--bb58-header-ease);
}

.bb58-menu--primary .bb58-menu__link:hover,
.bb58-menu--primary .bb58-menu__link:focus,
.bb58-menu--primary > li > a:hover,
.bb58-menu--primary > li > a:focus {
	color: var(--color-primary);
}

.bb58-menu--primary .bb58-menu__link:hover::after,
.bb58-menu--primary .bb58-menu__link:focus::after,
.bb58-menu--primary > li > a:hover::after,
.bb58-menu--primary > li > a:focus::after,
.bb58-menu--primary .current-menu-item > .bb58-menu__link::after,
.bb58-menu--primary .current-menu-item > a::after,
.bb58-menu--primary .current_page_item > .bb58-menu__link::after,
.bb58-menu--primary .current_page_item > a::after {
	transform: scaleX(1);
}

.bb58-menu--primary .current-menu-item > .bb58-menu__link,
.bb58-menu--primary .current-menu-item > a,
.bb58-menu--primary .current_page_item > .bb58-menu__link,
.bb58-menu--primary .current_page_item > a {
	color: var(--color-primary);
}

/* ─── More dropdown (desktop only) ─── */

.bb58-nav-more {
	position: relative;
}

.bb58-nav-more__toggle {
	cursor: pointer;
	background: none;
	border: none;
	font-family: inherit;
	line-height: inherit;
}

.bb58-nav-more__toggle::after {
	content: "";
	position: absolute;
	left: 0.65rem;
	right: 0.65rem;
	bottom: 0.2rem;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-accent), transparent);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.32s var(--bb58-header-ease);
}

.bb58-nav-more__toggle:hover,
.bb58-nav-more__toggle:focus {
	color: var(--color-primary);
}

.bb58-nav-more__toggle:hover::after,
.bb58-nav-more__toggle:focus::after,
.bb58-nav-more.is-open > .bb58-nav-more__toggle::after,
.bb58-nav-more.current-menu-ancestor > .bb58-nav-more__toggle::after {
	transform: scaleX(1);
}

.bb58-nav-more.current-menu-ancestor > .bb58-nav-more__toggle,
.bb58-nav-more.is-open > .bb58-nav-more__toggle {
	color: var(--color-primary);
}

.bb58-nav-more__label {
	display: inline-block;
}

.bb58-nav-more__caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 0.4rem;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	vertical-align: middle;
	opacity: 0.85;
	transition: transform 0.28s var(--bb58-header-ease);
}

.bb58-nav-more.is-open .bb58-nav-more__caret {
	transform: rotate(180deg);
}

.bb58-nav-more__panel {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: var(--bb58-header-dropdown-z);
	min-width: 13.5rem;
	max-width: min(92vw, 36rem);
	padding: 0.65rem;
	border-radius: 14px;
	background:
		linear-gradient(
			155deg,
			color-mix(in srgb, #1e1e22 78%, var(--color-primary) 6%) 0%,
			color-mix(in srgb, #121214 92%, transparent) 55%,
			color-mix(in srgb, #0c0c0e 96%, transparent) 100%
		);
	border: 1px solid color-mix(in srgb, var(--color-primary) 28%, transparent);
	box-shadow:
		0 18px 48px color-mix(in srgb, #000 62%, transparent),
		0 0 0 1px color-mix(in srgb, var(--color-primary) 8%, transparent),
		inset 0 1px 0 color-mix(in srgb, #fff 6%, transparent);
	backdrop-filter: blur(22px) saturate(140%);
	-webkit-backdrop-filter: blur(22px) saturate(140%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-8px);
	transition:
		opacity 0.32s var(--bb58-header-ease),
		transform 0.32s var(--bb58-header-ease),
		visibility 0.32s var(--bb58-header-ease);
}

.bb58-nav-more.is-open .bb58-nav-more__panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.bb58-nav-more__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bb58-nav-more__list--cols-2 {
	grid-template-columns: repeat(2, minmax(10.5rem, 1fr));
	min-width: 22rem;
}

.bb58-nav-more__list--cols-3 {
	grid-template-columns: repeat(3, minmax(10.5rem, 1fr));
	min-width: 32rem;
}

.bb58-nav-more__link {
	display: block;
	padding: 0.7rem 1rem;
	border-radius: 9px;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	color: color-mix(in srgb, var(--color-text) 90%, transparent);
	white-space: nowrap;
	transition:
		color 0.24s var(--bb58-header-ease),
		background-color 0.24s var(--bb58-header-ease),
		box-shadow 0.24s var(--bb58-header-ease);
}

.bb58-nav-more__link:hover,
.bb58-nav-more__link:focus {
	color: var(--color-primary);
	background: color-mix(in srgb, var(--color-primary) 11%, transparent);
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-primary) 22%, transparent);
}

.bb58-nav-more__item.current-menu-item > .bb58-nav-more__link,
.bb58-nav-more__item.current_page_item > .bb58-nav-more__link {
	color: var(--color-primary);
	background: color-mix(in srgb, var(--color-primary) 8%, transparent);
}

.bb58-nav-more__toggle:focus-visible,
.bb58-nav-more__link:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

/* Actions — right cluster (language, social, auth) */

.bb58-header__social {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	flex-shrink: 0;
}

.bb58-header__actions-sep {
	display: block;
	flex-shrink: 0;
	width: 1px;
	height: 1.75rem;
	margin-inline: clamp(0.625rem, 1.2vw, 1rem);
	background: linear-gradient(
		180deg,
		transparent,
		color-mix(in srgb, var(--color-primary) 45%, transparent),
		transparent
	);
}

.bb58-header__icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.125rem;
	height: 2.125rem;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--color-primary) 28%, transparent);
	background: color-mix(in srgb, var(--color-card-background) 70%, transparent);
	color: var(--color-accent);
	text-decoration: none;
	transition:
		color 0.25s var(--bb58-header-ease),
		border-color 0.25s var(--bb58-header-ease),
		background-color 0.25s var(--bb58-header-ease),
		box-shadow 0.25s var(--bb58-header-ease),
		transform 0.25s var(--bb58-header-ease);
}

.bb58-header__icon-btn:hover,
.bb58-header__icon-btn:focus {
	color: var(--color-primary);
	border-color: var(--color-primary);
	background: color-mix(in srgb, var(--color-primary) 12%, var(--color-card-background));
	box-shadow: 0 0 16px color-mix(in srgb, var(--color-primary) 25%, transparent);
	transform: translateY(-1px);
}

.bb58-header__icon-btn:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.bb58-icon {
	display: block;
}

.bb58-header__buttons {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.bb58-btn--header {
	padding: 0.6rem 1rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 8px;
	white-space: nowrap;
	transition:
		background-color 0.28s var(--bb58-header-ease),
		border-color 0.28s var(--bb58-header-ease),
		color 0.28s var(--bb58-header-ease),
		box-shadow 0.28s var(--bb58-header-ease),
		transform 0.28s var(--bb58-header-ease),
		padding 0.4s var(--bb58-header-ease);
}

.bb58-site-header.is-scrolled .bb58-btn--header {
	padding: 0.55rem 0.9rem;
}

.bb58-btn--login {
	background: transparent;
	color: var(--color-primary);
	border: 1px solid color-mix(in srgb, var(--color-primary) 65%, transparent);
	box-shadow: none;
}

.bb58-btn--login:hover,
.bb58-btn--login:focus {
	background: color-mix(in srgb, var(--color-primary) 14%, transparent);
	color: var(--color-accent);
	border-color: var(--color-primary);
	box-shadow: 0 0 20px color-mix(in srgb, var(--color-primary) 18%, transparent);
	transform: translateY(-1px);
}

.bb58-btn--register {
	background: linear-gradient(135deg, var(--color-button) 0%, var(--color-button-hover) 100%);
	color: color-mix(in srgb, var(--color-background) 90%, #000);
	border: 1px solid color-mix(in srgb, var(--color-primary) 50%, transparent);
	box-shadow:
		0 4px 18px color-mix(in srgb, var(--color-primary) 35%, transparent),
		inset 0 1px 0 color-mix(in srgb, #fff 25%, transparent);
}

.bb58-btn--register:hover,
.bb58-btn--register:focus {
	background: linear-gradient(135deg, var(--color-button-hover) 0%, var(--color-button) 100%);
	box-shadow:
		0 8px 28px color-mix(in srgb, var(--color-primary) 45%, transparent),
		0 0 24px color-mix(in srgb, var(--color-primary) 30%, transparent);
	transform: translateY(-2px);
}

.bb58-btn--header:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

/* Mobile toggle */

.bb58-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	margin-left: 0.5rem;
	padding: 0;
	border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
	border-radius: 10px;
	background: color-mix(in srgb, var(--color-card-background) 80%, transparent);
	color: var(--color-primary);
	cursor: pointer;
	transition:
		background-color 0.25s var(--bb58-header-ease),
		border-color 0.25s var(--bb58-header-ease),
		transform 0.25s var(--bb58-header-ease);
}

.bb58-header__toggle:hover,
.bb58-header__toggle:focus {
	background: color-mix(in srgb, var(--color-primary) 12%, var(--color-card-background));
	border-color: var(--color-primary);
}

.bb58-header__toggle:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

/* ─── Off-canvas drawer ─── */

.bb58-offcanvas__backdrop {
	position: fixed;
	inset: 0;
	z-index: 1100;
	background: color-mix(in srgb, var(--color-background) 55%, black);
	opacity: 0;
	transition: opacity 0.35s var(--bb58-header-ease);
}

.bb58-offcanvas__backdrop.is-visible {
	opacity: 1;
}

.bb58-offcanvas {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1110;
	display: flex;
	flex-direction: column;
	width: min(100vw - 3rem, 360px);
	height: 100dvh;
	background:
		linear-gradient(
			165deg,
			color-mix(in srgb, #1a1a1c 95%, var(--color-primary) 5%),
			color-mix(in srgb, #0e0e10 98%, transparent)
		);
	border-left: 1px solid color-mix(in srgb, var(--color-primary) 22%, transparent);
	box-shadow: -16px 0 48px color-mix(in srgb, #000 50%, transparent);
	transform: translateX(100%);
	transition: transform 0.38s var(--bb58-header-ease);
}

.bb58-offcanvas.is-open {
	transform: translateX(0);
}

.bb58-offcanvas__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent);
}

.bb58-offcanvas__title {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.bb58-offcanvas__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
	border-radius: 10px;
	background: transparent;
	color: var(--color-text);
	cursor: pointer;
	transition:
		background-color 0.25s var(--bb58-header-ease),
		color 0.25s var(--bb58-header-ease);
}

.bb58-offcanvas__close:hover,
.bb58-offcanvas__close:focus {
	background: color-mix(in srgb, var(--color-primary) 12%, transparent);
	color: var(--color-primary);
}

.bb58-offcanvas__body {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	padding: 1.5rem;
	overflow-y: auto;
}

.bb58-menu--drawer {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bb58-menu--drawer .bb58-menu__link,
.bb58-menu--drawer > li > a {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 0.85rem 0;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-decoration: none;
	color: var(--color-text);
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent);
	transition: color 0.25s var(--bb58-header-ease), padding-left 0.25s var(--bb58-header-ease);
}

.bb58-menu--drawer .bb58-menu__link:hover,
.bb58-menu--drawer .bb58-menu__link:focus,
.bb58-menu--drawer > li > a:hover,
.bb58-menu--drawer > li > a:focus,
.bb58-menu--drawer .current-menu-item > .bb58-menu__link,
.bb58-menu--drawer .current-menu-item > a {
	color: var(--color-primary);
	padding-left: 0.5rem;
}

.bb58-offcanvas__social {
	display: flex;
	gap: 0.75rem;
}

.bb58-header__icon-btn--drawer {
	width: 2.75rem;
	height: 2.75rem;
}

.bb58-offcanvas__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: auto;
}

.bb58-btn--drawer {
	width: 100%;
	justify-content: center;
	padding: 0.85rem 1.25rem;
	font-size: 0.8125rem;
}

/* ─── Responsive ─── */

/* Switch to mobile before nav collides with actions */
@media (max-width: 1099px) {
	.bb58-header__nav--desktop {
		display: none;
	}

	.bb58-header__shell {
		justify-content: space-between;
	}

	.bb58-header__actions {
		margin-left: 0;
		padding-left: 0;
		width: auto;
	}

	.bb58-header__actions-sep,
	.bb58-header__social,
	.bb58-header__buttons {
		display: none;
	}

	.bb58-header__toggle {
		display: inline-flex;
	}
}

/* Compact desktop — preserve nav ↔ language breathing room */
@media (min-width: 1100px) and (max-width: 1366px) {
	:root {
		--bb58-header-nav-gap: clamp(0.75rem, 1.1vw, 1.125rem);
		--bb58-header-nav-actions-gap: clamp(3rem, 3.5vw, 3.75rem);
		--bb58-header-actions-gap: clamp(0.4375rem, 1vw, 0.75rem);
	}

	.bb58-menu--primary .bb58-menu__link,
	.bb58-menu--primary > li > a {
		padding-inline: 0.5rem;
		font-size: 0.78125rem;
	}

	.bb58-btn--header {
		padding-inline: 0.75rem;
	}

	.bb58-header__actions-sep {
		margin-inline: 0.625rem;
	}
}

@media (max-width: 640px) {
	:root {
		--bb58-header-height: 80px;
		--bb58-header-height-scrolled: 72px;
		--bb58-header-brand-width: 130px;
		--bb58-header-logo-width: 120px;
		--bb58-header-logo-width-scrolled: 105px;
	}

	.bb58-header__logo-img {
		max-height: 40px;
	}

	.bb58-site-header.is-scrolled .bb58-header__logo-img {
		max-height: 34px;
	}
}

@media (min-width: 1320px) {
	.bb58-offcanvas,
	.bb58-offcanvas__backdrop,
	.bb58-header__toggle {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bb58-site-header,
	.bb58-announcement-ticker,
	.bb58-header--main,
	.bb58-header__logo,
	.bb58-header__logo-img,
	.bb58-btn--header,
	.bb58-offcanvas,
	.bb58-offcanvas__backdrop,
	body.bb58-has-fixed-header #main-content {
		transition: none;
	}

	.bb58-section,
	.bb58-page-header,
	.bb58-card {
		animation: none;
	}
}
