.mf-usp {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: var(--mf-cream-light);
	border-bottom: 1px solid rgba(58, 44, 32, .1);
}

.mf-usp__item {
	padding: 26px 3vw;
	border-right: 1px solid rgba(58, 44, 32, .08);
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mf-usp__item:last-child {
	border-right: none;
}

.mf-usp__title {
	font-weight: 800;
	font-size: 15px;
	color: var(--mf-ink);
}

.mf-usp__desc {
	font-size: 12.5px;
	color: #6b5a46;
}

@media (max-width: 860px) {
	.mf-usp {
		grid-template-columns: repeat(2, 1fr);
	}

	.mf-usp__item:nth-child(2n) {
		border-right: none;
	}
}
