:root {
  --sidebar-width: 31rem;
  --layout-gap: 4rem;
  --wp--style--block-gap: clamp(3.5rem, 2.737rem + 1.404vw, 4rem);
}

@media (min-width: 1300px) {
  :root {
    --sidebar-width: 34rem;
    --layout-gap: 6rem;
  }
}
.ticker-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.ticker-container:before, .ticker-container:after {
  content: "";
  display: block;
  width: 6%;
  height: 100%;
  background: #ccc;
  position: absolute;
  top: 0;
  z-index: 5;
}
.ticker-container:before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  left: -2%;
}
.ticker-container:after {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  right: -2%;
}
.ticker-container .ticker-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 10%;
  will-change: transform;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}
.ticker-container .ticker-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.ticker-container .ticker-slide img {
  display: block;
  width: auto;
  max-height: 50px;
  transition: transform 0.35s ease-in-out;
}
.ticker-container .ticker-slide a {
  display: block;
}
.ticker-container .ticker-slide a:hover img {
  transform: scale(1.1);
}