.f-country-flags {
  --flag-size: 2rem;
  background-image: var(--background-image);
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  height: var(--flag-size);
  position: relative;
  width: var(--flag-size);
}

.f-country-flags::after {
  border-radius: inherit;
  box-shadow: inset 0 0 0.2rem rgba(var(--color-foreground), 0.3);
  content: '';
  inset: 0;
  position: absolute;
}
