: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;
  }
}
.logo-carousel h2 {
  font-size: var(--wp--preset--font-size--font-23);
  margin-bottom: 2ch;
  color: #74ACF3;
}
.logo-carousel.no-bg .ticker-container:before, .logo-carousel.no-bg .ticker-container:after {
  opacity: 0;
}
.logo-carousel.assets {
  margin-top: var(--wp--preset--spacing--m);
  margin-bottom: var(--wp--preset--spacing--m);
}
.logo-carousel.assets .ticker-container .ticker-track {
  gap: 7.5%;
}
.logo-carousel.assets .ticker-container .ticker-slide img {
  width: 40px;
}

.ticker-container {
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(174, 182, 198, 0.2);
  border-bottom: 1px solid rgba(174, 182, 198, 0.2);
  overflow: hidden;
  position: relative;
}
.ticker-container:before, .ticker-container:after {
  content: "";
  display: block;
  width: 7%;
  height: 100%;
  background: #ccc;
  position: absolute;
  top: 0;
  z-index: 5;
}
.ticker-container:before {
  background: linear-gradient(90deg, rgba(2, 6, 26, 0.65) 0%, rgba(2, 6, 26, 0) 100%);
  left: -1%;
}
.ticker-container:after {
  background: linear-gradient(270deg, rgba(2, 6, 26, 0.65) 0%, rgba(2, 6, 26, 0) 100%);
  right: -1%;
}
.ticker-container .ticker-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 5%;
  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.45s ease-in-out;
}
.ticker-container .ticker-slide a {
  display: block;
}
.ticker-container .ticker-slide a:hover img {
  transform: scale(1.1);
}
