select {
    outline: 0;
}

.back {
    cursor: pointer;
}

.artist-section {
    display: flex;
    width: 1720px;
    padding: 150px 0 0 0;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
}

.artist-section > div {
    /* outline: 1px solid #aaa; */
}

.artist-section .artist-inner {
    position: relative;
    align-self: stretch;
}

.artist-section .artist-inner .artist {
    width: 450px;
    transition: all 1000ms ease;
}

.artist-section .artist-inner .artist .back {
    display: inline-flex;
    padding-left: 20px;
    margin-bottom: 40px;
    align-items: center;
    position: relative;
}

.artist-section .artist-inner .artist .back:before {
    width: 7px;
    height: 7px;
    position: absolute;
    top: 50%;
    left: 4px;
    border-top: 1px solid #222;
    border-left: 1px solid #222;
    transform: translate(0, -50%) rotateZ(-45deg);
    content: '';
}

.artist-section .artist-inner .artist .back:after {
    width: 11px;
    position: absolute;
    top: 50%;
    left: 3.5px;
    border-top: 1px solid #222;
    transform: translate(0, -50%);
    content: '';
}

.artist-section .artist-inner .artist .name {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2em;
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.artist-section .artist-inner .artist .description {
    max-height: 56vh;
    padding-bottom: 30px;
    white-space: pre-wrap;
    word-break: break-all;
    text-align: justify;
    overflow-y: auto;
    scrollbar-width: none;
}

.artist-section .artist-content {
    width: 1200px;
    position: relative;
}

.artist-section .artist-content .artist-banner {
    width: 100%;
}

.artist-section .artist-content .artwork-filter {
    display: flex;
    padding-top: 30px;
    justify-content: space-between;
    align-items: center;
}

.artist-section .artist-content .artwork-filter .artwork-order {
    padding: 3px 6px;
    font-size: 16px;
}

.artist-section .artist-content .artwork-list {
    display: flex;
    padding-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 15px;
    row-gap: 30px;
}

.artist-section .artist-content .artwork-list .artwork-item {
    width: calc(1200px / 4 - 12px);
    position: relative;
    box-sizing: border-box;
}

.artist-section .artist-content .artwork-list .artwork-item .artwork-image {
    width: 100%;
    padding-top: 100%;
    margin-bottom: 18px;
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    box-shadow: 0 0 10px -9px #222;
    transition: all 300ms ease;
}

.artist-section .artist-content .artwork-list .artwork-item:hover .artwork-image {
    background-color: #f7f7f7;
    box-shadow: 0 0 10px -5px #222;
}

.artist-section .artist-content .artwork-list .artwork-item .artwork-title,
.artist-section .artist-content .artwork-list .artwork-item .artist-name,
.artist-section .artist-content .artwork-list .artwork-item .artwork-size,
.artist-section .artist-content .artwork-list .artwork-item .artwork-price {
    padding-left: 20px;
}

.artist-section .artist-content .artwork-list .artwork-item .artwork-title {
    font-weight: bold;
    font-variant: small-caps;
}

.artist-section .artist-content .artwork-list .artwork-item .artwork-name {
    line-height: 1;
}

.artist-section .artist-content .artwork-list .artwork-item .artwork-size {
    line-height: 1;
}

.artist-section .artist-content .artwork-list .artwork-item .artwork-price {
    font-weight: bold;
}

.page-holder {
    padding-bottom: 50px;
}

@media screen and (max-width: 1400px){
    .artist-section {
        width: 100vw;
        padding-top: 70px;
        flex-wrap: wrap;
    }

    .artist-section .artist-inner .artist {
        width: 100vw;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .artist-section .artist-inner .artist .description {
        max-height: initial;
        overflow: visible;
    }

    .artist-section .artist-content {
        width: 100vw;
    }

    .artist-section .artist-content .artwork-filter {
        padding-left: 20px;
        padding-right: 20px;
    }

    .artist-section .artist-content .artwork-filter .artwork-order {
        font-size: 14px;
    }

    .artist-section .artist-content .artwork-list {
        width: 100vw;
        min-width: 360px;
        column-gap: 10px;
        row-gap: 20px;
    }

    .artist-section .artist-content .artwork-list .artwork-item {
        width: calc(50vw - 10px);
    }
}