
.image-gallery {
	position: relative;
	display:flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
	
}

.image-gallery .img-frame {
	display:block;
	position: relative;
	flex-basis: calc(50% - 0.5rem);
	aspect-ratio: 1/1;
	overflow:hidden;
}

.image-gallery .img-frame img {
	display:block;
	max-width: none;
	width: 100%;
	height: auto;
	position: absolute;
	transform: translate(0,-50%);
	top: 50%;
}

.image-gallery .img-frame .landscape {
	height: 100%;
	width: auto;
	transform: translate(-50%,0);
	left: 50%;
	top: 0;
} 

.glightbox-clean .gclose {
	width: 50px;
	height: 50px;
}

.gslide-image img {
	max-height: 1000px;
	max-width: 1600px;
}


/* desktop */
@media screen and (min-width: 900px) {
	
	.image-gallery {
		gap: 1rem;
		
	}
	
	.image-gallery .img-frame {
		flex-basis: calc(33.333% - 1rem);
		
	}
}