.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  background: #000080;
  color: white;

  z-index: 9999;

  /* no ticker behavior */
  white-space: normal;
  overflow: hidden;

  /* make room for two lines */
  height: auto;
  padding: 10px 16px;
  box-sizing: border-box;
  text-align: center;
}

.announcement-track {
  /* stop scrolling */
  animation: none;
  padding: 0;

  /* stack the spans as lines */
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.announcement-track span {
  display: block;
  padding: 0;            /* remove the ticker spacing */
  line-height: 1.25;
}
