.marquee-section {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
  -webkit-user-select: none;
  user-select: none;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: grab;
}

.marquee-wrapper:active {
  cursor: grabbing;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  gap: 0.5em;
  padding-right: 0.25em;
}

@media (min-width: 768px) {
  .marquee-content {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  .marquee-content {
    font-size: 2.5rem;
  }
}

.marquee-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.marquee-link:hover,
.marquee-link:focus {
  color: inherit;
  text-decoration: none;
}

.marquee-link .marquee-wrapper {
  cursor: pointer;
}

.marquee-link .marquee-wrapper:active {
  cursor: pointer;
}

.marquee-separator {
  display: inline-block;
  margin: 0 0.25em;
  opacity: 0.5;
}
