/* ── ANNOUNCEMENTS SCROLL ── */
.announcements-scroll {
  height: 400px;
  overflow: hidden;
  position: relative;
  color: black;
}

.announcements-inner {
  animation: scroll-up 28s linear infinite;
}

.announcements-scroll:hover .announcements-inner {
  animation-play-state: paused;
}
.ann-item {
  background: white;
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 0.85rem 1rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.25s;
  cursor: pointer;
  color: black;
}

.ann-item:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
}

.ann-date {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  color: black;
  font-weight: bold;
}

.ann-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  color: black;
  line-height: 1.4;
}

.ann-new {
  background: #ef4444;
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
  vertical-align: middle;
}
