/* Grid Layout */
.ss-gallery-grid-8a75825b {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	width: 100%;
}

@media (max-width: 1024px) {
	.ss-gallery-grid-8a75825b {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.ss-gallery-grid-8a75825b {
		grid-template-columns: 1fr;
	}
}

/* Gallery Items */
.ss-gallery-item-8a75825b {
	position: relative;
	cursor: pointer;
	overflow: hidden;
	aspect-ratio: 1920 / 812;
}

.ss-gallery-item-8a75825b img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

/* Hover Overlay */
.ss-gallery-overlay-8a75825b {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.ss-gallery-item-8a75825b:hover .ss-gallery-overlay-8a75825b {
	opacity: 1;
}

/* Custom Lightbox */
.ss-lightbox-8a75825b {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ss-lightbox-8a75825b.ss-active-8a75825b {
	opacity: 1;
	visibility: visible;
}

.ss-lightbox-overlay-8a75825b {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	cursor: pointer;
}

.ss-lightbox-content-8a75825b {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	z-index: 100000;
}

.ss-lightbox-content-8a75825b img {
	max-width: 100%;
	max-height: 90vh;
	display: block;
	border-radius: 4px;
	box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.ss-lightbox-close-8a75825b {
	position: absolute;
	top: -40px;
	right: -40px;
	color: #fff;
	font-size: 35px;
	cursor: pointer;
	line-height: 1;
	background: none;
	border: none;
	padding: 10px;
}

@media (max-width: 767px) {
	.ss-lightbox-close-8a75825b {
		top: -40px;
		right: 0;
	}
}
