/* jj_pic_slide_lat 스킨 전용 스타일 */

.gallery-swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-slide {
    overflow: hidden;
}

.swiper-slide a {
    display: block;
    position: relative;
    text-decoration: none;
}

.swiper-slide img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.swiper-slide:hover img {
    transform: scale(1.05);
}

.pic_slide_txt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    padding: 40px 16px 16px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.swiper-slide:hover .pic_slide_txt {
    opacity: 1;
}

.no-data {
    background: #eef2f5;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 14px;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: var(--brand, #2c5f8a);
    opacity: 1;
}

@media (max-width: 768px) {
    .pic_slide_txt {
        font-size: 12px;
        padding: 30px 12px 12px;
    }
}