.ds-big-tingz-gallery-grid-fdb9e50b {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
}

@media (max-width: 1024px) {
	.ds-big-tingz-gallery-grid-fdb9e50b {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.ds-big-tingz-gallery-grid-fdb9e50b {
		grid-template-columns: repeat(1, 1fr);
	}
}

.ds-gallery-item-fdb9e50b {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1254 / 538;
	cursor: pointer;
}

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

.ds-gallery-overlay-fdb9e50b {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0);
	transition: background-color 0.35s ease;
	pointer-events: none;
}

.ds-gallery-item-fdb9e50b:hover img,
.ds-gallery-item-fdb9e50b:focus img {
	transform: scale(1.02);
}

.ds-gallery-item-fdb9e50b:hover .ds-gallery-overlay-fdb9e50b,
.ds-gallery-item-fdb9e50b:focus .ds-gallery-overlay-fdb9e50b {
	background-color: rgba(0, 0, 0, 0.2);
}

/* Lightbox styles */
.ds-lightbox-fdb9e50b {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ds-lightbox-fdb9e50b.active {
	opacity: 1;
	visibility: visible;
}

.ds-lightbox-content-fdb9e50b {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
}

.ds-lightbox-content-fdb9e50b img {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
	display: block;
}

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

@media (max-width: 767px) {
	.ds-lightbox-close-fdb9e50b {
		top: 10px;
		right: 10px;
		background: rgba(0,0,0,0.5);
		border-radius: 50%;
	}
}