.lemax-village-products-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 2.5rem;
	margin: 0 auto;
}

.lemax-village-products-village {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2.5rem 0;
    border-bottom: 1px solid #ebebeb;
}

.lemax-village-products-village-logo {
	margin-bottom: 1rem;
}

.lemax-village-products-village-logo img {
	height: 110px;
	object-fit: contain;
	display: block;
}

.lemax-village-products-village-title {
	margin: 0 0 1rem 0;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    color: #002349 !important;
    line-height: 1.2 !important;
}

.lemax-village-products-village-desc {
	font-size: 15px;
	color: #444;
	line-height: 1.5;
	margin-bottom: 24px;
	overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
	max-width: 600px;
}

.lemax-village-products-village-desc p {
	margin: 0 0 0.5em 0;
}

.lemax-village-products-village-desc p:last-child {
	margin-bottom: 0;
}

.lemax-village-products-products {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 1.25rem;
}

.lemax-village-products-product {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
	width: 130px;
}

.lemax-village-products-product-img {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	border: 1px solid #dbd4d4 !important;
    box-shadow: 1px 1px 10px 0 rgb(95 80 186 / 20%) !important;
	margin-bottom: 16px;
	flex-shrink: 0;
}
.lemax-village-products-product-img img {
	border-radius: 50%;
	padding: 10px;
	object-fit: cover;
	height: 100%;
	backface-visibility: hidden;
	transform: translateZ(0);
	will-change: transform;
	width: 100%;
	transition: transform 0.3s ease;
}
.lemax-village-products-product-title {
	font-size: 14px;
	font-weight: 700;
	color: #002349;
	text-align: center;
	line-height: 1.2;
}
.lemax-village-products-product:hover {
	text-decoration: none !important;
	transition: all 0.3s ease;
}
.lemax-village-products-product img {
	transition: all 0.3s ease;
}
.lemax-village-products-product:hover img {
	transform: scale(1.05);
	transition: all 0.3s ease;
}
.lemax-village-products-product:hover .lemax-village-products-product-title {
    text-decoration: none !important;
	color: var(--link_hover_color);
}
.lemax-village-products-view-all {
	display: inline-block;
	background: #0b1c2d;
	margin: 0;
    font-size: 16px !important;
    padding: 10px 20px !important;
    display: block !important;
	border-radius: 6px;
    text-align: center !important;
	color: #fff;
    line-height: normal !important;
	margin-top: auto;
	text-decoration: none !important;
}

.lemax-village-products-view-all:hover {
	background: #ffcc00;
    color: #222;
}
@media (max-width: 991px) {
	.lemax-village-products-block {
		grid-template-columns: 1fr;
	}
	.lemax-village-products-village:first-child {
		padding-top: 15px;
	}
	.lemax-village-products-village:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}
	.lemax-village-products-village-logo img {
		height: 100px;
	}
	.lemax-village-products-product {
		width: 100px;
	}
	.lemax-village-products-product-img {
		width: 100px;
		height: 100px;
	}
	.lemax-village-products-products {
		gap: 1rem;
	}
}