.block-featured-logos__title {
	font-weight: 700;
	line-height: 1.2;
	font-size: clamp( 26px, 3.5vw, 36px);
	text-align: center;
}

.featured-logos {
	opacity: .5;
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
	filter: gray; /* IE6-9 */
	-webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.featured-logos > * {
	flex-basis: 0;
	flex-grow: 1;
}

@media only screen and (max-width: 767px) {
	.featured-logos {
		flex-wrap: wrap;
	}

	.featured-logos > * {
		flex-basis: 120px;
		flex-grow: 0;
	}
}
