.vc-blockTitle{
  margin:0;
  font-size:20px;
  font-weight:950;
  letter-spacing:-.02em;
}
.vc-blockSub{ margin-top:6px; color:var(--muted); font-size:13px; }

/* Featured row */
.vc-featuredRow{
  margin-top:12px;
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding-bottom:6px;
  scroll-snap-type:x mandatory;
}
.vc-featuredItem{
  flex:0 0 auto;
  width:128px;
  scroll-snap-align:start;
  text-decoration:none;
}
.vc-featuredAvatar{
  width:96px; height:96px;
  border-radius:999px;
  border:3px solid rgba(120,255,0,.85);
  box-shadow:0 0 0 2px rgba(0,0,0,.35);
  overflow:hidden;
  margin:0 auto;
  background:rgba(255,255,255,0.03);
}
.vc-featuredAvatar img{ width:100%; height:100%; object-fit:cover; }
.vc-featuredName{
  margin-top:10px;
  font-weight:900;
  font-size:13px;
  text-align:center;
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
.vc-featuredMeta{
  margin-top:6px;
  display:flex; gap:6px;
  align-items:center; justify-content:center;
  color:var(--muted);
  font-size:12px;
}

/* Countries grid */
.vc-countriesGrid{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:12px;
}
@media (max-width:1200px){ .vc-countriesGrid{ grid-template-columns:repeat(4, 1fr);} }
@media (max-width:900px){ .vc-countriesGrid{ grid-template-columns:repeat(2, 1fr);} }
@media (max-width:520px){ .vc-countriesGrid{ grid-template-columns:1fr; } }

.vc-countryPill{
  border:1px solid var(--line);
  background:rgba(255,255,255,0.02);
  border-radius:999px;
  padding:10px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.vc-countryPill__left{ display:flex; align-items:center; gap:10px; min-width:0; }
.vc-countryPill__name{
  font-weight:900;
  font-size:13px;
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
.vc-countryPill__count{ color:var(--muted); font-variant-numeric:tabular-nums; }
