.gallery-card-spesific-mobile .lists-gallery {
	--column: 3;
	--gap: 32px;
	display: grid;
	grid-template-columns: repeat(var(--column), minmax(0, 1fr));
	gap: var(--gap);
}

.gallery-card-spesific-mobile .lists-gallery .item-gallery {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	border-radius: var(--rounded-2xl);
	background-color: var(--white);
}

.gallery-card-spesific-mobile .lists-gallery img {
	position: absolute;
	top: 48px;
	left: 0;
	width: 100%;
	height: calc(100% - 48px);
	object-fit: contain;
}

.gallery-card-spesific-mobile .spesific-mobile img {
	max-height: 430px;
	object-fit: contain;
}

@media all and (min-width: 901px) {
	.gallery-card-spesific-mobile .spesific-mobile {
		display: none;
	}
}

@media all and (max-width: 900px) {
	.gallery-card-spesific-mobile .lists-gallery {
		display: none;
	}
}
