.home-about {
	padding: clamp(80px, 10vw, 150px) 0;
	background: #f1f2f2;
	color: #242424;
}

.home-about__inner {
	display: grid;
	grid-template-columns: minmax(320px, .92fr) minmax(380px, 1.08fr);
	align-items: center;
	gap: clamp(60px, 9vw, 140px);
	width: auto;
	max-width: 1240px;
	margin: 0 max(40px, calc((100% - 1240px) / 2));
}

.home-about__media {
	position: relative;
	min-width: 0;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #161616;
}

.home-about__media > picture {
	display: block;
	width: 100%;
	height: 100%;
}

.home-about__media > picture > img,
.home-about__media > img:not(.home-about__placeholder) {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: grayscale(100%);
}

.home-about__media--empty {
	display: grid;
	place-items: center;
}

.home-about__placeholder {
	width: min(44%, 190px);
	height: auto;
	opacity: .7;
}

.home-about__content {
	min-width: 0;
	max-width: 610px;
}

.home-about__eyebrow {
	margin: 0 0 23px;
	color: #767b7b;
	font: 700 10px/1.3 "Open Sans", sans-serif;
	letter-spacing: 0;
	text-transform: uppercase;
}

.home-about h2 {
	margin: 0 0 34px;
	color: #111;
	font: 400 clamp(38px, 4.4vw, 66px)/1.05 "Dosis", sans-serif;
	letter-spacing: 0;
	text-transform: uppercase;
}

.home-about__lead {
	margin-bottom: 20px;
	color: #222;
	font: 400 clamp(18px, 1.7vw, 23px)/1.55 "Libre Baskerville", serif;
}

.home-about__content > p:not(.home-about__eyebrow):not(.home-about__lead) {
	max-width: 570px;
	margin-bottom: 0;
	color: #626767;
	font-size: 14px;
	line-height: 1.9;
}

.home-about__link {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	margin-top: 34px;
	padding-bottom: 8px;
	border-bottom: 1px solid #222;
	color: #111;
	font: 700 11px/1.3 "Open Sans", sans-serif;
	letter-spacing: 0;
	text-transform: uppercase;
}

.home-about__link:hover,
.home-about__link:focus {
	border-color: transparent;
	color: #111;
}

@media (max-width: 767px) {
	.home-about { padding: 72px 0 80px; }

	.home-about__inner {
		grid-template-columns: 1fr;
		gap: 52px;
		margin-right: 24px;
		margin-left: 24px;
	}

	.home-about__media {
		width: 100%;
		aspect-ratio: 4 / 5;
	}

	.home-about h2 {
		font-size: clamp(36px, 11vw, 52px);
	}
}
