.gallery-3-items {
	padding: 0 0 80px;
}

.gallery-3-items__gallery {
	display: flex;
	gap: 8px;
	justify-content: center;
}

.gallery-3-items__gallery picture {
	width: calc((100% / 3) - (8px * 2 / 3));
	height: 400px;
}
.gallery-3-items__gallery img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

@media (max-width: 992px) {
	.gallery-3-items {
		padding: 0 0 40px;
	}
	.gallery-3-items__gallery {
		flex-wrap: wrap;
	}
	.gallery-3-items__gallery picture {
		width: 100%;
		height: 200px;
	}
}