.em2-slide-item{
    position: relative;
    & > a{
        position: absolute;
        width: 100%;
        height: 100%;
    }
    & .thumb{
        position: relative;
        overflow: hidden;
        box-shadow: 0 30px 30px -25px rgba(10, 8, 7, .25);
        &.no-image{
            height: 420px;
        }
        & img{
            object-fit: cover;
            width: 100%;
        }
        & .number{
            position: absolute;
            top: 16px;
            left: 16px;
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 14px;
            color: var(--cr);
            background: rgba(10, 8, 7, .45);
            backdrop-filter: blur(8px);
            padding: 5px 11px;
            z-index: 2;
            &::before{
                content: '— ';
            }
        }
    }
    & .meta{
        padding: 22px 4px 0;
        display: flex;
        justify-content: space-between;
        gap: 16px;
        &.no-subtitle{
            align-items: center;
        }
        & .titles{
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        & .em2-title{
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--noir);
            letter-spacing: -.01em;
            line-height: 1.15;
            margin: 0px;
        }
        & .em2-label{
            font-size: 11px;
            color: var(--gris);
            margin: 0px;
            font-weight: 300;
        }
        & .year{
            font-size: 10px;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--gris2);
        }
    }
    &:hover .thumb img{
        transform: scale(1.1);
    }
}
.em2-sliders .footer-inner{
    margin-top: 30px;
    & .em2-slider-nav{
        display: flex;
        justify-content: flex-end;
        gap: 5px;
        & button{
            width: 46px;
            height: 46px;
            border: 1px solid rgba(10, 8, 7, .2);
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: none;
            transition: all .3s;
            color: var(--noir);
            &:hover{
                background: var(--noir);
                color: var(--cr);
                border-color: var(--noir);
            }
        }
    }
}