/* Announcement Marquee - Single Source of Truth */

#am-marquee-wrapper,
.am-marquee-wrapper{
  width: 100%;
  box-sizing: border-box;
  overflow-x: clip;
}

.am-marquee-track{
  width: 100%;
  overflow: hidden;
}

#am-marquee-wrapper .am-marquee-item{
  width: 100%;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  white-space: normal;

  /* 薄邊界：背景只比字大一點點 */
  padding: 2px 1rem;
  line-height: 1.1;

  /* 解除外掛常見的鎖死高度 */
  min-height: 0;
  height: auto;
}

#am-marquee-wrapper .am-marquee-text{
  font-size: inherit;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px){
  #am-marquee-wrapper .am-marquee-item{
    padding: 2px 0.75rem;
    line-height: 1.1;
  }
}
