/* EXHIBITIONS */
.ce_exhibition_list .slick-container{
    margin-left: -1rem;
    margin-right: -1rem;
}
.ce_exhibition_list .image_outer_container{
    height: 35rem;
}
.ce_exhibition_list .slick-container .image_container img{
    object-fit: cover;
}
.ce_exhibition_list .image_wrapper,
.ce_exhibition_list .image_container,
.ce_exhibition_list .image_container a,
.ce_exhibition_list .image_container img{
    height: 100%;
}
.ce_exhibition_list .image_container a{
    position: relative;
}
.ce_exhibition_list .slide-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.slide-bg img{
    width: 100%;
    height: 100%;
    filter: blur(20px);
}
.ce_exhibition_list .image_container a{
    display: block;
    background-size: 0 0;
}
.ce_exhibition_list .image_container.noCrop a > img{
    width: unset;
    margin: 0 auto;
}
.ce_exhibition_list .image_container a > img{
    width: 100%;
}
.ce_exhibition_list{
    position: relative;
}
.ce_exhibition_list .exhibition{
    margin-right: 1rem;
    margin-left: 1rem;
    position: relative;
}
.ce_exhibition_list .exhibition .info_container{
    position: absolute;
    bottom: 2rem;
    left: 1.5rem;
    right: 1.5rem;
}
.ce_exhibition_list .exhibition .future{
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--white);
    color: var(--black);  
    padding: 0.5rem 1rem;
    font-weight: 500;
    z-index: 10;
}
.ce_exhibition_list .info_container {
    max-width: max-content;
}
.ce_exhibition_list .exhibition_title{
    text-transform: uppercase;
    max-width: 30ch;
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.ce_exhibition_list .info_container .exhibition_museum,
.ce_exhibition_list .info_container .exhibition_time{
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 500;
}
.ce_exhibition_list .img_overlay{
    opacity: 1;
    background-color: unset;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.75) 100%);
    background-repeat: no-repeat;
    transition: var(--transition);
    background-position: 0 50px;
}
.ce_exhibition_list .img_overlay i{
    opacity: 0;
    transition: var(--transition);
}
.ce_exhibition_list a:hover .img_overlay{
    background-position: 0 0;
}
.ce_exhibition_list a:hover .img_overlay i,
.ce_exhibition_list a:focus-visible .img_overlay i{
    opacity: 1;
}
.ce_exhibition_list .more_exhibitions{
    position: relative;
    margin-right: 1rem;
    margin-left: 1rem;
}
.ce_exhibition_list .more_exhibitions > a{
    background-color: var(--primary-clr);
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    overflow: hidden;
    transition: var(--transition);
    aspect-ratio: 1 / 0.48078;
    height: 35rem;
    font-size: 10rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    background-size: 0 0;
}
.ce_exhibition_list .more_exhibitions > a:hover,
.ce_exhibition_list .more_exhibitions > a:focus-visible{
    filter: brightness(0.85);
}

@supports not (aspect-ratio: 1 / 0.48078) {
    .ce_exhibition_list .more_exhibitions a::before {
      float: left;
      padding-top: 207.85%;
      content: "";
    }
  
    .ce_exhibition_list .more_exhibitions a::after {
      display: block;
      content: "";
      clear: both;
    }
}
.ce_exhibition_list .more_exhibitions .exhibition_title{
    position: absolute;
    bottom: 2rem;
    left: 1.5rem;
    right: 1.5rem;
}
.exhibition_title a{
    --link-clr: var(--white);
    font-weight: 700;
    background-image: linear-gradient(180deg, transparent 92.5%, var(--link-clr) 0)
}
.more_exhibitions > a i{
    color: var(--white);
    transition: var(--transition);
}
.more_exhibitions > a:hover i,
.more_exhibitions > a:focus-visible i {
    transform: scale(1.25);
}
.show-on-desktop{
    display: none;
}
#main .mod_article:not(.fullwidth) > .align_buttons > *{
    margin: 0;  
}
#main .mod_article:not(.fullwidth) > .align_buttons + .ce_exhibition_list{
    margin-bottom: 4rem;
}

/* ARCHIVE */
.exhibition_archive{
    display: grid;
    gap: 4rem;
}

.ce_exhibition_list .slick-container.exhibition_archive,
.ce_exhibition_list .slick-container.exhibition_archive .exhibition{
    margin: 0;
}
.placeholder .img_overlay{
    background-image: none;
}
.ce_exhibition_list .placeholder .exhibition_title{
    max-width: unset;
}


/* TABLET */
@media only screen and (min-width: 768px) {
    .ce_exhibition_list .image_outer_container{
        height: 40rem;
    }
    .ce_exhibition_list .more_exhibitions > a{
        height: 40rem;
    }
}

/* DESKTOP */
@media only screen and (min-width: 1024px) {
    /* EXHIBITIONS */
    .ce_exhibition_list .slick-list{
        padding-right: calc(33.33% + 0.5rem);
    } 
    .ce_exhibition_list .slick-container{
        margin-left: -2rem;
        margin-right: 0;
    }
    .ce_exhibition_list .exhibition{
        margin-left: 2rem;
        margin-right: 2rem;
    }
    .ce_exhibition_list .more_exhibitions{
        margin-right: 0;
        margin-left: 0;
        position: absolute;
    }
    .ce_exhibition_list .exhibition_title{
        font-size: 3rem;
    }
    #main .mod_article:not(.fullwidth) > .align_buttons > *{
        padding-right: 22rem; 
    }
    .ce_exhibition_list .show-on-desktop .exhibition_title{
        font-size: 3rem;
    }
    .ce_exhibition_list .exhibition .info_container{
        bottom: 4rem;
        left: 2rem;
        right: 2rem;
    } 
    .ce_exhibition_list .exhibition .future{
        top: 2rem;
        left: 2rem;
    }
    .ce_exhibition_list .info_container .exhibition_museum{
        font-size: 2rem;
        margin-right: 1rem;
    }
    .ce_exhibition_list .info_container .info_wrapper{
        display: flex;
        flex-wrap: wrap;
    }
    .ce_exhibition_list .info_container .exhibition_time{
        font-size: 2rem;
    }
    .ce_exhibition_list .info_container .exhibition_time:not(.no_museum)::before{
        content: '|';
        display: inline-block;
        vertical-align: text-bottom;
        padding-right: 0.5rem;
    }
    .show-on-desktop{
        display: block;
        position: absolute;
        top: 0;
        right: calc(-1 * 100vw * 0.33);
        width: calc((100vw - 6rem) * 0.33);
        height: 100%;
    }
    .show-on-desktop > a{
        height: 100%;
    }
    #main .mod_article:not(.fullwidth) > .align_buttons + .ce_exhibition_list{
        margin-bottom: 6rem;
    }
    .exhibition_archive{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* LARGE DESKTOPS */
@media only screen and (min-width: 1640px) {
    /* EXHIBITIONS */
    .show-on-desktop{
        right: calc(-1 * var(--max-width-content) * 0.33 - 1.5rem);
        width: calc(var(--max-width-content) * 0.33 - 0.5rem); 
    } 
    .ce_exhibition_list .image_outer_container{
        height: 45rem;
    }
    .ce_exhibition_list .more_exhibitions > a{
        height: 45rem;
    }
}