/* ========================================================================
   Inner Banner
   Page-top hero band, on-brand with Raucy CTA-band aesthetic.
   ======================================================================== */

.inner-banner {
	position: relative;
	padding: 96px 0 72px;
	color: var(--color-ink);
	overflow: hidden;
	isolation: isolate;
}

/* Dark fallback (no bg image/color set) — matches --color-wash-cta from global */
.inner-banner.bg-dark {
	background: var(--color-wash-cta, linear-gradient(135deg, #071239 0%, #0d2261 50%, #1a5c8c 100%));
	color: #fff;
}

/* Magenta radial glow in top-right, matches homepage CTA band */
.inner-banner.bg-dark::after {
	content: "";
	position: absolute;
	top: -80px;
	right: -80px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(45, 148, 216, 0.25) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

/* Solid color variant */
.inner-banner.has-bg-color {
	color: #fff;
}

/* Background image variant */
.inner-banner.has-bg-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
}

.inner-banner.has-bg-image .inner-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 18, 57, 0.55) 0%, rgba(7, 18, 57, 0.78) 100%);
	z-index: 0;
}

.inner-banner .container {
	position: relative;
	z-index: 1;
}

.inner-banner-inner {
	max-width: 820px;
}
.inner-banner-heading {
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.02em;
	margin: 0 0 30px 0;
	color: inherit;
}
.inner-banner-body {
	max-width: 620px;
	opacity: 0.88;
}

.inner-banner-body p {
	margin: 0 0 10px;
}

.inner-banner-body p:last-child {
	margin-bottom: 0;
}

/* Eyebrow tweaks for dark/image/color variants */
.inner-banner .section-eyebrow {
	color: rgba(255, 255, 255, 0.7);
}

.inner-banner.bg-dark .section-eyebrow,
.inner-banner.has-bg-color .section-eyebrow,
.inner-banner.has-bg-image .section-eyebrow {
	color: #f472b6;
}

/* Breadcrumb wrapper — styles the OUTPUT of whichever SEO plugin renders inside */
.inner-banner-breadcrumb {
	margin-top: 10px;
	font-size: 14px;
	opacity: 0.85;
	letter-spacing: 0.01em;
	display: none;
}

.inner-banner-breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.inner-banner-breadcrumb a:hover {
	text-decoration: underline;
	color: var(--color-cyan-400, #22d3ee);
}

.inner-banner-breadcrumb .breadcrumb_last,
.inner-banner-breadcrumb span[aria-current="page"] {
	color: var(--color-cyan-400, #22d3ee);
	opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
	.inner-banner {
		padding: 72px 0 56px;
	}

	.inner-banner-heading {
		font-size: clamp(30px, 6vw, 40px);
	}

	.inner-banner-body {
		font-size: 16px;
	}
}