.artist-section {
    padding: 50px 0;
    background: #eae2ef !important;
}
.artist-section .artist-title1 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.artist-section .artist-title2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.artist-section .left-title {
    font-size: 45px;
    font-weight: 700;
    color: #d72262;
    margin-bottom: 10px;
    text-align: left;
}

.artist-section .right-nav {
    display: flex;
    gap: 10px;
}

.artist-section .artist-prev,
.artist-section .artist-next {
    width: 60px;
    height: 60px;
    border: 1px solid #d72262;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    color: #d72262;
}

.artist-desc {
    color: #fff;
    text-align: left;
    margin-bottom: 7px;
}

.artist-name {
    font-family: 'SVN-GilroyBold';
    color: #fff;
    text-align: left;
}

.artist-section .artist-slider {
    overflow: hidden;
}

.artist-section .artist-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.artist-section .artist-img {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
}

.artist-section .artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    text-align: center;
}

.artist-section .artist-name {
    margin: 5px 0 0;
    font-weight: bold;
    font-size: 16px;
}

.artist-section .artist-title1 {
    font-weight: bold;
    font-size: 45px;
    margin-bottom: 3px;
    color: #0D4E91;
    font-family: 'UVN Ben Xuan';
    text-align: left;
}

@media (max-width: 768px) {
    .artist-section .artist-title1 {
        font-size: 25px;
    }

    .right-nav {
        display: none !important;
    }

    .artist-section .left-title {
        font-size: 30px;
        margin-bottom: 0;
    }

    .artist-section {
        padding: 25px 0;
    }
}