.vcCountries{
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.01);
  padding: 14px;
}

.vcCountriesHead{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  flex-wrap:wrap;
}

.vcCountriesTitle{
  margin:0;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.05;
}

.vcCountriesSub{
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.vcCountriesDot{ margin: 0 6px; opacity:.6; }

.vcCountriesControls{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.vcCountriesGrid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

@media (max-width: 1200px){
  .vcCountriesGrid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px){
  .vcCountriesGrid{ grid-template-columns: repeat(2, 1fr); }
}

.vcCountryPill{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  text-decoration:none;
}

.vcCountryPill:hover{
  border-color: rgba(233,238,252,.18);
  transform: translateY(-1px);
  transition: transform .12s ease, border-color .15s ease;
}

.vcCountryLeft{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.vcCountryFlag{
  width: 26px;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--line);
  flex: none;
}

.vcCountryName{
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.vcCountryCount{
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
