/* Page hero banner (based on industria.be .hero) */

.hero {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-inline: calc(50% - 50vw);
	padding: 0;
	background-color: #f3f3f3;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.hero--has-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.hero-body {
	position: relative;
	z-index: 2;
	padding: 3.75rem 0;
}

.hero-body.has-tp-1 {
	padding-top: 3.75rem;
}

.hero-body.has-bp-1 {
	padding-bottom: 3.75rem;
}

.hero .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 0.9375rem;
}

.hero-column {
	background-color: #fff;
	border-radius: 0.375rem;
	padding: 1.25rem;
	max-width: 36rem;
}

.hero-column__title {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.2;
	color: #092059;
}

.hero-column__excerpt {
	margin: 0;
	padding-top: 1.875rem;
	font-family: "Inter", sans-serif;
	font-size: 1rem;
	line-height: 1.875;
	color: #1a1a1a;
}

@media screen and (min-width: 1024px) {
	.hero-body {
		padding: 3.75rem 0 6.25rem;
	}

	.hero-column {
		padding: 2.5rem;
		max-width: 58%;
	}

	.hero-column__title {
		font-size: 2.25rem;
	}
}
