/* Visitor counter — vertical block (native, no external widget). Framework-
   independent plain CSS so it renders identically inside the Tailwind-based
   Footer.jsx and the standalone (no-Tailwind) journal-indexes.astro page.
   Two color variants via a modifier class: .yv-visitors-block.dark / .light */
.yv-visitors-block { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.yv-visitors-block .yv-vb-label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  margin: 0 0 .6rem;
}
.yv-visitors-block .yv-vb-count {
  font-family: Fraunces, Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 700;
  line-height: 1.1; margin: 0;
}
.yv-visitors-block .yv-vb-count-label { font-size: .75rem; margin: .2rem 0 1rem; }
.yv-visitors-block .yv-vb-countries { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.yv-visitors-block .yv-vb-countries li { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; }
.yv-visitors-block .yv-vb-cflag { flex: none; font-size: 1rem; line-height: 1; }
.yv-visitors-block .yv-vb-cname { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.yv-visitors-block .yv-vb-ccount { flex: none; font-variant-numeric: tabular-nums; }

.yv-visitors-block.dark { color: rgba(255,255,255,.85); }
.yv-visitors-block.dark .yv-vb-label { color: #67d9f5; }
.yv-visitors-block.dark .yv-vb-count { color: #fff; }
.yv-visitors-block.dark .yv-vb-count-label { color: rgba(255,255,255,.5); }
.yv-visitors-block.dark .yv-vb-cname { color: rgba(255,255,255,.72); }
.yv-visitors-block.dark .yv-vb-ccount { color: rgba(255,255,255,.5); }

.yv-visitors-block.light { color: #334155; }
.yv-visitors-block.light .yv-vb-label { color: #08b2e3; }
.yv-visitors-block.light .yv-vb-count { color: #0f172a; }
.yv-visitors-block.light .yv-vb-count-label { color: #64748b; }
.yv-visitors-block.light .yv-vb-cname { color: #334155; }
.yv-visitors-block.light .yv-vb-ccount { color: #64748b; }
