/*
 * Breaking News TV – Badge Styles
 */

/* ── Base Badge ─────────────────────────────────────────────────────────── */
.bntv-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.6;
  vertical-align: middle;
  font-family: system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  user-select: none;
}

/* ── Live dot ────────────────────────────────────────────────────────────── */
.bntv-badge__dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: bntv-badge-blink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes bntv-badge-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .2; }
}

/* ── Pulse border animation for live badge ───────────────────────────────── */
.bntv-badge--pulse {
  box-shadow: 0 0 0 0 rgba(230,57,70,.6);
  animation: bntv-badge-pulse 2s ease-out infinite;
}
@keyframes bntv-badge-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(230,57,70,.6); }
  70%  { box-shadow: 0 0 0 7px rgba(230,57,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
}

/* ── RTL font spacing fix ──────────────────────────────────────────────── */
.bntv-rtl .bntv-badge {
  letter-spacing: 0;
  font-size: 0.75rem;
}

/* ── Content badge (above article body) ─────────────────────────────────── */
.bntv-content-badge {
  margin-bottom: 14px;
}

/* ── Admin column badge ──────────────────────────────────────────────────── */
.bntv-admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}
.bntv-badge-breaking  { background: #e63946; }
.bntv-badge-live      { background: #e63946; }
.bntv-badge-important { background: #f4a261; }
.bntv-badge-exclusive { background: #7209b7; }
.bntv-badge-followup  { background: #457b9d; }
.bntv-badge-update    { background: #2a9d8f; }
