.logo-carousel-wrapper {
  width: 320px; /* vừa đủ cho 2 logo + khoảng cách */
  overflow: hidden;
  justify-self: center;
  position: relative;
}

.logo-carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.logo-carousel-item {
  flex: 0 0 140px;
  height: 120px;
  margin-right: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.logo-carousel-item:last-child {
  margin-right: 0;
}

.logo-carousel-item img {
  max-width: 80%;
  height: auto;
  display: block;
}
