.img-container {
  width: 100%;
  height: 200px; /* Ajuste cette valeur selon ton design */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garde le bon ratio et couvre toute la zone */
}
