/* ==========================================================
   ZEWED Studio - Gallery
========================================================== */

/* ===============================
   ADMIN
=============================== */

.zewed-gallery-builder{
	margin-top:20px;
}

.zewed-gallery-preview{
	display:grid;
	grid-template-columns:repeat(auto-fill,minmax(120px,1fr));
	gap:16px;
	margin-top:20px;
}

.zewed-gallery-item{
	position:relative;
	overflow:hidden;
	border-radius:14px;
	background:#fff;
	border:1px solid #e8e8e8;
	box-shadow:0 6px 18px rgba(0,0,0,.06);
}

.zewed-gallery-item img{
	display:block;
	width:100%;
	height:120px;
	object-fit:cover;
}

.zewed-gallery-remove{
	position:absolute;
	top:8px;
	right:8px;
	width:28px;
	height:28px;
	border:none;
	border-radius:50%;
	background:#d72638;
	color:#fff;
	cursor:pointer;
	font-size:18px;
	line-height:28px;
	padding:0;
	transition:.25s;
}

.zewed-gallery-remove:hover{
	background:#111;
}

/* ===============================
   FRONTEND
=============================== */

.zewed-gallery{

	padding:70px 0;

}

.zewed-gallery-grid{

	display:flex;
	flex-wrap:nowrap;

	gap:24px;

	width:100%;

	overflow-x:auto;
	overflow-y:hidden;

	padding:10px 0 25px;

	scroll-behavior:smooth;
	scroll-snap-type:x mandatory;

	-webkit-overflow-scrolling:touch;

	-ms-overflow-style:none;
	scrollbar-width:none;

}

.zewed-gallery-grid::-webkit-scrollbar{

	display:none;

}

.zewed-gallery-card{

	flex:0 0 360px;
	flex-shrink:0;

	scroll-snap-align:start;

	border-radius:20px;

	overflow:hidden;

	background:#fff;

	box-shadow:0 15px 35px rgba(0,0,0,.08);

	transition:
		transform .35s ease,
		box-shadow .35s ease;

}

.zewed-gallery-card:hover{

	transform:translateY(-8px);

	box-shadow:0 22px 55px rgba(0,0,0,.15);

}

.zewed-gallery-image{

	display:block;

	width:100%;
	height:460px;

	object-fit:cover;

	transition:transform .5s ease;

	user-select:none;
	-webkit-user-drag:none;

}

.zewed-gallery-card:hover .zewed-gallery-image{

	transform:scale(1.05);

}

/* ===============================
   TABLET
=============================== */

@media (max-width:991px){

	.zewed-gallery-card{

		flex:0 0 300px;

	}

	.zewed-gallery-image{

		height:380px;

	}

}

/* ===============================
   MOBILE
=============================== */

@media (max-width:767px){

	.zewed-gallery{

		padding:45px 0;

	}

	.zewed-gallery-grid{

		gap:16px;

	}

	.zewed-gallery-card{

		flex:0 0 88%;

	}

	.zewed-gallery-image{

		height:340px;

	}

	.zewed-gallery-preview{

		grid-template-columns:repeat(2,1fr);

	}

}