.image-list__wrapper {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.image-list__wrapper img {
	max-width: 220px;
	height: auto;
	max-height: 125px;
	width: auto;
	margin: 2rem 4rem;
	transition: transform var(--duration-long) ease;
}

.image-list__wrapper img:hover {
	transform: scale(1.03);
}
