.hs-ticker {
  width: 100%;
  background-color: #1a1a1a;
  box-sizing: border-box;
  font-family: inherit;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.hs-ticker__overflow {
  overflow: hidden;
  width: 100%;
}

.hs-ticker__track {
  display: flex;
  width: max-content;
  animation: hs-ticker-scroll linear infinite;
  animation-duration: var(--hs-ticker-duration, 30s);
}

.hs-ticker__inner {
  display: flex;
  align-items: center;
  padding: 10px 0;
  white-space: nowrap;
}

.hs-ticker__item {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 4px;
}

.hs-ticker__sep {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #999;
  font-size: 12px;
  flex-shrink: 0;
}

.hs-ticker__link {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: inherit;
}

.hs-ticker__link:hover {
  opacity: 0.8;
}

@keyframes hs-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hs-ticker__carousel {
  position: relative;
  height: 44px;
  width: 100%;
  overflow: hidden;
}

.hs-ticker__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  padding: 0 24px;
  text-align: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hs-ticker__slide.is-active {
  transform: translateX(0);
  pointer-events: auto;
}

.hs-ticker__slide.is-exiting {
  transform: translateX(-100%);
}

@media (max-width: 768px) {
  .hs-ticker {
    display: flex !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hs-ticker__item { font-size: 12px; }
  .hs-ticker__sep { padding: 0 8px; font-size: 10px; }
  .hs-ticker__carousel { height: 40px; }
  .hs-ticker__slide { font-size: 12px; padding: 0 16px; }
}

  .hs-ticker {
    display: flex !important;
  }
}