/**
 * Smart Leading Net — Reusable inner page hero banner
 * Used by Contact Us, About Us, and future page templates.
 */

.page-banner {
	--page-banner-navy: #0f1d63;
	--page-banner-primary: #2f62e9;

	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
	padding: 48px 0;
	background-color: var(--page-banner-navy);
	background-image: linear-gradient(135deg, #0f1d63 0%, #1a3078 45%, #2f62e9 100%);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.page-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url('../images/call-shap1.webp');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0.22;
	pointer-events: none;
	z-index: 0;
}

.page-banner__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.page-banner__breadcrumb {
	margin: 0 0 16px;
}

.page-banner__breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
	font-weight: var(--font-weight-medium);
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.85);
}

.page-banner__breadcrumb-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.page-banner__breadcrumb-link {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: color var(--transition-base);
}

.page-banner__breadcrumb-link:hover,
.page-banner__breadcrumb-link:focus {
	color: var(--white);
	text-decoration: underline;
}

.page-banner__breadcrumb-sep {
	opacity: 0.7;
}

.page-banner__title {
	margin: 0;
	font-family: var(--font-family-base);
	font-size: var(--h1-size);
	font-weight: var(--h1-weight);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--white);
}

@media (max-width: 767.98px) {
	.page-banner {
		min-height: 220px;
		padding: 32px 0;
	}

	.page-banner__title {
		font-size: var(--section-title-size-mobile);
		line-height: var(--section-title-line-height-mobile);
	}
}
