.th-ticker {
	background: var(--th-accent);
	color: #fff;
}

.th-ticker-inner {
	display: flex;
	align-items: center;
	height: 40px;
	gap: 16px;
}

.th-ticker-label {
	flex-shrink: 0;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 12px;
	background: rgba(255, 255, 255, 0.18);
	padding: 4px 10px;
	border-radius: 999px;
}

.th-ticker-track-wrap {
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

.th-ticker-track {
	display: flex;
	gap: 48px;
	white-space: nowrap;
	width: max-content;
	animation: th-ticker-scroll 30s linear infinite;
}

.th-ticker-track:hover {
	animation-play-state: paused;
}

.th-ticker-track a {
	font-size: 13px;
	font-weight: 600;
}

@keyframes th-ticker-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.th-ticker-track {
		animation: none;
	}
}
