/* Scrolling Ticker — full-width red marquee (design.md §scrolling-ticker).
   Two identical groups in the track; translateX(-50%) loops seamlessly. Pure
   CSS animation (no JS); paused for reduced-motion. Same at both breakpoints. */

.tt-scrolling-ticker {
	display: flex;
	align-items: center;
	height: 50px;
	overflow: hidden;
	background-color: var(--wp--preset--color--red, #cf2026);
}

.tt-scrolling-ticker__track {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	animation: tt-ticker-scroll 40s linear infinite;
}

.tt-scrolling-ticker__group {
	display: flex;
	align-items: center;
	gap: 25px;
	padding-right: 25px;
	flex: none;
}

.tt-scrolling-ticker__phrase {
	font-family: var(--wp--preset--font-family--oswald, "Oswald", sans-serif);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.45;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	color: #fff;
	white-space: nowrap;
}

.tt-scrolling-ticker__mark {
	flex: none;
	width: 25px;
	height: 25px;
}

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

@media (prefers-reduced-motion: reduce) {
	.tt-scrolling-ticker__track {
		animation: none;
	}
}
