/* ========== SLIDER SECTION ========== */

#slider-section {
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: 1.0625rem 0 1rem;
  position: relative;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll-track 20s linear infinite;
  gap: 6.25rem;
}

.slider-section-contents {
  display: flex;
  gap: 6.25rem;
  white-space: nowrap;
}

.slider-section-contents-words {
  color: var(--color-text-inverse);
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: var(--miscellaneous-font);
  line-height: normal;
}

/* Scroll Animation Keyframes */
@keyframes scroll-track {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Tablet (≤1024px) */
@media screen and (max-width: 1024px) {
  .slider-track {
    gap: 4rem;
  }

  .slider-section-contents {
    gap: 4rem;
  }

  .slider-section-contents-words {
    font-size: 0.8rem;
  }
}

/* Mobile (≤480px) */
@media screen and (max-width: 480px) {
  .slider-track {
    gap: 2rem;
  }

  .slider-section-contents {
    gap: 2rem;
  }

  .slider-section-contents-words {
    font-size: 1rem;
  }
}
