/* ==========================================================================
   Page Hero module (internal-page hero banner)
   ========================================================================== */
.site-breadcrumbs li,
.site-breadcrumbs li span,
.site-breadcrumbs li a {
	color: var(--white);
}
.page-hero {
	position: relative;
	min-height: 380px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--navy);
}

.page-hero .container {
	margin-right: auto;
}
.page-hero .hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 35%;
	background-repeat: no-repeat;
}
.page-hero .hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(112deg, rgba(10, 35, 66, 0.1) 0%, rgba(10, 35, 66, 0.60) 35%, rgba(10, 35, 66, 0.60) 75%, rgba(10, 35, 66, 0.1) 100%); 
}
.page-hero .hero-content {
	position: relative;
	text-align: center;
	z-index: 2;
	padding: 60px 50px;
	max-width: 960px;	
}
.page-hero h1 {
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 700;
	color: #fff!important;
	line-height: 1.18;
	margin-bottom: 18px;
}
.page-hero .hero-desc {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.65;
	max-width: 640px;
}

@media (max-width: 680px) {
	.page-hero h1 {
		font-size: 2.2rem;
	}
}
