.home-banner {
	position: relative;
	display: flex;
	align-items: flex-start;
	min-height: clamp(560px, 72vh, 760px);
	background-color: #334155;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.home-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(0, 0, 0, .30) 0%, rgba(0, 0, 0, .10) 48%, rgba(0, 0, 0, .20) 100%);
}

.home-banner__inner {
	position: relative;
	z-index: 2;
	width: min(100% - 2rem, var(--home-container));
	margin-inline: auto;
	padding: clamp(3.5rem, 8vw, 6.25rem) 0 0;
}

.home-banner__content {
	max-width: 475px;
	color: #ffffff;
}

.home-banner__headline {
	margin: 0 0 1.6rem;
	color: #ffffff;
	font-family: Lato, sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.08;
}

.home-banner__subheading {
	max-width: 620px;
	margin: 0;
	color: #ffffff;
	font-family: Lato, sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.45;
}

@media (max-width: 860px) {
	.home-banner {
		min-height: clamp(500px, 68vh, 640px);
		background-position: center;
	}

	.home-banner__overlay {
		background: rgba(0, 0, 0, .52);
	}

	.home-banner__content {
		max-width: 560px;
	}
}

@media (max-width: 560px) {
	.home-banner {
		align-items: flex-start;
		min-height: 520px;
	}

	.home-banner__inner {
		padding-top: 3.5rem;
	}

	.home-banner__headline {
		margin-bottom: 1rem;
		font-size: 2.45rem;
	}

	.home-banner__subheading {
		font-size: 14px;
	}
}

.home-news-updates {
	background: #e8e8e8;
	padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.home-news-updates__inner {
	width: min(100% - 2rem, var(--home-container));
	margin-inline: auto;
}

.home-news-updates__header {
	margin-bottom: calc(40px + .55rem);
	text-align: center;
}

.home-news-updates__header h2 {
	position: relative;
	display: inline-block;
	margin: 0;
	color: #252a31;
	font-size: 2rem;
	font-weight: 800;
}



.home-news-updates__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2.5rem;
	margin-inline: auto;
}

.home-news-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
}

.home-news-card__image {
	display: block;
	background: #d9d9d9;
	text-decoration: none;
}

.home-news-card__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.home-news-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.25rem;
}

.home-news-card h3 {
	margin: 0 0 .75rem;
	color: #1d1d1d;
	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1.25;
}

.home-news-card h3 a {
	color: inherit;
	text-decoration: none;
}

.home-news-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
	margin-bottom: 1rem;
	color: #000000;
	font-size: 14px;
}

.home-news-card__meta a,
.home-news-card__read-more {
	color: var(--color-accent);
	text-decoration: underline;
}

.home-news-card p {
	margin: 0 0 2rem;
	color: #000000;
	font-size: 14px;
	line-height: 1.45;
}

.home-news-card__read-more {
	margin-top: auto;
}

@media (max-width: 900px) {
	.home-news-updates__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.5rem;
	}
}

@media (max-width: 620px) {
	.home-news-updates__grid {
		grid-template-columns: 1fr;
	}


}
