.glowing-new-badge {
  background-color: #266e37;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  animation: glow-pulse 1.5s infinite;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.7);
}

/* Balanced glow animation */
@keyframes glow-pulse {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.9), 0 0 12px rgba(255, 255, 255, 0.6);
  }
  50% {
    opacity: 0.6;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
  }
}


.news-link {
  color: #72717c;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.news-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #06a3da;
  transition: width 0.3s ease;
}

.news-link:hover {
  color: #06a3da;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.blink-link {

  text-decoration: none;
  font-weight: 400;
  animation: blink 1.5s infinite;
  transition: color 0.3s;
}

.blink-link:hover {
  color: #0d6efd;
  text-decoration: underline;
  animation: none; /* stop blinking on hover for better readability */
}