/* =========================================================
   NMW redesign — Home phone marquee (Figma frame 58 "PhoneCall").
   White scrolling strip: phone-number graphic + NMW loop mark.
   ========================================================= */

.rds-pstrip {
	background: #f97827;
	border-block: 1px solid #000;
	overflow: hidden;
}
.rds-pstrip__link { display: block; text-decoration: none; padding: 14px 0; }
.rds-pstrip__track {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	animation: rds-pstrip-marquee 30s linear infinite;
	will-change: transform;
}
.rds-pstrip__num {
	height: 62px;
	width: auto;
	display: block;
	padding-inline: 0.5em;
}
.rds-pstrip__mark {
	display: inline-flex;
	align-items: center;
	height: 52px;
	flex-shrink: 0;
	padding-inline: 0.3em;
}
.rds-pstrip__mark svg { height: 100%; width: auto; display: block; }

@keyframes rds-pstrip-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
	.rds-pstrip__num { height: 42px; }
	.rds-pstrip__mark { height: 34px; }
}
