/* promotion-gallery.css */

.pgal-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
	padding:0 20px;
}

/* Main slider */
.pgal-main {
    width: 100%;
    overflow: hidden;
   
}

.pgal-main .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-sizing: border-box;
}

.pgal-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Prev / Next */
.pgal-prev,
.pgal-next {

	width: 27px;
    height: 27px;
    background-color: rgb(221 34 69 / 70%);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s;
	position:absolute;
	padding:0;
	color:#000;
}
.pgal-prev{
	left:0;
}
.pgal-next{
	right:0;
}
.spc-thumb-nav:hover { background: var(--spc-bg-gray); }
.pgal-prev::after,
.pgal-next::after {
    display:none !important;
}

/* Thumbnails */
.pgal-thumbs-wrapper{
	margin-left:-10px;
	margin-right:-10px;
	position:relative;
}
.pgal-thumbs {
   
    width: calc(100% - 20px);
/*     padding:0 20px; */
    height: 101px;
	

}
.pgal-thumbs .swiper-wrapper {
	
}
.pgal-thumbs .swiper-slide {
    height: 101px;
    border: 2px solid #E8E8E8;
/*     border-radius: 4px; */
    overflow: hidden;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.15s, border-color 0.15s;
    box-sizing: border-box;
}

.pgal-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	aspect-ratio:1;
}

.pgal-thumbs .swiper-slide-thumb-active {
    border-color: #D9001B;
    opacity: 1;
}

/* Responsive */
@media (max-width: 480px) {
    .pgal-main {
        aspect-ratio: 1 / 1;
    }
    .pgal-thumbs {
        height: 56px;
    }
    .pgal-thumbs .swiper-slide {
        height: 56px;
    }
}
