/* productGallery list.css - bootstrap_nomal_gallery 기반 + 원본이미지/제품설명 스타일 */

/* 컬럼 너비 */
.wiztheme_list_gallery_wrap .box_wrap.col_1 { width: 100%; height: auto; }
.wiztheme_list_gallery_wrap .box_wrap.col_2 { width: 50%; height: auto; }
.wiztheme_list_gallery_wrap .box_wrap.col_3 { width: 33.3333333333%; height: auto; }
.wiztheme_list_gallery_wrap .box_wrap.col_4 { width: 25%; height: auto; }
.wiztheme_list_gallery_wrap .box_wrap.col_5 { width: 20%; height: auto; }
.wiztheme_list_gallery_wrap .box_wrap.col_6 { width: 16.6666666667%; height: auto; }

/* 갤러리 래퍼 */
.wiztheme_list_gallery_wrap {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 30px;
}

.wiztheme_list_gallery_wrap .box_wrap {
    width: 33.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

/* 카드 박스 */
.wiztheme_list_gallery_wrap .box_wrap .box {
    position: relative;
    opacity: 0;
    padding: 0;
    background-color: #fff;
    margin: 0;
    transition: 0.3s;
    border-radius: 0;
    border: 1px #d9d9d9 solid;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.0);
}

.wiztheme_list_gallery_wrap .box_wrap .box:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

/* 이미지 링크 영역 */
.wiztheme_list_gallery_wrap .box_wrap .box > a {
    display: block;
    width: 100%;
    overflow: hidden;
}

/* 원본 이미지 */
.wiztheme_list_gallery_wrap .box_wrap .box img.list_img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.3s;
}

.wiztheme_list_gallery_wrap .box_wrap .box:hover img.list_img {
    transform: scale(1.03);
}

/* 이미지 없을 때 */
.wiztheme_list_gallery_wrap .box_wrap .box .no_image {
    display: block;
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    text-align: center;
    line-height: 200px;
    color: #999;
    font-size: 13px;
}

/* 캡션 영역 */
.wiztheme_list_gallery_wrap .box_wrap .box .caption {
    padding: 15px 20px 20px;
    text-align: left;
}

/* 제품명 */
.wiztheme_list_gallery_wrap .box_wrap .box .caption .gallProductTitle {
    margin: 0 0 8px;
}
.wiztheme_list_gallery_wrap .box_wrap .box .caption .gallProductTitle a {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    display: block;
    line-height: 1.4em;
}
.wiztheme_list_gallery_wrap .box_wrap .box .caption .gallProductTitle a:hover {
    color: #3a8afd;
}

/* 제품 설명 */
.wiztheme_list_gallery_wrap .box_wrap .box .caption .gallProductDetail {
    margin: 0;
}
.wiztheme_list_gallery_wrap .box_wrap .box .caption .gallProductDetail a {
    font-size: 12px;
    color: #747474;
    text-decoration: none;
    display: block;
    line-height: 1.6em;
}

/* 빈 목록 */
.pg_empty_list {
    width: 100%;
    padding: 60px 0;
    text-align: center;
    color: #999;
}

/* 반응형 */
@media (max-width: 992px) {
    .wiztheme_list_gallery_wrap .box_wrap.col_3,
    .wiztheme_list_gallery_wrap .box_wrap.col_4,
    .wiztheme_list_gallery_wrap .box_wrap.col_5,
    .wiztheme_list_gallery_wrap .box_wrap.col_6 {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .wiztheme_list_gallery_wrap .box_wrap.col_3,
    .wiztheme_list_gallery_wrap .box_wrap.col_4,
    .wiztheme_list_gallery_wrap .box_wrap.col_5,
    .wiztheme_list_gallery_wrap .box_wrap.col_6 {
        width: 100%;
    }
}
