.bloc-parent {
  display: flex;
  width: 100%;
  min-height: 400px;
}

.bloc {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Bloc image */
.bloc-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Remplit le bloc sans déformation */
  display: block;
}

/* Bloc contenu centré */
.bloc-2 {
  background: #1f2937;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contenu-centre {
  max-width: 500px;
}

/* Responsive */
@media (max-width: 768px) {
  .bloc-parent {
    flex-direction: column;
  }

  .bloc {
    min-height: 250px;
  }
}