.manufacturer-banner {
  display: none; /* caché par défaut */
}

@media (min-width: 768px) {
  .manufacturer-banner {
    display: flex;
    justify-content: center;
  }

  .manufacturer-banner .image-wrapper {
    max-width: 1920px;
    max-height: 150px;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .manufacturer-banner img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
}
