/*==================================================
GALERIE DE LIVREES
==================================================*/

.livery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.livery-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:var(--radius);

    overflow:hidden;

    cursor:pointer;

    position:relative;

    transition:var(--transition);

}

.livery-card:hover{

    transform:translateY(-6px);

    border-color:var(--primary);

    box-shadow:var(--shadow);

}

.livery-card img{

    width:100%;

    aspect-ratio:16/10;

    object-fit:cover;

    display:block;

}

.livery-card .livery-name{

    padding:16px 20px;

    font-family:var(--title-font);

    font-weight:600;

    letter-spacing:.5px;

}

.livery-card .zoom-hint{

    position:absolute;

    top:14px;

    right:14px;

    width:38px;

    height:38px;

    border-radius:50%;

    background:rgba(0,0,0,.55);

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    transition:.25s;

}

.livery-card:hover .zoom-hint{

    opacity:1;

}

/*==================================================
LIGHTBOX
==================================================*/

#lightbox{

    position:fixed;

    inset:0;

    background:rgba(5,5,5,.92);

    display:none;

    align-items:center;

    justify-content:center;

    padding:40px;

    z-index:99999;

}

#lightbox.active{

    display:flex;

}

#lightbox img{

    max-width:90vw;

    max-height:85vh;

    border-radius:12px;

    box-shadow:var(--shadow);

}

#lightbox-close{

    position:absolute;

    top:30px;

    right:40px;

    font-size:36px;

    line-height:1;

    color:white;

    cursor:pointer;

    transition:.2s;

}

#lightbox-close:hover{

    color:var(--primary-light);

}

@media(max-width:700px){

#lightbox-close{

    top:16px;

    right:20px;

}

}