.smb-marquee{
  width:100%;
  overflow:hidden;
  background:var(--smb-bg,#18300f);
  color:var(--smb-text,#fff);
  position:relative;
  box-sizing:border-box;
  isolation:isolate;
}
.smb-track{
  display:flex;
  width:max-content;
  will-change:transform;
  animation:smb-scroll var(--smb-speed,28s) linear infinite;
}
.smb-group{
  display:flex;
  flex:none;
  align-items:center;
}
.smb-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex:none;
  white-space:nowrap;
  padding:14px 44px;
  min-height:58px;
  box-sizing:border-box;
  font-size:18px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:.01em;
}
.smb-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  flex:none;
  font-size:24px;
  line-height:1;
  opacity:.95;
}
.smb-marquee:hover .smb-track{
  animation-play-state:paused;
}
@keyframes smb-scroll{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-50%,0,0)}
}
@media (max-width:767px){
  .smb-item{
    min-height:50px;
    padding:11px 28px;
    gap:9px;
    font-size:15px;
  }
  .smb-icon{width:25px;height:25px;font-size:20px}
}
@media (prefers-reduced-motion:reduce){
  .smb-track{animation:none}
}
