/* Flag SVG rendering with emoji fallback */
.flag-wrap{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.flag-img{
  width:20px;
  height:14px;
  border-radius:2px;
  border-width: thin;
  flex:0 0 auto;
  display:inline-block;
}

.flag-hero .flag-img{
  width:56px;
  height:40px;
  border-radius:4px;
  border-width: thin;
}

.flag-wrap.is-loaded .flag-emoji{
  display:none;
}

.flag-wrap.is-error .flag-img{
  display:none;
}

