.those-section {
  width: 100%;
  min-height: 50vh;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 10vh, 120px) 0;
}

.those-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vh, 80px);
  width: 100%;
}

.those-title {
  font-family: 'Headline', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  color: white;
  text-align: center;
  white-space: nowrap;
}

.those-title-red {
  color: #F40000;
}

/* Carousel Styles */
.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, black, transparent);
}

.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, black, transparent);
}

.carousel-track {
  display: flex;
  gap: clamp(40px, 5vw, 80px);
  animation: scroll 30s linear infinite;
  width: max-content;
}

.carousel-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(60px, 10vw, 100px);
}

.carousel-slide img {
  max-height: 100%;
  max-width: clamp(100px, 15vw, 180px);
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.carousel-slide img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-track {
    animation-duration: 20s;
  }
  
  .carousel-wrapper::before,
  .carousel-wrapper::after {
    width: 50px;
  }
}
