.gallery-thumb{cursor:pointer}

/* Grid/card layout for gallery thumbnails */
.gallery-item{
	background:#fff;
	border-radius:.5rem;
	overflow:hidden;
	box-shadow:0 6px 18px rgba(47,57,77,0.08);
	border:1px solid rgba(0,0,0,0.04);
	display:block;
	aspect-ratio: 1 / 1;
	width:100%;
}
.gallery-item img{
	width:100%;
	height:100%;
	object-fit:contain;
	display:block;
	transition:transform .18s ease;
}
.gallery-item img:hover{transform:scale(1.04)}
@media(min-width:768px){.gallery-item{aspect-ratio:1/1}}

.gallery-section-header{margin-bottom:1rem}

/* Smaller framed thumbnails for inline project cards */
.project-gallery{max-width:300px;margin-left:auto}
.project-gallery .gallery-item{aspect-ratio:1/1}
@media(min-width:768px){.project-gallery .gallery-item{aspect-ratio:1/1}}

/* Keep the full photo visible when it is opened in the gallery modal. */
#galleryCarousel .carousel-item img{
	max-height:80vh;
	width:auto;
	max-width:100%;
	margin:0 auto;
	object-fit:contain;
}


