/* BASIC css start */
/* 이 페이지 container만 다시 설정 */
#container.collection-page{
    width:100%;
    padding:0 24px;   /* 이미지 사이즈조절 */
    box-sizing:border-box;
}

/* 리스트 */
.collection-page .xans-product-listnormal{
    margin-top:100px;
}

/* 이미지 사이 30px */
.collection-page .xans-product-listnormal ul{
    display:flex;
    gap:30px;
}

/* 2개 정렬 + 최대 크기 */
.collection-page .xans-product-listnormal li{
    width:calc((100% - 30px)/2);
    margin-bottom:70px;
}

/* 이미지 */
.collection-page .image img{
    width:100%;
    display:block;
}

/* 텍스트 */
.collection-page .name{
    margin-top:12px;
    font-size:14px;
    letter-spacing:0.06em;
    text-transform:uppercase;
}
/* BASIC css end */

