/*//////////////////////////////////////////////////////////////*/
/* ARTISTEN */
/*//////////////////////////////////////////////////////////////*/

#artiesten{
    width: 100%;
    position: relative;
    z-index: 2;
    background-color: var(--white);
    color: var(--greys_100);
}

#artiesten .centered{
    width: 100%;
    text-align: center;
    max-width: 900px;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: auto;
    margin-right: auto;
}

#artiesten .artiesten_slider{
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0 50px;
    margin-bottom: 80px;
}

#artiesten .artiesten_slider .slides{
    display: flex;
    flex-direction: row;
    gap: 20px;
    will-change: transform;
    width: max-content;
}

#artiesten .artiesten_slider .slides .slide{
    flex: 0 0 300px;
    max-width: 300px;
    margin-right: 70px;
}

#artiesten .artiesten_slider .artiest{
    position: relative;
    border-radius: 10px;
    height: 350px;
}

#artiesten .artiesten_slider .slides .slide:nth-child(4n+1){margin-top: 80px;}
#artiesten .artiesten_slider .slides .slide:nth-child(4n+2){margin-top: 175px;}
#artiesten .artiesten_slider .slides .slide:nth-child(4n+3){margin-top: 50px;}
#artiesten .artiesten_slider .slides .slide:nth-child(4n+4){margin-top: 100px;}

#artiesten .artiesten_slider .artiest.artiest_purple{
    background-color: var(--purple);
}

#artiesten .artiesten_slider .artiest.artiest_pink{
    background-color: var(--pink);
}

#artiesten .artiesten_slider .artiest .image{
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 100%;
    transform: translateY(-20px);
    aspect-ratio: 1/1;
}

#artiesten .artiesten_slider .artiest .image img{
    width: 100%;
    object-fit: cover;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;

}


#artiesten .artiesten_slider .artiest .artistInfo{
    position: absolute;
    bottom: 40px;
    left: -20px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    width: calc(100% + 40px);
    transform: rotate(-3deg);
    text-align: center;
    transition: transform 1s ease;
}

#artiesten .artiesten_slider .artiest .artistInfo .artistName{
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--white);
    display: block;
    font-family: 'Raisonne', sans-serif;
}

#artiesten .artiesten_slider .artiest .artistInfo .eventName{
    font-size: 0.9rem;
    color: var(--white);
    margin-top: 5px;
    opacity: 0.5;
    display: block;
}

#artiesten .artiesten_slider .artiest:hover .artistInfo{
    transform: rotate(3deg);
}

#artiesten .artiesten_slider .artiest .sunburst{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    border-radius: 10px;
}

#artiesten .artiesten_slider .artiest .sunburst img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    z-index: 0;
    transform: scale(2);
}

#artiesten .buttons{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
}


@media (max-width: 768px) {
     #artiesten.site_card{
        padding-left: 0px;
        padding-right: 0px;
    }

    #artiesten .centered{
        padding-left: 0px;
        padding-right: 0px;
        margin-bottom: -60px !important;
    }

    #artiesten h2{
        margin: 0; padding: 0;
    }
    
    #artiesten .artiesten_slider {
        padding: 0 20px;
        margin-bottom: 50px;
    }
    
    #artiesten .artiesten_slider .slides .slide {
        flex: 0 0 250px;
        max-width: 250px;
        margin-right: 50px;
    }
    
    #artiesten .artiesten_slider .artiest {
        height: 300px;
    }
    
    #artiesten .buttons {
        flex-direction: column;
        gap: 20px;
        padding: 0 40px;
    }

    #artiesten .buttons{
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
     #artiesten .artiesten_slider .slides .slide {
        flex: 0 0 220px;
        max-width: 220px;
    }
    
    #artiesten .artiesten_slider .artiest {
        height: 270px;
    }
}