/* ── Experts Section Widget ── */

.ln-experts-section {
	position: relative;
	overflow: hidden;
	background-color: #F9F3EB;
	font-family: "Plus Jakarta Sans", sans-serif;
}

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

.ln-experts-section__content {
	width: 100%;
	max-width: 520px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.ln-experts-section__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

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

.ln-experts-section__eyebrow-text {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #B67A3C;
}

.ln-experts-section__heading {
	margin: 0 0 16px;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.15;
	color: #1A1410;
}

.ln-experts-section__divider {
	display: block;
	width: 48px;
	height: 2px;
	background-color: #C49F7B;
	margin-bottom: 22px;
}

.ln-experts-section__body {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 28px;
}

.ln-experts-section__paragraph {
	margin: 0;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.7;
	color: #5A6464;
	max-width: 70ch;
}

.ln-experts-section__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 24px;
	border-radius: 8px;
	background-color: #205247;
	border: 1px solid #205247;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: #FFFFFF;
	text-decoration: none;
	transition: filter 0.2s ease;
}

.ln-experts-section__btn:hover {
	filter: brightness(1.08);
	color: #FFFFFF;
}

.ln-experts-section__btn i,
.ln-experts-section__btn svg {
	font-size: 14px;
	width: 14px;
	height: 14px;
	fill: currentColor;
	transition: transform 0.2s ease;
}

.ln-experts-section__btn:hover i,
.ln-experts-section__btn:hover svg {
	transform: translateX(3px);
}

.ln-experts-section__image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 616px;
	z-index: 1;
	overflow: hidden;
}

.ln-experts-section__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ln-experts-section__image::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to right,
		#F9F3EB 0%,
		#F9F3EBeb 6%,
		rgba(249, 243, 235, 0.75) 12%,
		rgba(249, 243, 235, 0.55) 18%,
		rgba(249, 243, 235, 0.32) 24%,
		rgba(249, 243, 235, 0.14) 30%,
		rgba(249, 243, 235, 0) 36%
	);
	pointer-events: none;
}

@media (max-width: 1280px) {
	.ln-experts-section__inner {
		min-height: 480px;
		padding: 56px 40px;
	}

	.ln-experts-section__image {
		left: 560px;
	}

	.ln-experts-section__heading {
		font-size: 40px;
	}
}

@media (max-width: 1024px) {
	.ln-experts-section {
		overflow: visible;
	}

	.ln-experts-section__inner {
		display: block;
		min-height: 0;
		max-width: none;
		padding: 48px 32px 0;
	}

	.ln-experts-section__content {
		max-width: none;
	}

	.ln-experts-section__paragraph {
		max-width: none;
	}

	.ln-experts-section__image {
		position: static;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		display: block;
		width: 100%;
		margin-top: 32px;
		aspect-ratio: 16 / 9;
	}

	.ln-experts-section__image::before {
		display: none;
	}

	.ln-experts-section__heading {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	.ln-experts-section__inner {
		padding: 40px 24px 0;
	}

	.ln-experts-section__heading {
		font-size: 32px;
	}

	.ln-experts-section__paragraph {
		font-size: 16px;
	}

	.ln-experts-section__image {
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 480px) {
	.ln-experts-section__inner {
		padding: 40px 20px 0;
	}

	.ln-experts-section__heading {
		font-size: 28px;
	}

	.ln-experts-section__btn {
		width: 100%;
	}
}
