.bx-topbar {
	background: var(--bx-green);
	color: #e8f6ec;
	font-size: 13px;
	min-height: 38px;
}

.bx-topbar__in {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	align-items: center;
	min-height: 38px;
}

.bx-topbar a,
.bx-topbar span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: inherit;
	text-decoration: none;
}

.bx-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--bx-white);
	border-bottom: 1px solid var(--bx-border);
}

.bx-header.is-stuck {
	box-shadow: var(--bx-shadow-sm);
}

.bx-header.is-stuck .bx-header__in {
	min-height: 64px;
}

.bx-header__in {
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: 76px;
	transition: min-height 0.2s ease;
}

.bx-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--bx-dark);
	font-weight: 800;
	flex-shrink: 0;
}

.bx-logo__mark {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--bx-green);
	color: var(--bx-white);
	display: grid;
	place-items: center;
}

.bx-nav { margin-left: auto; }

.bx-menu {
	display: flex;
	align-items: center;
	gap: 6px 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bx-menu a {
	color: var(--bx-dark);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	padding: 8px 0;
}

.bx-menu a:hover { color: var(--bx-green); }

.bx-menu .sub-menu {
	display: none;
	position: absolute;
	background: var(--bx-white);
	border: 1px solid var(--bx-border);
	border-radius: 12px;
	padding: 8px;
	min-width: 140px;
	box-shadow: var(--bx-shadow-sm);
	list-style: none;
	z-index: 20;
}

.bx-menu .menu-item-has-children {
	position: relative;
}

.bx-menu .menu-item-has-children:hover > .sub-menu,
.bx-menu .menu-item-has-children:focus-within > .sub-menu {
	display: block;
}

.bx-burger {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	margin-left: auto;
}

.bx-burger span {
	display: block;
	height: 2px;
	background: var(--bx-dark);
	width: 22px;
}

.betonx #site-navigation,
.betonx .main-navigation,
.betonx .inside-header,
.betonx header#masthead {
	display: none;
}

.betonx .bx-header,
.betonx .bx-topbar {
	display: block;
}
