.realisations-page{
    margin:auto
}
.realisations-grid{
    display:grid;
    gap:24px;
    grid-template-columns:1fr
}
.realisation-card{
    background:#fff;
    transition:.25s;
    overflow:hidden;
    height:100%
}
.realisation-link{
    text-decoration:none;
    color:inherit;
    display:flex;
    flex-direction:column;
    height:100%
}
.realisation-thumb{
    position:relative;
    background:#eee;
    overflow:hidden;
    height:180px
}
.realisation-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block
}
.realisation-no-thumb{
    padding:18px;
    color:#000;
    opacity:.65
}
.realisation-title{
    color:#000;
    margin:0;
    padding:14px 16px 8px;
    font-size:18px!important;
    font-weight:600!important
}
.realisation-excerpt{
    color:#000;
    margin:0;
    padding:0 16px 16px;
    font-size:14px;
    line-height:1.6;
    opacity:.7
}
.realisations-pagination{
    margin-top:40px;
    text-align:center
}
.realisation-single{
    background:#fff;
    padding:40px;
    box-shadow:0 15px 45px rgba(0,0,0,.07)
}
.realisation-h1{
    color:#000;
    margin:0 0 18px;
    font-size:28px;
    font-weight:600
}
.realisation-content{
    color:#000;
    line-height:1.8;
    font-size:16px;
    margin-bottom:26px
}
.realisation-photos-grid{
    display:grid;
    gap:18px;
    grid-template-columns:1fr
}
@media (min-width:700px){
    .realisation-photos-grid,.realisations-grid{
        grid-template-columns:repeat(2,minmax(0,1fr))
    }
    .realisation-thumb{
        height:200px
    }
}
@media (min-width:1024px){
    .realisation-photos-grid,.realisations-grid{
        grid-template-columns:repeat(3,minmax(0,1fr))
    }
    .realisation-thumb{
        height:220px
    }
}
.realisation-photo-card{
    margin:0;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    overflow:hidden
}
.realisation-photo-card img{
    width:100%;
    height:auto;
    display:block
}
.realisation-photo-caption{
    color:#000;
    padding:12px 14px;
    font-size:14px;
    opacity:.8
}
@media (max-width:600px){
    .realisation-single{
        padding:28px
    }
    .realisation-h1{
        font-size:24px
    }
}
#realisation-lightbox{
    position:fixed;
    inset:0;
    z-index:11000;
    background:rgba(0,0,0,.85);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px
}
#realisation-lightbox[hidden]{
    display:none!important
}
.realisation-lightbox-img{
    max-width:95%;
    max-height:90vh;
    box-shadow:0 25px 60px rgba(0,0,0,.5)
}
.realisation-lightbox-close{
    position:absolute;
    top:25px;
    right:35px;
    color:#fff;
    font-size:42px;
    cursor:pointer;
    font-weight:300
}
