.brand-strip {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(184, 138, 94, .16);
  border-bottom: 1px solid rgba(184, 138, 94, .16);
  background: linear-gradient(90deg, #fffaf4 0%, #f3e4cf 50%, #fffaf4 100%);
  color: var(--text-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.brand-strip::before,
.brand-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 96px;
  pointer-events: none;
}

.brand-strip::before {
  left: 0;
  background: linear-gradient(90deg, #fffaf4, transparent);
}

.brand-strip::after {
  right: 0;
  background: linear-gradient(-90deg, #fffaf4, transparent);
}

.brand-strip-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  will-change: transform;
  animation: mwBrandStripLoop 46s linear infinite;
}

.brand-strip-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 54px;
  padding-right: 54px;
}

.bs-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--text-2);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .9px;
  text-transform: uppercase;
  opacity: .92;
}

.bs-item svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(184, 138, 94, .10);
  color: #b38456;
}

.bs-item strong {
  color: var(--text);
  font-weight: 700;
}

.brand-strip:hover .brand-strip-track {
  animation-play-state: paused;
}

@keyframes mwBrandStripLoop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 768px) {
  .brand-strip {
    padding: 12px 0;
  }

  .brand-strip::before,
  .brand-strip::after {
    width: 54px;
  }

  .brand-strip-track {
    animation-duration: 38s;
  }

  .brand-strip-group {
    gap: 34px;
    padding-right: 34px;
  }

  .bs-item {
    gap: 8px;
    font-size: 12px;
    letter-spacing: .75px;
  }
}

@media (max-width: 420px) {
  .brand-strip-group {
    gap: 28px;
    padding-right: 28px;
  }

  .bs-item svg {
    width: 17px;
    height: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-strip-track {
    animation: none;
    transform: none;
  }
}
