/**
 * ITS Rugby Live — Pip "Direct" injecté sur les cartes de match.
 * Charte It's : angles droits, rouge live, pastille clignotante.
 * Pas de !important, pas d'inline.
 */

.ilm-card-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.5rem;
  padding: 0.1rem 0.4rem;
  background: #8ED968;
  color: #1C3D34;
  font-family: "Noto Sans", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.ilm-card-live-dot {
  width: 0.45rem;
  height: 0.45rem;
  background: #1C3D34;
  display: inline-block;
  animation: ilm-card-pulse 1.1s ease-in-out infinite;
}

@keyframes ilm-card-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.25; transform: scale(0.6); }
}

@media (prefers-reduced-motion: reduce) {
  .ilm-card-live-dot { animation: none; }
}
