.sts-top-notice {
	background: var(--sts-primary-strip);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	padding: 9px 16px;
	letter-spacing: 1px;
}

.sts-header {
	background: var(--sts-bg-alt);
	position: relative;
	z-index: 50;
}

.sts-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 18px;
	padding-bottom: 18px;
}

.sts-logo img {
	max-height: 40px;
	width: auto;
}

.sts-nav .sts-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 36px;
}

.sts-nav .sts-menu a {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	padding: 6px 0;
	display: inline-block;
	position: relative;
}

.sts-nav .sts-menu .current-menu-item > a,
.sts-nav .sts-menu .current_page_item > a {
	border-bottom: 2px solid #fff;
}

.sts-hamburger {
	display: none;
	width: 32px;
	height: 32px;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: transparent;
	border: 0;
	padding: 0;
}

.sts-hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	transition: transform .25s ease, opacity .25s ease;
}

.sts-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sts-hamburger.is-open span:nth-child(2) { opacity: 0; }
.sts-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
	.sts-hamburger {
		display: flex;
		align-items: center;
	}

	.sts-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--sts-bg-alt);
		border-top: 1px solid var(--sts-border);
		max-height: 0;
		overflow: hidden;
		transition: max-height .35s ease;
	}

	.sts-nav.is-open {
		max-height: 500px;
	}

	.sts-nav .sts-menu {
		flex-direction: column;
		gap: 0;
		padding: 12px 24px 20px;
	}

	.sts-nav .sts-menu li {
		border-bottom: 1px solid var(--sts-border);
	}

	.sts-nav .sts-menu li:last-child {
		border-bottom: 0;
	}

	.sts-nav .sts-menu a {
		display: block;
		padding: 14px 0;
	}
}
