.cbe-network-gallery {
	--gap: 20px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--gap);
}

.cbe-network-gallery > .network-logo {
	flex-basis: calc(50% - var(--gap));
}

.cbe-network-gallery .image-link {
	position: relative;
	width: 100%;
	height: 100%;
}

.cbe-network-gallery img {
	max-width: 225px;
	height: 100%;
}

@media screen and (max-width: 768px) {
	.cbe-network-gallery {
		justify-content: space-around;
	}
	.cbe-network-gallery img {
		max-width: 140px;
	}
}