/* S-Law — lightbox images d'articles */
.slaw-lightbox { cursor: zoom-in; display: inline-block; }
.slaw-lb {
    position: fixed;
    inset: 0;
    background: rgba(18, 19, 19, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 40px;
    opacity: 0;
    transition: opacity .25s ease;
    cursor: zoom-out;
}
.slaw-lb.is-open { opacity: 1; }
.slaw-lb img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    transform: scale(.96);
    transition: transform .25s ease;
}
.slaw-lb.is-open img { transform: scale(1); }
.slaw-lb__close {
    position: absolute;
    top: 22px;
    right: 28px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    opacity: .8;
    transition: color .2s ease, opacity .2s ease;
}
.slaw-lb__close:hover { opacity: 1; color: #C70707; }
