/* Award strip container */
.award-strip {
  width: 100%;
  overflow: hidden;
  background: var(--white);
}

/* Track that moves left */
.award-track {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  width: max-content;
  animation: scroll-left 18s linear infinite;
}

.award-strip:hover .award-track {
  animation-play-state: paused;
}

.award-box {
  flex: 0 0 auto;
}

.award-box img{
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.award-strip::after {
  content: "";
  display: block;
  width: 100%;
  height: 40px; /* adjust height */
  background: #e5e5e5; /* gray strip */
  margin-top: var(--space-md);
}