.home-hero {
	padding-top: clamp(2rem, 5vw, 4.5rem);
}

.home-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}

.home-hero__content {
	max-width: 38rem;
}

.home-hero__title {
	margin: 0;
	font-size: clamp(2.5rem, 5.5vw, 5.25rem);
	line-height: 0.98;
	letter-spacing: -0.06em;
}

.home-hero__title a {
	text-decoration: none;
}

.home-hero__excerpt {
	max-width: 34rem;
	margin: 1.25rem 0 1.5rem;
	color: var(--editorial-color-muted);
	font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.home-hero__excerpt p {
	margin: 0;
}

.home-hero__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border-radius: var(--editorial-radius-medium);
	background: var(--editorial-color-surface);
}

.home-hero__media img,
.home-hero__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.home-hero__media:hover img {
	transform: scale(1.025);
}

.home-hero__placeholder {
	display: block;
	background:
		linear-gradient(135deg, transparent 45%, rgb(255 255 255 / 30%) 45% 55%, transparent 55%),
		var(--editorial-color-accent);
}

.featured-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.home-page__editor-content {
	border-top: 1px solid var(--editorial-color-border);
}

@media (max-width: 1000px) {
	.featured-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}

@media (max-width: 760px) {
	.home-hero__inner {
		grid-template-columns: 1fr;
	}

	.home-hero__media {
		order: -1;
	}
}

@media (max-width: 540px) {
	.featured-grid {
		grid-template-columns: 1fr;
	}
}
