/* Summerland announcement strip — intentionally isolated from the filter UI. */
.smf-promo-strip {
	box-sizing:border-box;
	width:100%;
	min-height:44px;
	background:#111;
	color:#fff;
	font-family:inherit;
	font-size:14px;
	line-height:1;
	overflow:hidden;
}
.smf-promo-strip__viewport { width:100%; overflow:hidden; }
.smf-promo-strip__track {
	display:flex;
	width:max-content;
	min-height:44px;
	align-items:center;
	animation:smf-promo-marquee 28s linear infinite;
}
.smf-promo-strip__set { display:flex; align-items:center; flex:0 0 auto; }
.smf-promo-strip__message {
	display:inline-flex;
	align-items:center;
	min-height:18px;
	padding:0 27px;
	white-space:nowrap;
}
.smf-promo-strip__message + .smf-promo-strip__message { border-left:1px solid rgba(255,255,255,.7); }
@keyframes smf-promo-marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@media (prefers-reduced-motion:reduce) { .smf-promo-strip__track { animation:none; } }
@media (max-width:767px) {
	.smf-promo-strip { min-height:36px; font-size:11px; }
	.smf-promo-strip__track { min-height:36px; animation-duration:22s; }
	.smf-promo-strip__message { padding:0 16px; }
}
