/* ===== Réalisations ===== */

.realisations-intro{
  background:#fff;
}

.realisations-highlight{
  background:var(--off-white);
  padding:96px 6%;
}

.rh-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
}

.rh-card{
  background:#fff;
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}

.rh-card-large{
  grid-row:span 2;
}

.rh-media{
  background:#eef2f5;
}

.rh-media picture,
.rh-media img{
  display:block;
  width:100%;
  height:100%;
}

.rh-media img{
  object-fit:cover;
}

.rh-body{
  padding:24px 22px;
  text-align:left;
}

.rh-kicker{
  display:inline-block;
  margin-bottom:8px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
}

.rh-body h3{
  font-family:var(--font-cormorant);
  font-size:1.8rem;
  line-height:1.08;
  color:var(--blue);
  margin-bottom:10px;
}

.rh-body p{
  color:var(--gray-600);
  line-height:1.8;
  font-size:.94rem;
}

.realisations-gallery .gallery-filter{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  padding:0 20px 28px;
}

.gf-btn{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.72);
  padding:10px 16px;
  border-radius:999px;
  font-family:var(--font-jost);
  font-size:11px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  cursor:pointer;
  transition:opacity .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
}

.gf-btn.active,
.gf-btn:hover{
  background:rgba(255,255,255,.12);
  color:#fff;
  border-color:rgba(255,255,255,.22);
}

.realisations-metrics{
  background:#fff;
}

.realisations-cases{
  background:var(--blue-pale);
  padding:96px 6%;
}

.rc-head{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:34px;
  align-items:end;
  max-width:1240px;
  margin:0 auto 34px;
}

.rc-intro{
  color:var(--gray-600);
  font-size:1rem;
  line-height:1.9;
  text-align:left;
}

.rc-grid{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.rc-item{
  background:#fff;
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
  padding:24px 20px;
  text-align:left;
}

.rc-item h3{
  font-family:var(--font-cormorant);
  font-size:1.45rem;
  line-height:1.08;
  color:var(--blue);
  margin-bottom:10px;
}

.rc-item p{
  color:var(--gray-600);
  font-size:.92rem;
  line-height:1.8;
}

@media (max-width:1200px){
  .rc-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:900px){
  .rh-grid,
  .rc-head{
    grid-template-columns:1fr;
  }

  .rh-card-large{
    grid-row:auto;
  }
}

@media (max-width:640px){
  .rc-grid{
    grid-template-columns:1fr;
  }

  .rh-body{
    padding:20px 18px;
  }

  .rh-body h3{
    font-size:1.5rem;
  }
}