@charset "utf-8";

.artwork_sec {}

.artwork_list {}

.artwork_list li {}

.artwork_list li+li {
    margin-top: var(--sub_pd);
}

.list_top {
    position: relative;
}

.artwork_list li h4 {
    padding-bottom: 1.5rem;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 0;
    /* color: var(--color-main); */
    font-size: 30px;
    font-weight: 800;
}

.list_top a {
    background-color: var(--color-main);
    color: #fff;
    padding: .6rem 2rem;
    border-radius: 2rem;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    transition: .4s;
}

.list_top a:hover {
    box-shadow: 4px 4px 12px rgb(45 81 163 / 20%);
    transform: translateY(-5%);
}

.artwork_list .list_partition {
    display: flex;
    gap: 6rem;
    padding: 3rem 0;
    position: relative;
    border-top: 2px solid var(--color-main);
    border-bottom: 1px solid #888;
}

.artwork_list .list_partition:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #888;
    top: 0;
    left: 30%
}

.artwork_list .art_img {
    width: 30%;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artwork_list .art_img img {
    width: 80%
}

.artwork_list .art_info {
    width: 70%;
}

.art_info dl {
    display: flex;
}

.art_info dl+dl {
    margin-top: 1rem
}

.art_info dt {
    width: 20%;
    /* color: var(--color-main); */
    font-weight: 600;
}

.art_info dd {
    width: 80%;
    font-size: 18px;
}

.art_info dd span {
    color: var(--color-main);
    font-weight: 600;
    display: inline-block;
    width: 80px;
}

.art_info .inventory {
    list-style: circle;
}

.inventory li {
    list-style-position: outside;
    margin-left: 1.2rem;
}

.inventory li+li {
    margin-top: 5px
}

.inventory li::marker {
    color: var(--color-main);
}

/* PC */
@media only screen and (min-width:1025px) and (max-width: 1500px) {}

/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1024px)*/
@media all and (max-width:1024px) {
    .list_top a {
        position: relative;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .artwork_list .list_partition {
        gap: 2rem
    }

    .artwork_list .art_img {}

    .artwork_list .art_img img {
        width: 100%
    }

    .artwork_list .list_partition:after {
        left: 31%;
    }

    .inventory li {
        margin-left: 1rem;
    }

    .inventory li::marker {}
}

/* 모바일 가로, 모바일 세로 (해상도 480px ~ 767px)*/
@media all and (max-width:767px) {
    .artwork_list li h4 {
        font-size: 26px
    }

    .list_top a {
        font-size: 16px
    }

    .artwork_list .list_partition {
        flex-wrap: wrap
    }

    .artwork_list .art_img {
        width: 100%;
    }

    .artwork_list .art_img img {
        width: 80%
    }

    .artwork_list .art_info {
        width: 100%
    }

    .artwork_list .list_partition:after {
        display: none
    }

    .art_info dl {
        flex-wrap: wrap
    }

    .art_info dt {
        margin-bottom: 5px;
        width: auto;
    }

    .art_info dd {
        font-size: 16px;
        width: 100%
    }
}