.footer-item {
  position: relative; /* Needed for the label positioning */
}

.new-label {
  position: absolute;
  top: 2px;  /* Adjust depending on your layout */
  right: -8px; /* Adjust depending on your layout */
  background-color: red;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 4px;
  border-radius: 3px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

@media (min-width: 768px) {
  .footer-item span {
    display: none; /* hides all spans including your NEW label */
  }
}

@media (min-width: 768px) {
  .footer-item .new-label {
    display: inline-block; /* make it visible */
    top: 10px;   /* adjust for vertical footer */
    right: 10px; /* adjust for vertical footer */
    font-size: 12px;
    padding: 3px 5px;
  }
}
