.ln-image-content-hero {
	position: relative;
	background-color: #F3ECE2;
	font-family: "Plus Jakarta Sans", sans-serif;
	overflow: hidden;
}

/* ── Inner container — the real "container", holds only the text content ── */

.ln-image-content-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin: 0 auto;
	min-height: 560px;
	display: flex;
	align-items: center;
	padding: 64px 56px;
}

/* ── Content (left) ── */

.ln-image-content-hero__content {
	width: 100%;
	max-width: 480px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
}

/* Eyebrow */
.ln-image-content-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ln-image-content-hero__eyebrow-line {
	display: block;
	width: 28px;
	height: 1px;
	background-color: #B67A3C;
	flex-shrink: 0;
}

.ln-image-content-hero__eyebrow-text {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #B67A3C;
}

/* Heading */
.ln-image-content-hero__heading {
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #241A10;
	margin: 0;
}

/* Ornamental divider */
.ln-image-content-hero__divider {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 84px;
}

.ln-image-content-hero__divider-line {
	flex: 1;
	height: 1px;
	background-color: #B67A3C;
}

.ln-image-content-hero__divider-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #B67A3C;
	flex-shrink: 0;
	transform: rotate(45deg);
}

/* Description */
.ln-image-content-hero__desc {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	color: #6B5D4F;
	margin: 0;
	max-width: 420px;
}

/* Button */
.ln-image-content-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	align-self: flex-start;
	margin-top: 6px;
	padding: 14px 26px;
	border-radius: 8px;
	background-color: #A6672E;
	border: 1.5px solid #A6672E;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: #FFFFFF;
	text-decoration: none;
	white-space: nowrap;
	transition: filter 0.2s ease, transform 0.2s ease;
}

.ln-image-content-hero__btn:hover {
	filter: brightness(1.08);
	color: #FFFFFF;
}

.ln-image-content-hero__btn i,
.ln-image-content-hero__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;
	transition: transform 0.2s ease;
}

.ln-image-content-hero__btn:hover i,
.ln-image-content-hero__btn:hover svg {
	transform: translateX(3px);
}

/* ── Image (right) — background layer, bleeds to top/right/bottom of the section ── */
/* left offset = inner padding-left (56px) + content max-width (480px) + gap (40px) */

.ln-image-content-hero__image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 576px;
	z-index: 1;
	overflow: hidden;
}

.ln-image-content-hero__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Soft cream fade — blends the image's left edge into the content column */
.ln-image-content-hero__image::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to right, #fffcf7 0%, #fffcf7eb 6%, rgba(243, 236, 226, 0.75) 12%, rgba(243, 236, 226, 0.55) 18%, rgba(243, 236, 226, 0.32) 24%, rgba(243, 236, 226, 0.14) 30%, rgba(243, 236, 226, 0) 36%);
	pointer-events: none;
}

/* ── Features section (separate from the hero section) ── */

.ln-image-content-hero__features-section {
	font-family: "Plus Jakarta Sans", sans-serif;
}

.ln-image-content-hero__features-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 56px;
}

.ln-image-content-hero__features {
	position: relative;
	z-index: 2;
	margin-top: -64px;
	background-color: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0 24px 48px rgba(36, 26, 16, 0.12);
	padding: 32px 40px;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px 16px;
}

.ln-image-content-hero__feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	position: relative;
}

/* Vertical divider between items — centered in the column gap */
.ln-image-content-hero__feature-item:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 4px;
	bottom: 4px;
	right: -8px;
	width: 1px;
	background-color: #E7DDD1;
}

.ln-image-content-hero__feature-item:nth-child(6n)::after {
	display: none;
}

.ln-image-content-hero__feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	font-size: 22px;
	line-height: 1;
	color: #B67A3C;
}

.ln-image-content-hero__feature-icon svg {
	width: 1em;
	height: 1em;
	fill: #B67A3C;
}

.ln-image-content-hero__feature-label {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #241A10;
}

/* ── Responsive ── */

@media (max-width: 1280px) {
	.ln-image-content-hero__inner {
		min-height: 520px;
		padding: 56px 40px;
	}

	.ln-image-content-hero__image {
		left: 560px;
	}

	.ln-image-content-hero__features-container {
		padding: 0 40px;
	}

	.ln-image-content-hero__heading {
		font-size: 42px;
		font-weight: 500;
	}

	.ln-image-content-hero__features {
		padding: 28px 32px;
		gap: 22px 12px;
	}

	.ln-image-content-hero__feature-item:not(:last-child)::after {
		right: -6px;
	}
}

@media (max-width: 1024px) {
	.ln-image-content-hero {
		overflow: visible;
	}

	.ln-image-content-hero__inner {
		display: block;
		min-height: 0;
		max-width: none;
		padding: 48px 32px 0;
	}

	.ln-image-content-hero__features-container {
		padding: 0 32px;
	}

	.ln-image-content-hero__content {
		max-width: 100%;
	}

	.ln-image-content-hero__desc {
		max-width: none;
	}

	.ln-image-content-hero__image {
		position: static;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		display: block;
		width: 100%;
		margin-top: 32px;
		aspect-ratio: 16 / 9;
		border-radius: 20px;
	}

	.ln-image-content-hero__image::before {
		display: none;
	}

	.ln-image-content-hero__heading {
		font-size: 38px;
		font-weight: 500;
	}

	.ln-image-content-hero__features {
		margin-top: -48px;
		grid-template-columns: repeat(3, 1fr);
		gap: 28px 16px;
	}

	.ln-image-content-hero__feature-item:not(:last-child)::after {
		right: -8px;
	}

	.ln-image-content-hero__feature-item:nth-child(3n)::after {
		display: none;
	}
}

@media (max-width: 768px) {
	.ln-image-content-hero__inner {
		padding: 40px 20px 0;
	}

	.ln-image-content-hero__features-container {
		padding: 0 20px;
	}

	.ln-image-content-hero__heading {
		font-size: 32px;
		font-weight: 500;
	}

	.ln-image-content-hero__desc {
		font-size: 15px;
	}

	.ln-image-content-hero__btn {
		padding: 12px 22px;
		font-size: 15px;
	}

	.ln-image-content-hero__image {
		border-radius: 0px;
		aspect-ratio: 4 / 3;
	}

	.ln-image-content-hero__features {
		margin-top: -32px;
		padding: 24px 20px;
		border-radius: 16px;
		grid-template-columns: repeat(2, 1fr);
		gap: 24px 12px;
	}

	.ln-image-content-hero__feature-item:not(:last-child)::after {
		right: -6px;
	}

	.ln-image-content-hero__feature-item:nth-child(6n)::after,
	.ln-image-content-hero__feature-item:nth-child(3n)::after {
		display: block;
	}

	.ln-image-content-hero__feature-item:nth-child(2n)::after {
		display: none;
	}

	.ln-image-content-hero__feature-icon {
		width: 38px;
		height: 38px;
		font-size: 20px;
	}

	.ln-image-content-hero__feature-label {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.ln-image-content-hero__inner {
		padding: 20px 16px 20px;
	}

	.ln-image-content-hero__features-container {
		padding: 0 16px;
	}

	.ln-image-content-hero__heading {
		font-size: 26px;
		font-weight: 500;
	}

	.ln-image-content-hero__btn {
		width: 100%;
	}

	.ln-image-content-hero__features {
		margin-top: -24px;
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 15px 16px;
	}

	.ln-image-content-hero__feature-item {
		flex-direction: row;
		align-items: center;
		text-align: left;
		gap: 14px;
	}

	.ln-image-content-hero__feature-item:nth-child(n)::after {
		display: none;
	}
}
