/* Shared compact AeroWander news ticker. */
.updates-ticker{
  position:relative;
  z-index:5;
  min-height:30px;
  overflow:hidden;
  display:flex;
  align-items:center;
  background:#8edbff;
  color:#286487;
  border-top:1px solid #d8dde3;
  border-bottom:1px solid #d8dde3;
}
.updates-ticker-track{
  display:flex;
  width:max-content;
  min-width:max-content;
  animation:awTicker 54s linear infinite;
  will-change:transform;
}
.updates-ticker:hover .updates-ticker-track{animation-play-state:paused}
.updates-ticker-set{
  min-height:30px;
  display:flex;
  align-items:center;
  white-space:nowrap;
}
.ticker-item{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:4px 36px 4px 0;
  color:#286487;
  font-family:Montserrat,Arial,sans-serif;
  font-size:10.5px;
  font-weight:500;
  line-height:1;
  letter-spacing:0;
}
.ticker-pill{
  min-height:18px;
  display:inline-grid;
  place-items:center;
  padding:1px 9px;
  border-radius:999px;
  background:#fff;
  color:#747b82;
  font-size:9px;
  font-weight:700;
  line-height:1;
  text-transform:none;
  letter-spacing:0;
}
@keyframes awTicker{to{transform:translateX(-50%)}}
@media(max-width:820px){
  .updates-ticker,.updates-ticker-set{min-height:28px}
  .ticker-item{padding-top:3px;padding-bottom:3px}
}
@media(prefers-reduced-motion:reduce){.updates-ticker-track{animation:none}}
