.ln-cta-banner {
	background-color: #F5EDE0;
	font-family: "Plus Jakarta Sans", sans-serif;
	/* overflow visible so person image can bleed above */
	overflow: visible;
	position: relative;
}

/* ── Inner ── */

.ln-cta-banner__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 12px 0;
	display: flex;
	align-items: center;
	min-height: 160px;
	max-height: 180px;
	position: relative;
	overflow: hidden;
}

/* ── Left person image — overflows above the banner ── */

.ln-cta-banner__person {
	flex: 0 0 20%;
	width: 20%;
	align-self: flex-start;
	margin: 0;
	line-height: 0;
	margin-bottom: -1px;
}

.ln-cta-banner__person img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: top center;
}

/* ── Center content ── */

.ln-cta-banner__content {
	flex: 0 0 60%;
	width: 60%;
	align-self: center;
	padding: 0 32px;
}

.ln-cta-banner__heading {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.2;
	color: #2C1A0A;
	margin: 0 0 5px;
}

.ln-cta-banner__subtext {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 12.5px;
	font-weight: 400;
	color: #474d4d !important;
	margin: 0 0 16px;
	line-height: 1.5;
}

/* ── Buttons ── */

.ln-cta-banner__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
}

/* Primary button anchors left; outline buttons float to the right */
.ln-cta-banner__btn--primary {
	margin-right: auto;
}

.ln-cta-banner__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 10px 20px;
	border-radius: 4px;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	letter-spacing: 0.01em;
	cursor: pointer;
	border: 1.5px solid transparent;
}

/* Primary — dark filled */
.ln-cta-banner__btn--primary {
	background-color: #205247;
	color: #FFFFFF;
	border-color: #205247;
}

.ln-cta-banner__btn--primary:hover {
	background-color: #5A3018;
	border-color: #5A3018;
	color: #FFFFFF;
}

/* Outline */
.ln-cta-banner__btn--outline {
	background-color: transparent;
	color: #205247;
	border-color: #989795;
}

.ln-cta-banner__btn--outline:hover {
	background-color: #205247;
	border-color: #205247;
	color: #FFFFFF;
}

.ln-cta-banner__btn i,
.ln-cta-banner__btn svg {
	font-size: 14px;
	width: 14px;
	height: 14px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	vertical-align: middle;
	fill: currentColor;
}

/* ── Right decorative element — also overflows above ── */

.ln-cta-banner__deco {
	flex: 0 0 20%;
	width: 20%;
	margin: 0;
	margin-bottom: -1px;
	opacity: 0.5;
	pointer-events: none;
	/* align-self: flex-end; */
	line-height: 0;
	display: flex;
	justify-content: flex-end;
}

.ln-cta-banner__deco img {
	display: block;
	height: 200px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	object-position: bottom right;
}

/* ── Responsive ── */

@media (max-width: 1280px) {
	.ln-cta-banner__inner {
		padding: 14px 40px;
		min-height: 160px;
	}

	.ln-cta-banner__person {
		width: 175px;
	}

	.ln-cta-banner__person img {
		height: 230px;
	}
}

@media (max-width: 1024px) {
	.ln-cta-banner__inner {
		padding: 16px 24px;
		min-height: 160px;
		max-height: 180px;
	}

	.ln-cta-banner__heading {
		font-size: 24px;
	}

	.ln-cta-banner__content {
		flex: 1 1 auto;
		width: auto;
		padding: 0 20px;
	}

	.ln-cta-banner__person {
		flex: 0 0 120px;
		width: 120px;
		margin-right: 16px;
	}

	.ln-cta-banner__person img {
		height: 190px;
	}

	.ln-cta-banner__deco {
		flex: 0 0 70px;
		width: 70px;
	}

	.ln-cta-banner__deco img {
		height: 170px;
	}
}

@media (max-width: 768px) {
	.ln-cta-banner {
		overflow: hidden;
	}

	.ln-cta-banner__inner {
		min-height: 0;
		max-height: none;
		padding: 32px 20px;
		flex-direction: column;
		align-items: stretch;
	}

	.ln-cta-banner__person,
	.ln-cta-banner__deco {
		display: none;
	}

	.ln-cta-banner__content {
		width: 100%;
		padding: 0;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}

	.ln-cta-banner__heading {
		font-size: 28px;
		line-height: 1.2;
		margin-bottom: 8px;
	}

	.ln-cta-banner__subtext {
		font-size: 16px;
		line-height: 1.6;
		margin-bottom: 20px;
	}

	.ln-cta-banner__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: 10px;
	}

	.ln-cta-banner__btn--primary {
		margin-right: 0;
	}

	.ln-cta-banner__btn {
		width: 100%;
		justify-content: center;
		font-size: 16px;
		padding: 12px 20px;
		min-height: 48px;
		white-space: normal;
	}
}

@media (max-width: 480px) {
	.ln-cta-banner__inner {
		padding: 28px 16px;
	}

	.ln-cta-banner__heading {
		font-size: 24px;
	}

	.ln-cta-banner__subtext {
		margin-bottom: 18px;
	}

	.ln-cta-banner__actions {
		gap: 8px;
	}

	.ln-cta-banner__btn {
		padding: 12px 16px;
	}
}
