/* Award Carousel Styles */
.award-carousel-section {
  background-color: #101419;
  padding: 60px 0;
  overflow-x: hidden;
  position: relative;
}

.award-carousel-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.award-carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.award-carousel-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 100px;
  gap: 60px;
}

.award-item {
  flex: 0 0 auto;
  padding: 0 30px;
  opacity: 1;

  cursor: pointer;
  position: relative;

  backface-visibility: hidden;
}

.award-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: linear-gradient(
    to bottom,
    rgba(159, 194, 204, 0),
    rgba(159, 194, 204, 0.3),
    rgba(159, 194, 204, 0)
  );
}

.award-item:last-child::after,
.award-item:nth-child(11)::after {
  display: none;
}

.award-item img {
  height: 80px;
  max-width: 180px;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Responsive styles */
@media (max-width: 768px) {
  .award-carousel-section {
    padding: 40px 0;
  }

  .award-item {
    padding: 0 15px;
  }

  .award-item img {
    height: 60px;
    max-width: 120px;
  }

  .award-carousel-track::before,
  .award-carousel-track::after {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .award-carousel-section {
    padding: 30px 0;
  }

  .award-item {
    padding: 0 20px;
  }

  .award-item img {
    height: 50px;
    max-width: 100px;
  }
}
