.vendors {
	display: flex;
	flex-wrap: wrap;
	gap: 2em;
}
.vendor-item {
	width: 25%;
	flex-grow: 1;
	max-width: 500px;
	min-width: 250px;
}
.vendor-item:not(.dummy) {
	display: flex;
	flex-direction: column;
	padding: 1em;
	gap: 1em;
	border: 1px solid var(--base-gray-color);
	border-radius: 0.5em;
}
.vendor-item-logo  {
	aspect-ratio: 4 / 3;
	position: relative;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}
.vendor-item-logo  img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain; 
}
.vendor-item-name {
	font-size: 150%;
	text-align: center;
	font-weight: bold;
}
.vendor-item-link {
	text-align: center;
}