.pw-ticker {
  width: 100%;
  overflow: hidden;
  background: #1F2222;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pw-ticker__inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
}

.pw-ticker__inner::before,
.pw-ticker__inner::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.pw-ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 38px;
  animation: cmwTicker 28s linear infinite;
}

.pw-ticker__track span {
  position: relative;
  flex: 0 0 auto;
  color: #f9fafb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pw-ticker__track span::after {
  content: "/";
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  color: #b08a48;
  opacity: 0.85;
}

.pw-ticker:hover .pw-ticker__track {
  animation-play-state: paused;
}

@keyframes cmwTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .pw-ticker__inner {
    padding: 14px 0;
  }

  .pw-ticker__track {
    gap: 30px;
    animation-duration: 22s;
  }

  .pw-ticker__track span {
    font-size: 11px;
    letter-spacing: 0.13em;
  }

  .pw-ticker__track span::after {
    right: -20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pw-ticker__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
  }
}
