/**
 * Full-width CTA banner section styles.
 *
 * @package Novacare
 */

.cta-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: #ffffff;
	text-align: center;
}

.cta-banner__background {
	position: absolute;
	inset: 0;
	background-color: #1e2d28;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transform: scale(1.03);
}

.cta-banner__overlay {
	position: absolute;
	inset: 0;
	background: rgba(22, 32, 28, 0.82);
}

.cta-banner__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-block: clamp(5rem, 10vw, 7rem);
}

.cta-banner__content {
	max-width: 40rem;
	margin-inline: auto;
}

.cta-banner__eyebrow {
	margin: 0 0 1.25rem;
	font-family: var(--nv-font-sans);
	font-size: 12px;
	font-weight: 500;
	font-style: normal;
	line-height: 16px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--nv-color-gold);
}

.cta-banner__title {
	margin: 0 0 1.25rem;
	font-family: var(--nv-font-serif);
	font-size: 44px;
	font-weight: 500;
	font-style: normal;
	line-height: 52.8px;
	letter-spacing: 0;
	color: #ffffff;
}

.cta-banner__title-line {
	display: block;
}

.cta-banner__description {
	margin: 0 auto 2rem;
	max-width: 34rem;
	font-family: var(--nv-font-sans);
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 28px;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.92);
}

.cta-banner__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.875rem;
}

.cta-banner__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	min-height: 3rem;
	padding: 0.95rem 1.65rem;
	font-family: var(--nv-font-sans);
	font-size: 14px;
	font-weight: 500;
	font-style: normal;
	line-height: 20px;
	letter-spacing: 0.84px;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cta-banner__btn--primary {
	background: #c09d67;
	border: 1px solid #c09d67;
	color: #ffffff;
}

.cta-banner__btn--primary:hover,
.cta-banner__btn--primary:focus-visible {
	background: #b08d57;
	border-color: #b08d57;
	color: #ffffff;
	transform: translateY(-1px);
}

.cta-banner__btn--ghost {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.85);
	color: #ffffff;
}

.cta-banner__btn--ghost:hover,
.cta-banner__btn--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: #ffffff;
	color: #ffffff;
	transform: translateY(-1px);
}

.cta-banner__btn svg {
	flex-shrink: 0;
}

@media (max-width: 575px) {
	.cta-banner__actions {
		flex-direction: column;
		width: 100%;
	}

	.cta-banner__btn {
		width: 100%;
		max-width: 18rem;
	}
}
