/* bz_acat — SVG-иконки и блок каталога на главной */
.bz-acat-module__icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	padding: 0.5rem 0;
}
.bz-acat-module__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s, transform 0.2s;
}
.bz-acat-module__icon:hover {
	opacity: 0.85;
	transform: scale(1.05);
}
.bz-acat-module__icon img {
	height: 48px;
	width: auto;
	max-width: 64px;
	object-fit: contain;
}
@media (min-width: 768px) {
	.bz-acat-module__icon img {
		height: 56px;
		max-width: 72px;
	}
}
