/* =========================================================
   NMW redesign — Home phone/contact strip (Figma frame 58)
   Full-width click-to-call bar, after the news / programme.
   ========================================================= */

.rds-hcontact {
	--rds-orange: #f97827;
	font-family: var(--font-sans);
	background: #000;
	overflow-x: hidden;
}

.rds-hcontact__link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	min-height: 100px;
	padding: 20px 40px;
	text-decoration: none;
	background: #000;
	transition: background .2s ease;
}
.rds-hcontact__link:hover { background: #0c0c0c; }

.rds-hcontact__label {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--rds-grey, #cbcbcb);
}
.rds-hcontact__num {
	font-weight: 700;
	font-size: clamp(28px, 4.5vw, 72px);
	line-height: 1;
	letter-spacing: -0.01em;
	color: var(--rds-orange);
}

/* ---- mobile (MUST stay AFTER desktop) ---- */
@media (max-width: 768px) {
	.rds-hcontact__link { flex-direction: column; gap: 8px; min-height: 80px; padding: 18px; text-align: center; }
}
