.rz-at {
	--rz-at-ink: #111111;
	--rz-at-muted: #747474;
	--rz-at-line: #e6e6e6;
	--rz-at-accent: #111111;
	box-sizing: border-box;
	width: min(100%, 1280px);
	margin: 0 auto;
	padding: clamp(56px, 8vw, 116px) clamp(20px, 5vw, 72px);
	color: var(--rz-at-ink);
}

.rz-at *,
.rz-at *::before,
.rz-at *::after {
	box-sizing: border-box;
}

.rz-at__intro {
	max-width: 920px;
	margin: 0 auto clamp(52px, 6vw, 76px);
	text-align: center;
}

.rz-at__heading,
.rz-at__title {
	font-family: inherit;
	color: inherit;
}

.rz-at__heading {
	margin: 0 0 20px;
	font-size: clamp(2rem, 4vw, 3.75rem);
	font-weight: 800;
	letter-spacing: -0.055em;
	line-height: 1;
	text-transform: uppercase;
}

.rz-at__intro-copy {
	font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
	line-height: 1.55;
	color: #3c3c3c;
}

.rz-at__intro-copy p {
	margin: 0 0 14px;
}

.rz-at__intro-copy p:last-child {
	margin-bottom: 0;
}

.rz-at__years {
	display: grid;
	grid-template-columns: repeat(var(--rz-at-item-count, 1), minmax(68px, 1fr));
	align-items: end;
	border-bottom: 1px solid var(--rz-at-line);
	overflow-x: auto;
	scrollbar-width: thin;
}

.rz-at__year {
	position: relative;
	min-width: 68px;
	padding: 0 12px 16px;
	border: 0;
	background: transparent;
	color: #949494;
	cursor: pointer;
	font: inherit;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	transition: color 160ms ease;
}

.rz-at__year::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	background: transparent;
	content: "";
	transition: background-color 160ms ease;
}

.rz-at__year:hover,
.rz-at__year:focus-visible,
.rz-at__year.is-active {
	color: var(--rz-at-accent);
	outline: none;
}

.rz-at__year.is-active::after {
	background: var(--rz-at-accent);
}

.rz-at__panels {
	padding-top: clamp(30px, 4vw, 48px);
}

.rz-at__panel {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
	gap: clamp(32px, 7vw, 112px);
	align-items: start;
	max-width: 1000px;
	margin: 0 auto;
	animation: rz-at-fade-in 180ms ease-out;
}

.rz-at__copy {
	padding-top: 2px;
}

.rz-at__eyebrow {
	margin: 0 0 14px;
	color: #4e7461;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.rz-at__title {
	margin: 0 0 16px;
	font-size: clamp(1.5rem, 2.6vw, 2.375rem);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.rz-at__content {
	color: #3c3c3c;
	font-size: 0.9375rem;
	line-height: 1.6;
}

.rz-at__content > :first-child {
	margin-top: 0;
}

.rz-at__content > :last-child {
	margin-bottom: 0;
}

.rz-at__media {
	aspect-ratio: 1.45 / 1;
	overflow: hidden;
	background: #f2f2f2;
}

.rz-at__media img,
.rz-at__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rz-at__placeholder {
	background: linear-gradient(135deg, #e7e7e7, #f7f7f7);
}

.rz-at__empty {
	margin: 0;
	padding: 20px;
	border: 1px dashed var(--rz-at-line);
	color: var(--rz-at-muted);
	text-align: center;
}

@keyframes rz-at-fade-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 782px) {
	.rz-at {
		padding-right: 20px;
		padding-left: 20px;
	}

	.rz-at__years {
		display: flex;
		margin-right: -20px;
		margin-left: -20px;
		padding-right: 8px;
		padding-left: 8px;
	}

	.rz-at__year {
		flex: 0 0 82px;
	}

	.rz-at__panel {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.rz-at__copy {
		order: 2;
	}

	.rz-at__media {
		order: 1;
	}
}
