section{
    height: auto;
    padding-top: 200px;
    overflow: hidden;
    margin-bottom: 250px;
    color: #fff;
}

.actor__list{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 55px 25px;
}

.actor__list > li{
    width: 100%;
    height: auto;
    position: relative;
    transition: ease .3s;
}

.actor__list > li:hover{
    margin-top: -10px;
}

.actor__list > li .actor__img__wrap{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.actor__list > li .actor__img__wrap img{
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.actor__list > li h3{
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 15px 0 3px;
}

.actor__list > li p{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #7a7a7a;
}

.actor__area{
    max-width: 580px;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
}

.actor__area > div{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.actor__area > div img{
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.actor__area > .actor__name{
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 30px 0 10px;
}

.actor__area > p{
    font-size: 18px;
    font-weight: 400;
    color: #7a7a7a;
}

.appearance__list{
    margin-top: 200px;
}

.list__contents__wrap{
    width: 100%;
}

.list__contents__wrap .list__contents{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 88px 25px;
}

.list__contents__wrap .list__contents > li{
    width: 100%;
    height: auto;
    position: relative;
    transition: ease .3s;
}

.list__contents__wrap .list__contents > li:hover{
    margin-top: -10px;
}

.list__contents__wrap .list__contents > li a{
    width: 100%;
    height: 100%;
    display: block;
}

.list__contents__wrap .list__contents > li .list__img__wrap{
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.list__contents__wrap .list__contents > li .list__img__wrap img{
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.list__contents__wrap .list__contents > li .list__detail{
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list__contents__wrap .list__contents > li .list__detail .live__actor__name{
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 8px;
}

.list__contents__wrap .list__contents > li .list__detail .live__point{
    min-width: 70px;
    height: 38px;
    background-color: #292929;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list__contents__wrap .list__contents > li .list__detail .live__point > p{
    font-size: 16px;
    font-weight: 700;
    color: var(--point-color);
    margin-left: 4px;
}

.actor__detail{
    display: flex;
    align-items: center;
    gap: 18px;
}

.actor__detail p{
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    display: flex;
    gap: 5px;
    align-items: center;
    white-space: nowrap;
}

.actor__detail p:last-of-type{
    color: var(--point-color);
}

.gallery__list{
    margin-top: 170px;
}

.gallery__list > ul{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery__list > ul li{
    width: 100%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__list > ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__list > ul li > img{
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.live__point > img{
    width: 13px;
    height: auto;
}

.warning__btn{
    width: fit-content;
    padding: 10px 40px;
    background-color: var(--point-color);
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0 auto;
}

article.warning{
    max-width: 825px;
    margin: 150px auto 0;
}

article.warning .title{
    text-align: center;
    margin: 30px 0;
    line-height: inherit;
}

article.warning > p{
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-color);
    text-align: center;
    line-height: 26px;
}

/* .popup__wrap > .popup{
    max-width: 1200px;
} */

@media screen and (max-width: 2000px){
    .list__contents__wrap .list__contents > li .list__img__wrap{
        height: 260px;
    }
}

@media screen and (max-width: 1800px){
    .gallery__list > ul li{
        height: 200px;
    }

    .list__contents__wrap .list__contents > li .list__img__wrap{
        height: 220px;
    }
}

@media screen and (max-width: 1450px){
    .list__contents__wrap .list__contents > li .list__img__wrap{
        height: 180px;
    }
}

@media screen and (max-width: 1400px){
    .gallery__list > ul li{
        height: 180px;
    }
}

@media screen and (max-width: 1300px){
    .actor__detail{
        gap: 7px;
    }

    .actor__detail p{
        font-size: 14px;
    }
}

@media screen and (max-width: 1250px){
    .actor__list{
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1200px){
    .list__contents__wrap .list__contents{
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 25px;
    }

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

@media screen and (max-width: 1024px){
    .actor__list{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 900px){
    .list__contents__wrap .list__contents{
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 25px;
    }

    .list__contents__wrap .list__contents > li .list__img__wrap{
        border-radius: 10px;
    }

    .list__contents__wrap .list__contents > li .list__detail .live__actor__name{
        margin-bottom: 3px;
    }

    .gallery__list > ul{
        grid-template-columns: repeat(2, 1fr);
    }

    article.warning{
        max-width: 475px;
        padding: 0 20px;
        margin: 100px auto 0;
    }
}

@media screen and (max-width: 768px){
    section {
        padding-top: 100px;
    }

    .actor__list{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 20px;
    }

    .actor__list > li .actor__img__wrap{
        border-radius: 10px;
    }

    .appearance__list{
        margin-top: 100px;
    }

    .gallery__list{
        margin-top: 100px;
    }

    .actor__area > .actor__name{
        font-size: 28px;
        margin: 10px 0;
    }

    article.warning{
        margin: 60px auto 0;
    }
}

@media screen and (max-width: 680px){
    .actor__list{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .list__contents__wrap .list__contents{
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .gallery__list > ul{
        grid-template-columns: 1fr;
    }

    .gallery__list > ul li{
        height: 240px;
        gap: 30px;
    }

    .list__contents__wrap .list__contents > li .list__img__wrap{
        height: 240px;
    }
}