/* Product emphasis box */
.ns-product-description-emphasis-row {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 30px;
}

.ns-product-description-emphasis-block {
	flex: 1 1 300px;
	min-width: 220px;

	background: #F7F3F0;
	padding: 30px;
	border-radius: 5px;
	/* box-shadow: 0 6px 18px rgb(0 0 0 / .05); */
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border: 1px solid #eae3de;
	
    font-size: 16px;
    font-weight: 300;
}

/*
.ns-product-description-emphasis-block:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgb(0 0 0 / .08);
}
*/

.ns-product-description-emphasis-block h3 {
	margin: 0 0 15px;
	line-height: 1;
}

.ns-product-description-emphasis-block ul:last-child {
	margin: 0;
}

.ns-product-description-emphasis-block ul li {
    line-height: 1.9
}