/* ==========================================================
   History CTA Banner — .history-cta
   ========================================================== */

.history-cta {
	position: relative;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 64px 24px;
	background: #333;
	overflow: hidden;
}

/* Background image — fills the section */

.history-cta__bg-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	z-index: 0;
}

/* Dark overlay */

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

/* Content — centred, max 850px wide */

.history-cta__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	width: 100%;
	max-width: 850px;
	text-align: center;
}

/* Heading */

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

/* Button */

.history-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 48px;
	padding: 10px 16px;
	background: var(--Brand-Colors-Primary-Colors-Red-Clay, #ed2224);
	color: #ffffff;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease;
	border: none;
	flex-shrink: 0;
}

.history-cta__btn:hover,
.history-cta__btn:focus-visible {
	background: #c51a1c;
	color: #ffffff;
	text-decoration: none;
}

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

/* Desktop */

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

	.history-cta__heading {
		font-size: 48px;
	}
}
