.blog-index {
	background: #f6f5f1;
}

.blog-index__hero {
	align-items: center;
	background-image: linear-gradient(90deg, rgba(8, 8, 8, .93) 0%, rgba(8, 8, 8, .76) 40%, rgba(8, 8, 8, .23) 72%, rgba(8, 8, 8, .1) 100%), var(--blog-hero-image);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	min-height: clamp(35rem, 45vw, 40rem);
}

.blog-index__hero-wrapper {
	align-items: center;
	display: flex;
	min-height: inherit;
	width: 100%;
}

.blog-index__hero-copy {
	max-width: 43rem;
	padding-block: 6rem 8rem;
}

.blog-index__hero h1,
.blog-index__hero p {
	color: #fdfdff;
}

.blog-index__hero h1 {
	font-size: clamp(3.2rem, 6vw, 5.75rem);
	line-height: .98;
	margin: .8rem 0 1.4rem;
	text-wrap: balance;
}

.blog-index__hero-copy > p:not(.blog-index__eyebrow) {
	font-size: clamp(1rem, 1.5vw, 1.18rem);
	line-height: 1.65;
	max-width: 37rem;
}

.blog-index__eyebrow {
	color: #f4d735 !important;
	font-family: Montserrat, Arial, sans-serif;
	font-size: .8rem !important;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.blog-index__hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.blog-index__hero-actions .btn {
	position: relative;
	z-index: 1;
}

.blog-index__wrapper {
	padding-block: clamp(4rem, 8vw, 7rem);
	position: relative;
	z-index: 2;
}

.blog-index__grid {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: 100%;
}

.blog-index__card {
	background: #fff;
	border: 1px solid rgba(18, 18, 18, .12);
	border-radius: .5rem;
	box-shadow: 0 .75rem 2rem rgba(18, 18, 18, .08);
	overflow: hidden;
	position: relative;
	transition: transform .3s ease, box-shadow .3s ease;
}

.blog-index__card:hover {
	box-shadow: 0 1rem 2.5rem rgba(18, 18, 18, .13);
	transform: translateY(-.3rem);
}

.blog-index__card-link {
	inset: 0;
	position: absolute;
	z-index: 2;
}

.blog-index__card figure {
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.blog-index__card img {
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
	width: 100%;
}

.blog-index__card:hover img {
	transform: scale(1.035);
}

.blog-index__card-content {
	padding: 1.5rem;
}

.blog-index__card-label {
	color: #6a5900;
	font-family: Montserrat, Arial, sans-serif;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.blog-index__card h2 {
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	line-height: 1.2;
	margin: .65rem 0 1rem;
}

.blog-index__card-content > p:not(.blog-index__card-label) {
	color: #4a4a4a;
	line-height: 1.6;
}

.blog-index__card-content span {
	display: inline-block;
	font-weight: 600;
	margin-top: 1.25rem;
}

.blog-index .nav-links {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 3rem;
	width: 100%;
}

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

@media (max-width: 767px) {
	.blog-index__hero {
		background-image: linear-gradient(90deg, rgba(8, 8, 8, .94) 0%, rgba(8, 8, 8, .72) 72%, rgba(8, 8, 8, .45) 100%), var(--blog-hero-image);
		background-position: 62% center;
		min-height: 32.5rem;
	}

	.blog-index__hero-copy {
		padding-block: 5.5rem 6.5rem;
	}

	.blog-index__hero h1 {
		font-size: clamp(2.75rem, 13vw, 4rem);
	}

	.blog-index__hero-actions {
		align-items: stretch;
		flex-direction: column;
		gap: .9rem;
	}

	.blog-index__hero-actions .btn {
		justify-content: center;
		width: 100%;
	}

	.blog-index__wrapper {
		padding-block: 3.75rem;
	}

	.blog-index__grid {
		grid-template-columns: 1fr;
	}

}
