/* Footer visitor counter. Namespaced — nothing else is affected. */
.aj-visitors {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: .84rem;
    opacity: .75;
}

.aj-visit-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.aj-visit-label { opacity: .8; }

.aj-visit-num {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: .3px;
}

.aj-visit-sep { opacity: .35; }

/* Small "live" pulse next to today's count. */
.aj-visit-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, .6);
    animation: aj-visit-pulse 2.4s ease-out infinite;
}

@keyframes aj-visit-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, .6); }
    70%  { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .aj-visit-dot { animation: none; }
}

@media (max-width: 700px) {
    .aj-visitors { justify-content: center; font-size: .8rem; }
}
