
/* Galerie Premium 3.4 */
.realisations{padding:90px 0;background:#0d0d10}
.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:24px;
margin-top:40px;
}
.gallery-card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
border-radius:20px;
overflow:hidden;
transition:.35s;
backdrop-filter:blur(12px);
}
.gallery-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 40px rgba(37,99,235,.22);
}
.gallery-image{
height:220px;
background:linear-gradient(135deg,#1d4ed8,#111827,#d62828);
display:flex;
align-items:center;
justify-content:center;
font-size:1.1rem;
font-weight:700;
color:#fff;
}
.gallery-body{padding:22px}
.gallery-body h3{margin-bottom:10px}
.gallery-body p{color:#cfcfcf}
