/* ── Contact Info Cards Widget ── */

.ln-contact-info {
	font-family: "Plus Jakarta Sans", sans-serif;
}

/* Light cream strip — contact page style */
.ln-contact-info--light {
	background-color: #FAF7F2;
}

/* Transparent — cards sit on dark hero background */
.ln-contact-info--dark {
	background-color: transparent;
}


.ln-contact-info.ln-contact-info--light {
	position: relative;
	top: -50px;
	z-index: 11;
	margin-bottom: -50px;
	background: unset !important;
}

.ln-contact-info__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 24px 56px;
	padding-top: 10px;
}

/* ── Card ── */

.ln-contact-info__card {
	position: relative;
	overflow: hidden;
	background-color: #FFFCF7;
	border: 1px solid #EBE6DF;
	border-radius: 10px;
}

.ln-contact-info__card-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 18px;
	min-height: 96px;
}

/* ── Decorative leaves ── */

.ln-contact-info__decor {
	position: absolute;
	width: 80px;
	height: 80px;
	pointer-events: none;
	z-index: 0;
}

.ln-contact-info__decor--left {
	bottom: -6px;
	left: -6px;
	color: #205247;
	opacity: 0.1;
}

.ln-contact-info__decor--right {
	bottom: -6px;
	right: -6px;
	color: #B67A3C;
	opacity: 0.14;
}

/* ── Icon ── */

.ln-contact-info__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: #205247;
	color: #FFFFFF;
	font-size: 18px;
	line-height: 1;
}

.ln-contact-info__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.ln-contact-info__icon i {
	display: block;
	font-weight: 400;
}

/* ── Content ── */

.ln-contact-info__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3px;
	min-width: 0;
}

.ln-contact-info__title {
	margin: 0;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	color: #205247;
}

.ln-contact-info__detail {
	margin: 0;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	color: #5A6464;
}

.ln-contact-info__detail--link {
	display: block;
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ln-contact-info__detail--link:hover {
	color: #205247;
}

/* Flush below hero widget when using dark overlay style */
.elementor-widget-ln_hero_section+.elementor-widget-ln_contact_info .ln-contact-info--dark {
	margin-top: 0;
}

.elementor-widget-ln_hero_section+.elementor-widget-ln_contact_info .ln-contact-info--dark .ln-contact-info__inner {
	padding-top: 20px;
}

/* ── Responsive ── */

@media (max-width: 1280px) {
	.ln-contact-info__inner {
		padding: 22px 40px;
		gap: 12px;
	}
}

@media (max-width: 1024px) {
	.ln-contact-info__inner {
		grid-template-columns: repeat(2, 1fr);
		padding: 20px 32px;
	}
}

@media (max-width: 640px) {
	.ln-contact-info__inner {
		grid-template-columns: 1fr;
		padding: 18px 20px;
		gap: 10px;
	}

	.ln-contact-info__card-inner {
		padding: 16px 14px;
		min-height: 84px;
	}

	.ln-contact-info__title {
		font-size: 17px;
	}

	.ln-contact-info__detail {
		font-size: 13px;
	}
}



.post-3048 .ln-hero-section__stats {
	position: relative;
	z-index: 2;
	margin-bottom: 43px;
}