/* ==========================================================
   History Hero — .history-hero
   ========================================================== */

.history-hero {
	position: relative;
	width: 100%;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #333;
}

.history-hero__bg-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.history-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.history-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 912px;
	padding: 40px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	text-align: center;
}

/* Breadcrumbs */

.history-hero__breadcrumbs {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
	justify-content: center;
}

.history-hero__breadcrumb-home {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.history-hero__breadcrumb-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.history-hero__breadcrumb-chevron {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
}

.history-hero__breadcrumb-parent {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #ffffff;
	text-decoration: none;
}

.history-hero__breadcrumb-parent:hover {
	text-decoration: underline;
}

.history-hero__breadcrumb-current {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #ffffff;
}

/* H1 */

.history-hero__title {
	font-family: 'Gotham', sans-serif;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	margin: 0;
}

/* Subtitle */

.history-hero__subtitle {
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #ffffff;
	margin: 0;
	max-width: 100%;
}

/* Responsive */

@media (min-width: 768px) {
	.history-hero {
		min-height: 680px;
	}

	.history-hero__content {
		padding: 64px 24px;
	}

	.history-hero__title {
		font-size: 58px;
	}

	.history-hero__subtitle {
		font-size: 18px;
	}
}
