/* ---------- HOME PAGE CUSTOM OVERRIDES & REALTIME WIDGET STYLING ---------- */
.hero-art .live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-art .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}
