.atb-banner {
	background: var(--atb-bg, #12241f);
	color: var(--atb-text, #fff);
	width: 100%;
	font-size: var(--atb-font-size, 14px);
	line-height: 1.2;
	z-index: 999;
}

.atb-banner--sticky {
	position: sticky;
	top: 0;
}

.atb-inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 16px;
	height: var(--atb-height, 44px);
	display: flex;
	align-items: center;
	gap: 12px;
}

.atb-label {
	flex: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 700;
	font-size: 0.85em;
	color: var(--atb-accent, #e2b877);
}

.atb-viewport {
	position: relative;
	flex: 1 1 auto;
	height: var(--atb-height, 44px);
	overflow: hidden;
}

.atb-track {
	list-style: none;
	margin: 0;
	padding: 0;
	height: 100%;
}

.atb-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	opacity: 0;
	transform: translateY(100%);
	transition: transform 0.5s ease, opacity 0.5s ease;
	pointer-events: none;
}

.atb-slide.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.atb-slide.is-leaving-up {
	opacity: 0;
	transform: translateY(-100%);
}

.atb-slide.is-entering-down {
	transform: translateY(-100%);
}

.atb-link {
	color: inherit;
	text-decoration: none;
	font-weight: 600;
	padding: 2px 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	border-bottom: 1px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

a.atb-link:hover,
a.atb-link:focus-visible {
	color: var(--atb-accent, #e2b877);
	border-bottom-color: currentColor;
}

.atb-arrows {
	flex: none;
	display: flex;
	align-items: center;
	gap: 4px;
}

.atb-arrow {
	background: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	padding: 4px;
	line-height: 0;
	border-radius: 999px;
	opacity: 0.75;
	transition: opacity 0.2s ease, background-color 0.2s ease;
}

.atb-arrow:hover,
.atb-arrow:focus-visible {
	opacity: 1;
	background: rgba(255, 255, 255, 0.12);
}

.atb-arrow svg {
	width: 18px;
	height: 18px;
	display: block;
}

@media (max-width: 640px) {
	.atb-inner {
		padding: 0 10px;
		gap: 8px;
	}

	.atb-label {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.atb-slide {
		transition: opacity 0.2s ease;
		transform: none !important;
	}
}
