#hero-blog {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 95vh;

  background: url('./../../img/blog/1.jpg') center / cover no-repeat;

  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ✅ Overlay blanc luxe */
#hero-blog::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65); /* ajuste ici */
  z-index: 1;
}

/* ✅ Contenu au-dessus */
#hero-blog > * {
  position: relative;
  z-index: 2;
}
