.ma-brands {
	padding: 60px 24px;
	background-color: #ffffff;
}

.ma-brands .ma-featured-inventory__header {
	margin-bottom: 40px;
}

.ma-brands__grid {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 48px;
}

.ma-brands__card {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	filter: grayscale(100%);
	opacity: 0.55;
	transition: opacity 0.2s ease, filter 0.2s ease;
}

.ma-brands__card:hover {
	filter: grayscale(0%);
	opacity: 1;
}

.ma-brands__logo {
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #3d3636;
}

.ma-brands__logo img {
	max-height: 48px;
	max-width: 140px;
	object-fit: contain;
}

.ma-brands__name {
	display: none;
}

@media (max-width: 599px) {
	.ma-brands__grid {
		gap: 32px;
	}

	.ma-brands__logo,
	.ma-brands__logo img {
		max-height: 36px;
	}
}
