.artist {
    position: relative;
    padding: 180px 140px;
    background: var(--white);
    z-index: 5;
    gap: 120px;
    box-sizing: border-box;
}

.artist .tabs .swiper-slide {
    width: auto;
    margin-right: 40px;
}
.artist .tabs .swiper-slide:last-child {
    margin-right: 0;
}
.artist .tabs button {
    height: 56px;
    line-height: 65px;
    font-size: 24px;
    font-weight: 500;
    border-radius: 50px;
    transition: padding color .3s;
    box-sizing: border-box;
}
.artist .tabs button:hover {
    color: var(--point);
}
.artist .tabs button.active {
    border-radius: 100px;
    background: var(--black);
    color: var(--point);
    padding: 0 30px;
}

.artist .list {
    position: relative;
    gap: 20px;
}
.artist .list > div {
    position: relative;
    width: calc(20% - 16px);
    height: 0;
    padding-bottom: 24.5%;
    overflow: hidden;
    box-sizing: border-box;
    transition: all .3s;
}
.artist .list > div:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
    transition: all .3s;
    z-index: 1;
}
.artist .list > div img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}
.artist .list > div:hover {
    opacity: 1;
}
.artist .list > div:hover img {
    transform: translate(-50%,-50%) scale(1.1);
}
.artist .list > div p {
    position: absolute;
    bottom: 20px;
    left: 10px;
    z-index: 2;
    font-size: 20px;
    font-family: 'SUIT';
    font-weight: 500;
    color: var(--white);
    word-break: break-word;
    transition: all .3s;
}
.artist .list > div .icon {
    opacity: 0;
    position: absolute;
    bottom: 0;
    right: 10px;
    gap: 10px;
    z-index: -1;
    transition: all .3s;
}
.artist .list > div .icon a {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 100%;
}
.artist .list > div .icon a.insta {
    background-image: url("../images/ic_instagram.svg");
}
.artist .list > div .icon a.youtube {
    background-image: url("../images/ic_youtube.svg");
}
.artist .list > div .icon a.tiktok {
    background-image: url("../images/ic_tiktok.svg");
}
.artist .list > div .icon a.soop {
    background-image: url("../images/ic_soop.svg");
}
.artist .list > div .icon a.ic_pandtv {
    background-image: url("../images/ic_ic_pandtv.svg");
}
.artist .list > div .icon a.link {
    background-image: url("../images/ic_link.svg");
}
.artist .list > div:hover p {
    font-size: 32px;
    bottom: 50px;
}
.artist .list > div:hover .icon {
    opacity: 1;
    z-index: 2;
    bottom: 20px;
}
.artist .list > div:hover:before {
    opacity: .2;
}




@media screen and (max-width: 1600px) {
    .artist {
        padding: 180px 100px;
    }
}
@media screen and (max-width: 1280px) {
    .artist {
        padding: 180px 60px;
        gap: 80px;
    }
    .artist .list > div {
        width: calc(25% - 15px);
        padding-bottom: 30.5%;
    }
}
@media screen and (max-width: 1024px) {
    .artist {
        padding: 130px 20px;
        gap: 50px;
    }

    .artist .tabs .swiper-slide {
        margin-right: 25px;
    }
    .artist .tabs button {
        font-size: 20px;
        height: 45px;
        line-height: 53px;
    }
    .artist .tabs button.active {
        padding: 0 20px;
    }

    .artist .list > div {
        width: calc(33.333% - 14px);
        padding-bottom: 42%;
    }
    .artist .list > div:hover p {
        font-size: 24px;
    }
}
@media screen and (max-width: 768px) {
    .artist .list {
        gap: 10px;
    }
    .artist .list > div {
        width: calc(50% - 5px);
        padding-bottom: 65%;
    }
}
@media screen and (max-width: 480px) {
    
}
@media screen and (max-width: 380px) {
    .artist .list > div {
        width: 100%;
        padding-bottom: 130%;
    }
}