/* Shared "NEW" indicator badge — blinks red/yellow.
   Respects prefers-reduced-motion. */

.badge-new {
  display: inline-block;
  padding: 1px 4px;
  margin-left: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  background: #d32f2f;
  border-radius: 3px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  vertical-align: super;
  position: relative;
  top: -0.15em;
  animation: badge-new-blink 1s steps(2, end) infinite;
}

@keyframes badge-new-blink {
  0%, 100% { background: #d32f2f; color: #fff; }
  50%      { background: #f9a825; color: #1a1a1a; }
}

@media (prefers-reduced-motion: reduce) {
  .badge-new { animation: none; }
}
