/* Awards Section Styles */
.awards-section {
  padding: 60px 0;
  background-color: var(--primary-white);
}

.awards-container {
  max-width: var(--container-max-width);
  padding: 0 var(--container-padding);
  margin: 0 auto;
  text-align: center;
}

.awards-section .section-title {
  margin-bottom: 48px;
}

.workshop-slider {
  position: relative;
  margin: 48px 0;
  display: flex;
  align-items: center;
  overflow: hidden; /* Hide overflow to create a clean scrolling effect */
}

.workshop-cards {
  display: flex;
  gap: 24px;
  animation: scroll 20s linear infinite; /* Infinite scrolling animation */
}

.workshop-card {
  min-width: 320px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.workshop-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.workshop-card:hover .workshop-image {
  transform: scale(1.05);
}

.workshop-description {
  padding: 16px;
  text-align: center;
  font-size: 16px;
  color: #1e293b;
  line-height: 1.5;
}

/* Keyframes for scrolling animation */
@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%); /* Move left by 50% of the container */
  }
}

/* Pause the animation on hover */
.workshop-slider:hover .workshop-cards {
  animation-play-state: paused; /* Pause the animation on hover */
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 24px;
  border-radius: 12px;
  background: #00B4D8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .workshop-cards {
      gap: 16px;
      margin: 0 40px;
  }

  .workshop-card {
      min-width: 280px;
  }

  .workshop-image {
      height: 200px;
  }

  .workshop-description {
      font-size: 14px;
      padding: 12px;
  }
}