.rz-tl {
	--rz-tl-panel-height: 560px;
	--rz-tl-bg: #000000;
	--rz-tl-fg: #ffffff;
	--rz-tl-module-bg: #000000;
	--rz-tl-gap: 0;
	--rz-tl-grow: 1;
	--rz-tl-grow-active: 3.2;
	width: 100%;
	color: var(--rz-tl-fg);
	background: var(--rz-tl-module-bg);
}

.rz-tl__intro {
	background: var(--rz-tl-bg);
	color: var(--rz-tl-fg);
	padding: 56px 40px 48px;
}

.rz-tl__intro-inner {
	display: grid;
	grid-template-columns: minmax(240px, 0.95fr) minmax(280px, 1.15fr);
	gap: 36px 64px;
	align-items: start;
	max-width: 1440px;
	margin: 0 auto;
}

.rz-tl p.rz-tl__heading,
.rz-tl__heading {
	margin: 0;
	padding: 0;
	color: var(--rz-tl-fg);
	font-family: inherit;
	font-size: clamp(26px, 3.1vw, 44px);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.rz-tl__intro-copy {
	padding-top: 2px;
}

.rz-tl__description {
	margin: 0 0 20px;
	color: var(--rz-tl-fg);
	font-size: clamp(12px, 1.02vw, 14px);
	font-weight: 400;
	line-height: 1.65;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

.rz-tl__intro-cta {
	display: inline-block;
	color: var(--rz-tl-fg);
	font-size: clamp(12px, 1.02vw, 14px);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
}

.rz-tl__intro-cta:hover,
.rz-tl__intro-cta:focus {
	color: var(--rz-tl-fg);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.rz-tl__panels {
	display: flex;
	width: 100%;
	height: var(--rz-tl-panel-height);
	gap: var(--rz-tl-gap);
	overflow: hidden;
	background: var(--rz-tl-module-bg);
}

.rz-tl .rz-tl__panel {
	position: relative;
	box-sizing: border-box;
	flex-grow: var(--rz-tl-grow);
	flex-shrink: 1;
	flex-basis: 0;
	min-width: 0;
	width: auto;
	max-width: none;
	display: block;
	height: 100%;
	overflow: hidden;
	background-color: #111;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--rz-tl-fg);
	text-decoration: none;
	transition: flex-grow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	cursor: pointer;
	will-change: flex-grow;
}

.rz-tl .rz-tl__panel.is-active {
	flex-grow: var(--rz-tl-grow-active);
}

.rz-tl.is-hovering .rz-tl__panel:not(.is-active) {
	flex-grow: 0.65;
}

.rz-tl__panel-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.72) 100%);
	pointer-events: none;
}

.rz-tl__panel-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 28px 24px 32px;
	pointer-events: none;
}

.rz-tl__eyebrow {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rz-tl__name {
	display: block;
	font-size: clamp(22px, 2.4vw, 40px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.rz-tl__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 16px;
	min-width: 128px;
	padding: 12px 22px;
	background: #fff;
	color: #111;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.28s ease, transform 0.28s ease;
}

.rz-tl .rz-tl__panel.is-active .rz-tl__cta {
	opacity: 1;
	transform: translateY(0);
}

.rz-tl-empty {
	padding: 16px;
	border: 1px dashed #c3c4c7;
	background: #f6f7f7;
	color: #1d2327;
}

@media (max-width: 900px) {
	.rz-tl__intro {
		padding: 32px 20px 28px;
	}

	.rz-tl__intro-inner {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.rz-tl .rz-tl__panels,
	.rz-tl__panels[data-rz-tl-panels] {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		height: min(72vw, 420px) !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		overscroll-behavior-x: contain;
		padding-left: 16px;
		padding-right: 16px;
		gap: 10px;
		box-sizing: border-box;
	}

	.rz-tl__panels::-webkit-scrollbar {
		display: none;
	}

	.rz-tl .rz-tl__panel,
	.rz-tl .rz-tl__panel.is-active,
	.rz-tl.is-hovering .rz-tl__panel:not(.is-active),
	.rz-tl a.rz-tl__panel,
	.rz-tl div.rz-tl__panel {
		display: block !important;
		flex: 0 0 auto !important;
		flex-grow: 0 !important;
		flex-shrink: 0 !important;
		flex-basis: auto !important;
		/* Leave ~18–22vw visible for the next card as a swipe affordance. */
		width: min(78vw, 300px) !important;
		max-width: none !important;
		min-width: 0 !important;
		height: 100% !important;
		scroll-snap-align: start;
		transition: none !important;
		will-change: auto;
	}

	.rz-tl .rz-tl__panel:last-child {
		/* Extra trailing space so the last card can still snap cleanly. */
		margin-right: 6px;
	}

	.rz-tl__panel-content {
		padding: 22px 18px 26px;
	}

	.rz-tl__name {
		font-size: clamp(20px, 5.5vw, 28px);
	}

	.rz-tl .rz-tl__panel .rz-tl__cta,
	.rz-tl .rz-tl__panel.is-active .rz-tl__cta {
		opacity: 1;
		transform: none;
	}
}
