/* Gallery wrapper */
.gallery {
	/* Grid layout - 3 images per row */
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-gap: 20px;

	/* Optional width restrict */
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
}

/* Gallery images */
.gallery img {
	/* Dimension */
	width: 100%;

	/* Colors */
	border: 1px solid #ddd;

	/* Image resize */
	/* cover | contain | fill | scale-down */
	/*object-fit: cover;*/
}

/* On small screens - 2 images per row */
@media only screen and (max-width: 600px) {
	.gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Fullscreen mode */
.gallery img.full {
	position: fixed;
	top: 0; left: 0; z-index: 999;
	width: 100vw; height: 100%;
	object-fit: contain;
	background: rgba(0, 0, 0, 0.7);
}
.gallery img.full:hover {
	z-index: 999;
	transform: none;
}

/* Gaps */
* {
	box-sizing: border-box;
}