.er-ed {
	padding: 80px 24px;
	background-color: #181818;
	color: #fff;
	font-family: 'Inter', sans-serif;
}
@media (min-width: 768px) {
	.er-ed {
		padding: 80px 48px;
	}
}

.er-ed__inner {
	max-width: 1152px;
	margin: 0 auto;
}

.er-ed__heading {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 10vw;
	line-height: 0.95;
	text-transform: uppercase;
	margin: 0 0 32px;
}
@media (min-width: 768px) {
	.er-ed__heading {
		font-size: 4.5vw;
	}
}

.er-ed__image-wrap {
	position: relative;
	margin: 32px 0;
	overflow: hidden;
	aspect-ratio: 16 / 7;
}
.er-ed__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.er-ed__columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	font-size: 12px;
	color: #d4d4d4;
	font-weight: 300;
	line-height: 1.6;
}
@media (min-width: 768px) {
	.er-ed__columns {
		grid-template-columns: repeat(2, 1fr);
	}
}

.er-ed__text {
	margin: 0;
}

.er-ed__column-2 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.er-ed__link {
	display: inline-block;
	margin-top: 16px;
	width: max-content;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid #fff;
	padding-bottom: 2px;
	transition: color 0.2s ease;
}
.er-ed__link:hover {
	color: #a3a3a3;
}
