/* =========================================================
   NMW redesign — Home featured artists row (Figma frame 58)
   Three square photo tiles + olive name strip, above the news.
   ========================================================= */

.rds-hart {
	--rds-orange: #f97827;
	--rds-olive: #90991a;
	--rds-grey: #cbcbcb;
	font-family: var(--font-sans);
	background: #000;
	overflow-x: hidden;
}

.rds-hart__heading {
	margin: 0;
	padding: 24px 40px;
	font-weight: 700;
	font-size: clamp(28px, 4vw, 64px);
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
}

.rds-hart__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.rds-hart__tile {
	display: block;
	text-decoration: none;
	color: #000;
}

.rds-hart__photo img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.rds-hart__name {
	min-height: 50px;
	background: var(--rds-olive);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 6px 16px;
	text-align: center;
	font-weight: 500;
	text-transform: capitalize;
}
.rds-hart__name-text { font-size: 20px; line-height: 1.1; }
.rds-hart__role {
	font-weight: 300;
	font-size: 13px;
	text-transform: uppercase;
	opacity: 0.8;
}
.rds-hart__tile:hover .rds-hart__name { background: var(--rds-orange); }

/* ---- mobile: stack (MUST stay AFTER desktop) ---- */
@media (max-width: 768px) {
	.rds-hart__heading { padding: 18px 18px; }
	.rds-hart__grid { grid-template-columns: 1fr; }
}
