/* Swiper Gallery Block Styles */
.swiper-gallery-block {
    margin: 20px 0;
}

.gallery-swiper {
    width: 100%;
    height: 500px; /* Adjust as needed */
    margin: 0 auto;
}

.gallery-swiper .swiper-slide {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
}
.swiper-gallery-block{
	position:relative;
}
.swiper-button-next-custgal,
.swiper-button-prev-custgal {
    color: white;
    border: none;
    border-radius: 0;
    cursor: pointer;
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
background-color:#fff;
position:absolute;
top:calc(50% - 40px);
left:-0;
z-index:1;
box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);

}
.previewBox {
    color: white;
    border: none;
    border-radius: 0;
    cursor: pointer;
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
background-color:#fff;
position:absolute;
bottom:20px;
right:20px;
z-index:1;
box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);

}

.swiper-button-next-custgal{
	left:unset;
	right:-0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
}

/* Gallery Modal Styles (same as before) */
.gallery-modal {
    /* Your existing modal styles */
}
@media(max-width:767px){
	.gallery-swiper {
    width: 100%;
    height: 350px; /* Adjust as needed */
    margin: 0 auto;
}
}