/*----------------------------------------------------------------- */
/* GALLERY
/*----------------------------------------------------------------- */

.block_gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
}

.block_gallery a {
	aspect-ratio: 1 / 1;
}

.block_gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 600px) {
	.block_gallery {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 400px) {
	.block_gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}