/* On neutralise les styles de galerie natifs */
.logo-carousel-wrapper .wp-block-gallery {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    margin: 0 !important;
}

.logo-carousel-wrapper .wp-block-gallery .wp-block-image {
    flex: 0 0 250px;
    margin: 0 !important;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;      /* ← centrage vertical */
    justify-content: center;  /* ← centrage horizontal */
    height: 120px;            /* ← hauteur fixe identique pour tous */
}

.logo-carousel-wrapper .wp-block-gallery .wp-block-image img {
    object-fit: contain !important;   /* ✅ respecte les proportions, pas de coupure */
    filter: none;              /* ← couleurs naturelles */
    opacity: 1;
    margin: 0 auto;            /* ← centrage horizontal */
}


/* Wrapper */
.logo-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 1rem 3rem;
}

.logo-carousel__track {
    overflow: hidden;
}

/* Boutons */
.logo-carousel__btn {
    position: absolute;
    color:#444;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ddd;
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
    line-height: 0;
    cursor: pointer;
    z-index: 10;
}

.logo-carousel__btn--prev { left: 4px; }
.logo-carousel__btn--next { right: 4px; }

@media (max-width: 768px) {
    .logo-carousel-wrapper .wp-block-gallery .wp-block-image {
        flex: 0 0 140px;
    }
}