/* EndlessVirtue — social proof micro-details */

/* ── Social proof ── */
.ev-social-proof {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 18px;
  padding: 10px 14px;
  background: rgba(17, 17, 17, 0.72);
  border: 1px solid rgba(232, 230, 225, 0.1);
  border-radius: 4px;
  backdrop-filter: blur(6px);
}
.ev-social-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4a7c59;
  box-shadow: 0 0 0 0 rgba(74, 124, 89, 0.5);
  animation: ev-live-pulse 2.4s ease-out infinite;
}
@keyframes ev-live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 124, 89, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(74, 124, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 124, 89, 0); }
}
.ev-social-count {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: #e8e6e1;
  line-height: 1;
}
.ev-social-count em {
  font-style: normal;
  color: #8b1e1e;
}
.ev-social-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
}
.ev-social-sub {
  display: block;
  margin-top: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: #6b7280;
}
.ev-social-sub strong {
  color: #c4bdb5;
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  .ev-social-live { animation: none; }
}