/**
 * CTA banner â€” block styles.
 *
 * Scoped to .b-c-cta-banner. This file is yours to edit; the Lake Builder admin
 * manages this block's fields (block.json) but never overwrites this
 * stylesheet. Brand tokens (--brand-*) are available here.
 */
.lake-root .b-c-cta-banner {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	/* Brand fallback shows through when no image is set. */
	background: var(--brand-deep, #1f6c66);
}

/* Background image + dimming scrim --------------------------------------- */
.lake-root .b-c-cta-banner .ccta-bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}
.lake-root .b-c-cta-banner .ccta-bg .lake-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.lake-root .b-c-cta-banner .ccta-scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	/* Teal brand tint over the photo for legible white text. */
	background:
		linear-gradient(0deg, color-mix(in srgb, var(--brand-deep, #1f6c66) 70%, transparent), color-mix(in srgb, var(--brand-deep, #1f6c66) 70%, transparent)),
		rgba(0, 0, 0, 0.25);
}

/* Content ---------------------------------------------------------------- */
.lake-root .b-c-cta-banner .ccta-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	padding-block: clamp(2.5rem, 8vw, 3rem);
	text-align: center;
	color: #fff;
	padding: 0;
}
.lake-root .b-c-cta-banner.left .ccta-inner {
	align-items: flex-start;
	text-align: left;
}

.lake-root .b-c-cta-banner .ccta-eyebrow {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.lake-root .b-c-cta-banner .ccta-head {
	margin: 0;
	color: #fff;
	font-family: var(--brand-head, inherit);
	font-weight: 500;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
	max-width: 20ch;
}
.lake-root .b-c-cta-banner .ccta-head p {
	margin: 0;
}
/* Emphasized words become a serif italic, matching the design. */
.lake-root .b-c-cta-banner .ccta-head em,
.lake-root .b-c-cta-banner .ccta-head i {
	font-family: 'Playfair', serif;
	font-style: italic;
	font-weight: 400;
}
.lake-root .b-c-cta-banner .ccta-text {
	max-width: 46rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	line-height: 1.6;
}
.lake-root .b-c-cta-banner .ccta-text :first-child { margin-top: 0; }
.lake-root .b-c-cta-banner .ccta-text :last-child { margin-bottom: 0; }

/* Button row ------------------------------------------------------------- */
.lake-root .b-c-cta-banner .ccta-acts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin-top: 0.75rem;
}
.lake-root .b-c-cta-banner.left .ccta-acts {
	justify-content: flex-start;
}
.lake-root .b-c-cta-banner .ccta-acts .btn-site {
	background: var(--brand, #2c8c84);
	border-color: transparent;
	color: #fff;
}
.lake-root .b-c-cta-banner .ccta-acts .btn-site:hover,
.lake-root .b-c-cta-banner .ccta-acts .btn-site:focus-visible {
	background: color-mix(in srgb, var(--brand, #2c8c84) 82%, #000);
}

/* Footnote --------------------------------------------------------------- */
.lake-root .b-c-cta-banner .ccta-footnote {
	margin-top: 0.5rem;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
	line-height: 1.5;
}
.lake-root .b-c-cta-banner .ccta-footnote a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.lake-root .b-c-cta-banner .ccta-footnote :first-child { margin-top: 0; }
.lake-root .b-c-cta-banner .ccta-footnote :last-child { margin-bottom: 0; }

@media (max-width: 560px) {
	.lake-root .b-c-cta-banner .ccta-acts {
		width: 100%;
		flex-direction: column;
	}
	.lake-root .b-c-cta-banner .ccta-acts .btn-site {
		width: 100%;
		text-align: center;
	}
}
