/* =========================================================
   NMW redesign — Event / Programme detail (Figma frame 50 / node 154:1503)
   Full-width title band + 3 columns
   [ hero on purple ] | [ description ] | [ date/time + directions + purchase ]
   then a row of the event's artist cards.
   Measurements taken 1:1 from the 1728px design.
   ========================================================= */

.rds-event {
	font-family: var(--font-sans);
	background: #7067e0;
	color: #000;
	--rds-purple: #7067e0;
	--rds-olive: #90991a;
	--rds-grey: #cbcbcb;
	--rds-orange: #f97827;
	padding-top: 95px;               /* clear the fixed redesign header */
}

/* ---- full-width grey title band — "<title> AT <venue>" ---- */
.rds-event__title {
	min-height: 180px;
	background: var(--rds-grey);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px 40px;
}
.rds-event__heading {
	margin: 0;
	font-weight: 700;
	font-size: 64px;
	line-height: 0.98;
	text-transform: capitalize;
	color: #000;
	max-width: 1495px;
}
.rds-event__at { font-weight: 700; }

/* ---- 3-column body ---- */
.rds-event__body {
	display: flex;
	align-items: stretch;
	background: var(--rds-purple);
	min-height: 751px;
}
.rds-event__col {
	flex: 1 1 33.333%;
	width: 33.333%;
	min-width: 0;
}

/* Col 1 — hero image on purple (sits at the top of the column). */
.rds-event__photo img,
.rds-event__photo .rds-event__ph {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 582 / 751;
	object-fit: cover;
}
.rds-event__ph { background: linear-gradient(135deg, #8a8f2a, #77593a); display: block; }

/* Col 2 — white description panel. */
.rds-event__desc {
	background: #fff;
	padding: 16px;
	color: #000;
}
.rds-event__desc-text {
	font-weight: 400;
	font-size: 22px;
	line-height: 1.08;
	color: #000;
}
.rds-event__desc-text p { margin: 0 0 1em; }

/* Col 3 — date/time + directions + purchase, on purple. */
.rds-event__meta {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: #000;
	padding: 0;
}
.rds-event__when {
	padding: 40px;
	text-align: center;
}
.rds-event__type {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.rds-event__date {
	font-weight: 500;
	font-size: 24px;
	line-height: 1.2;
}
.rds-event__time {
	font-weight: 300;
	font-size: 18px;
	margin-top: 2px;
}
.rds-event__directions {
	display: inline-block;
	margin-top: 14px;
	font-size: 15px;
	color: #000;
	text-decoration: underline;
}
.rds-event__ticket {
	padding: 40px;
	text-align: center;
	border-top: 1px solid rgba(0, 0, 0, 0.18);
}
.rds-event__price {
	font-weight: 500;
	font-size: 22px;
	margin-bottom: 12px;
}
.rds-event__purchase {
	display: inline-block;
	background: var(--rds-orange);
	color: #000;
	font-weight: 700;
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	padding: 12px 40px;
}
.rds-event__purchase:hover { background: #000; color: var(--rds-orange); }

/* ---- artist cards row (photo + olive name strip → artist single) ---- */
.rds-event__artists {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: var(--rds-purple);
}
.rds-eartist { display: block; text-decoration: none; color: #000; }
.rds-eartist__photo img,
.rds-eartist__photo .rds-eartist__ph {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 577 / 417;
	object-fit: cover;
}
.rds-eartist__ph { background: linear-gradient(135deg, #8a8f2a, #77593a); display: block; }
.rds-eartist__name {
	height: 50px;
	background: var(--rds-olive);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 16px;
	font-weight: 500;
	font-size: 20px;
	text-transform: capitalize;
	white-space: nowrap;
	overflow: hidden;
}
.rds-eartist__role {
	font-weight: 300;
	font-size: 13px;
	text-transform: uppercase;
	opacity: 0.8;
}
.rds-eartist:hover .rds-eartist__name { background: var(--rds-orange); }

/* ---- mobile: single column, stacked (M5 frames). MUST stay AFTER desktop. ---- */
@media (max-width: 1024px) {
	.rds-event { overflow-x: hidden; }
	.rds-event__heading { font-size: 9vw; }
	.rds-event__body { flex-direction: column; }
	.rds-event__col { width: 100%; flex-basis: auto; min-width: 0; }
	.rds-event__meta { flex-direction: column; }
	.rds-event__artists { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
	.rds-event__heading { font-size: 32px; }
	.rds-event__desc-text { font-size: 18px; }
}
