.bwd-mq-section {
  background: #0F172A;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.bwd-mq-section::before,
.bwd-mq-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.bwd-mq-section::before {
  left: 0;
  background: linear-gradient(90deg, #0F172A, transparent);
}
.bwd-mq-section::after {
  right: 0;
  background: linear-gradient(270deg, #0F172A, transparent);
}

.bwd-mq-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.bwd-mq-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
  white-space: nowrap;
}
.bwd-mq-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(33,212,253,0.1);
  border: 1px solid rgba(33,212,253,0.2);
  display: flex; align-items: center;
  justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.bwd-mq-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.bwd-mq-label strong {
  color: #fff; font-weight: 600;
}