.er2-tr {
	padding: 96px 24px;
	background-color: #111111;
	color: #fff;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-family: 'Inter', sans-serif;
}
@media (min-width: 768px) {
	.er2-tr {
		padding: 96px 48px;
	}
}

.er2-tr__head {
	max-width: 1280px;
	margin: 0 auto 64px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
	.er2-tr__head {
		flex-direction: row;
		align-items: flex-end;
	}
}

.er2-tr__eyebrow {
	display: block;
	margin-bottom: 8px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #8fa08c;
}

.er2-tr__heading {
	font-family: 'Syne', sans-serif;
	font-weight: 900;
	font-size: 9vw;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin: 0;
}
@media (min-width: 768px) {
	.er2-tr__heading {
		font-size: 3.5vw;
	}
}

.er2-tr__description {
	max-width: 380px;
	font-size: 12px;
	color: #a3a3a3;
	line-height: 1.6;
	margin: 0;
}

.er2-tr__grid {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
@media (min-width: 1024px) {
	.er2-tr__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.er2-tr__card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 24px;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.5s ease;
}
.er2-tr__card:hover {
	border-color: rgba(143, 160, 140, 0.5);
}

.er2-tr__media {
	position: relative;
	height: 224px;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 24px;
	background-color: #000;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.er2-tr__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.er2-tr__slice {
	position: absolute;
	left: 0;
	width: 100%;
	height: 25.1%;
	background-size: cover;
	background-position: center center;
}
.er2-tr__slice--0 { top: 0%; background-position: center 0%; }
.er2-tr__slice--1 { top: 25%; background-position: center 33.3%; }
.er2-tr__slice--2 { top: 50%; background-position: center 66.6%; }
.er2-tr__slice--3 { top: 75%; background-position: center 100%; }

.er2-tr__meta {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 8px;
}

.er2-tr__stage {
	font-family: monospace;
	font-size: 10px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #8fa08c;
}

.er2-tr__category {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #737373;
}

.er2-tr__card-title {
	font-family: 'Syne', sans-serif;
	font-weight: 900;
	font-size: 24px;
	margin: 0 0 12px;
	transition: color 0.2s ease;
}
.er2-tr__card:hover .er2-tr__card-title {
	color: #8fa08c;
}

.er2-tr__card-desc {
	font-size: 12px;
	color: #a3a3a3;
	line-height: 1.6;
	margin: 0;
}

.er2-tr__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 32px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #a3a3a3;
}

.er2-tr__footer-cta {
	color: #fff;
	transition: transform 0.2s ease;
}
.er2-tr__card:hover .er2-tr__footer-cta {
	transform: translateX(4px);
}
