.nb-news .nav-link.hot-news-has-new {
  color: #6b3b1f;
  animation: hot-news-new-content-flash 1.2s ease-out 1;
}

.nb-news .nav-link.hot-news-has-new:hover {
  color: #7f8628;
}

@keyframes hot-news-new-content-flash {
  0%,
  100% {
    color: #6b3b1f;
    text-shadow: none;
  }

  38% {
    color: var(--hot-heading, #9aa331);
    text-shadow: 0 0 0.65rem rgba(249, 214, 7, 0.7);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nb-news .nav-link.hot-news-has-new {
    animation: none;
  }
}
