/**
 * One Keywords Slider widget styles.
 *
 * Infinite marquee of tracked, uppercase keywords separated by a small
 * accent dot. Motion is driven by JS (transform on the track); this file
 * handles layout and typography. Tuned for dark editorial strips.
 */

.one-keywords-slider {
	--one-kw-gap: 28px;
	width: 100%;
	overflow: hidden;
}

.one-keywords-slider__track {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	will-change: transform;
}

.one-keywords-slider__group {
	display: flex;
	flex-wrap: nowrap;
	flex: 0 0 auto;
}

.one-keywords-slider__item {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}

.one-keywords-slider__text {
	font-family: var(--one-font-heading, 'Playfair Display', Georgia, 'Times New Roman', serif);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--one-white, #F7F5F2);
}

.one-keywords-slider__sep {
	margin: 0 var(--one-kw-gap);
	font-size: 8px;
	line-height: 1;
	color: var(--one-bronze, #B08D57);
}

/* Reduced motion: JS halts the animation; nothing else needed here. */
