.ln-why-choose-us {
	background-color: #FFFFFF;
	font-family: "Plus Jakarta Sans", sans-serif;
}

/* ── Inner container ── */

.ln-why-choose-us__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 36px 56px 40px;
}

/* ── Header ── */

.ln-why-choose-us__header {
	text-align: center;
	margin-bottom: 28px;
}

/* Eyebrow */
.ln-why-choose-us__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.ln-why-choose-us__eyebrow-line {
	display: block;
	width: 28px;
	height: 1px;
	background-color: #205247 !important;
	flex-shrink: 0;
}

.ln-why-choose-us__eyebrow-text {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #205247 !important;
	white-space: nowrap;
}

/* Heading */
.ln-why-choose-us__heading {
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: 38px;
	font-weight: 400;
	line-height: 1.15;
	color: #474d4d !important;
	margin: 0;
}

/* ── Features Grid ── */

.ln-why-choose-us__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0;
}

/* ── Single Item ── */

.ln-why-choose-us__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	padding: 0 20px;
	/* Thin vertical divider between items */
	border-right: 1px solid #ebe5dd;
}

.ln-why-choose-us__item:last-child {
	border-right: 0;
}

/* Icon */
.ln-why-choose-us__item-icon {
	font-size: 34px;
	line-height: 1;
	color: #205247 !important;
	margin-bottom: 10px;
}

.ln-why-choose-us__item-icon svg {
	width: 1em;
	height: 1em;
	fill: #205247 !important;
}

.ln-why-choose-us__item-icon i {
	display: block;
}

/* Title */
.ln-why-choose-us__item-title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	color: #1A1410;
	margin: 0;
}

/* Description */
.ln-why-choose-us__item-desc {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.6;
	color: #9A948E;
	margin: 0;
}

/* ── Responsive ── */

@media (max-width: 1280px) {
	.ln-why-choose-us__inner {
		padding: 32px 40px 36px;
	}
}

/* 1024px: 3×2 grid, dividers reset */
@media (max-width: 1024px) {
	.ln-why-choose-us__inner {
		padding: 32px 32px;
	}

	.ln-why-choose-us__heading {
		font-size: 34px;
	}

	/* gap: 0 so the row divider (border-top) touches the column divider
	   (border-right) directly — one continuous grid of lines, like a
	   table, instead of borders broken up by gaps between rows. */
	.ln-why-choose-us__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 0;
	}

	.ln-why-choose-us__item {
		padding: 24px 16px;
		border-right: 1px solid #E8DDD1;
	}

	/* Remove right border on last of each row */
	.ln-why-choose-us__item:nth-child(3n) {
		border-right: 0;
	}

	.ln-why-choose-us__item:nth-child(n+4) {
		border-top: 1px solid #E8DDD1;
	}
}

@media (max-width: 768px) {
	.ln-why-choose-us__inner {
		padding: 28px 20px;
	}

	.ln-why-choose-us__header {
		margin-bottom: 24px;
	}

	.ln-why-choose-us__heading {
		font-size: 28px;
	}

	/* gap: 0 so the row divider (border-top) touches the column divider
	   (border-right) directly — one continuous grid of lines, like a
	   table, instead of borders broken up by gaps between rows. */
	.ln-why-choose-us__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0;
	}

	.ln-why-choose-us__item {
		padding: 20px 14px;
	}

	/* Explicit odd/even (instead of the base rule + :nth-child(2n)) so this
	   beats the 1024px breakpoint's :nth-child(3n) rule, which otherwise
	   still applies here too (both media queries are active at once on
	   phones) and would wrongly strip the divider from item 3. */
	.ln-why-choose-us__item:nth-child(odd) {
		border-right: 0 !important;
	}

	.ln-why-choose-us__item:nth-child(even) {
		border-right: 0;
	}

	.ln-why-choose-us__item:nth-child(n+3) {
		border-top: .2px solid #f7e2cb;
	}
}

@media (max-width: 480px) {
	.ln-why-choose-us__inner {
		padding: 24px 16px;
	}

	.ln-why-choose-us__heading {
		font-size: 24px;
	}

	.ln-why-choose-us__item-icon {
		font-size: 28px;
	}
}

@media (max-width: 360px) {
	.ln-why-choose-us__grid {
		grid-template-columns: 1fr;
	}

	.ln-why-choose-us__item {
		border-right: 0;
		border-bottom: 0.2px solid #E8DDD1;
		padding: 16px 0;
	}

	.ln-why-choose-us__item:last-child {
		border-bottom: 0;
	}
}
