/**
 * Window Smart Home - shared inner-page banner
 * Used by single.php, archive.php, single-wsh_service.php,
 * template-service-detail.php, and the About Us, Contact Us, FAQ, Privacy
 * Policy and Service Listing page templates.
 */

.wsh-page-banner {
	position: relative;
	overflow: hidden;
	padding-block: clamp(3.5rem, 2.5rem + 4vw, 6rem) clamp(6.5rem, 4.5rem + 6vw, 9.5rem);
	background: var(--wsh-gradient-navy);
	color: var(--wsh-white);
	text-align: center;
}

.wsh-page-banner--flush {
	padding-bottom: clamp(3.5rem, 2.5rem + 4vw, 6rem);
}

.wsh-page-banner__inner {
	position: relative;
	z-index: 1;
}

.wsh-breadcrumb {
	display: inline-flex;
	align-items: center;
	gap: var(--wsh-space-2);
	margin-bottom: var(--wsh-space-4);
	color: var(--wsh-on-dark-70);
	font-size: var(--wsh-fs-sm);
}

.wsh-breadcrumb a {
	color: var(--wsh-white);
	text-decoration: none;
}

.wsh-breadcrumb a:hover {
	text-decoration: underline;
}

.wsh-breadcrumb__sep {
	opacity: 0.6;
}

.wsh-page-banner__eyebrow {
	margin: 0 0 var(--wsh-space-3);
	color: var(--wsh-green);
	font-size: var(--wsh-fs-sm);
	font-weight: var(--wsh-fw-semibold);
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.wsh-page-banner__eyebrow a {
	color: inherit;
}

.wsh-page-banner__title {
	margin-bottom: var(--wsh-space-4);
	color: var(--wsh-white);
	font-size: var(--wsh-fs-h1);
}

.wsh-page-banner__text {
	max-width: 34rem;
	margin-inline: auto;
	color: var(--wsh-on-dark-70);
	font-size: var(--wsh-fs-lead);
}

.wsh-single__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--wsh-space-5);
	margin-top: var(--wsh-space-5);
}

.wsh-single__meta-item {
	display: inline-flex;
	align-items: center;
	gap: var(--wsh-space-2);
	color: var(--wsh-on-dark-70);
	font-size: var(--wsh-fs-sm);
}

.wsh-service-single__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: var(--wsh-space-4);
	border: 1px solid var(--wsh-hairline);
	border-radius: var(--wsh-radius-circle);
	background: rgba(255, 255, 255, 0.08);
	color: var(--wsh-green);
}

.wsh-service-detail__highlights {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--wsh-space-5);
	margin: var(--wsh-space-5) 0 0;
	padding: 0;
	list-style: none;
}

.wsh-service-detail__highlights li {
	display: inline-flex;
	align-items: center;
	gap: var(--wsh-space-2);
	color: var(--wsh-on-dark-70);
	font-size: var(--wsh-fs-sm);
	font-weight: var(--wsh-fw-medium);
}

.wsh-service-detail__highlights .wsh-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	border-radius: var(--wsh-radius-circle);
	background: var(--wsh-green);
	color: var(--wsh-white);
}
