.sosc-brand-carousel {
  max-width: 1140px;
  height: 50px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.sosc-track {
  display: flex;
  align-items: center;
  height: 100%;
  will-change: transform;
  animation: sosc-scroll 30s linear infinite;
}

/* Pause au survol (optionnel) */
.sosc-brand-carousel:hover .sosc-track { animation-play-state: paused; }

.sosc-item {
  flex: 0 0 auto;
  padding: 0 24px; /* espacement horizontal entre logos */
  height: 50px;
  display: flex;
  align-items: center;
}

.sosc-item img {
  max-height: 40px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) opacity(.6);
}

@keyframes sosc-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* car la liste est dupliquée */
}

/* Fallback quand aucun logo */
.sosc-empty { height: 60px; display:flex; align-items:center; justify-content:center; opacity:.7; font-size:.9rem; }

/*****************************
 *** HOME PAGE ***************
 ******************************/
 .home-carroussel-brand{
      display: flex;
    flex-direction: column;
    align-items: center;
        position: relative;
            padding-block-start: 10px;
        padding-block-end: 5rem;
 }
 .home-title h2{
  font-size: 22px !important;
    font-weight: 500 !important;
    line-height: 22px !important;
    color:#8e8e8e !important;
        margin-block-end: 2rem;
 }
 .home-img-brand{
  position: absolute;
  transform: translate(450px, -20px);
 }