.sub-banner{
    height: 500px;
    background: url(../img/menu-banner.jpg) no-repeat 50% 50% / cover;
}

.sub-banner-set{
    height: 500px;
    background: url(../img/menu-set-banner.jpg) no-repeat 50% 50% / cover;
}

.sub-banner .common-frame,
.sub-banner-set .common-frame{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--point-color);
    height: 100%;
}

.sub-banner .common-frame h1,
.sub-banner-set .common-frame h1{
    font-size: 2.5rem;
    text-transform: uppercase;
}

.title{
    margin-top: var(--space-3x-large);
    margin-bottom: var(--space-large);
}

.title .common-frame{
    display: flex;
    flex-direction: column;
    gap: var(--space-small);
    align-items: center;
}

.title .common-frame .clock{
    color: rgb(255, 0, 0);
}

.option{
    margin-bottom: var(--space-normal);
}

.option .common-frame{
    display: flex;
    justify-content: space-between;
}

.total-view{
    display: flex;
    gap: var(--space-small);
    align-items: center;
}

#view-filter{
    border: 1px solid #000;
    padding: 0.3rem 0.5rem;
}

.list-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--space-x-large) var(--space-normal);
}

.list-wrap{
    margin-bottom: var(--space-3x-large);
}

.list-grid li figure{
    margin-bottom: var(--space-normal);
    aspect-ratio: 1/1;
    line-height: 0;
    overflow: hidden;
}

.list-grid li:hover figure img{
    transform: scale(1.1);
}

.list-grid li figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease 0s;
}

.list-option{
    margin-bottom: var(--space-small);
}

.list-grid li h4{
    margin-bottom: var(--space-small);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    /* color: var(--pm-color-800); */
}

.list-grid li p{
    margin-bottom: var(--space-large);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    border-top: 1px solid #999;
    padding-top: .5rem;
    color: #414141;
    
}

.price{
    font-size: var(--fs-h2);
}



@media (max-width:1440px){
    .sub-banner{
        height: 400px;
        /* background: url(../img/bg-list.jpg) no-repeat 50% 50% / cover; */
        /* 이미지 교체하기 */
    }

    .list-grid{
        grid-template-columns: repeat(3,1fr);
    }
}



@media (max-width:768px){
    .sub-banner{
        height: 400px;
    }
    
    .list-grid{
        grid-template-columns: repeat(2,1fr);
    }
}