/* v1.0.2: smaller fonts, improved flag visibility, same blue */
.bs-eu-banner{
  background:#cfe8ff;
  border-radius:10px;
  margin:12px auto 16px;
  padding:12px 16px;
}
.bs-eu-row{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;        /* vertical center of the group */
  justify-content:center;    /* horizontal center of the group */
  gap:12px;
}
/* Flag: keep compact height; high-visibility stars inside the SVG */
.bs-eu-flag{
  display:block;
  width:clamp(28px,4.5vw,42px);
  height:auto;
  align-self:center;
}
.bs-eu-texts{
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:left;
  line-height:1.2;
  max-width:900px;
}
/* Reduced fonts (clean & balanced) */
.bs-eu-title{
  margin:0;
  font-weight:800;
  color:#1b1f23;
  font-size:clamp(1.05rem,3.0vw,1.7rem);
  white-space:nowrap;        /* single line */
}
.bs-eu-subtitle{
  margin:4px 0 0;
  color:#1b1f23;
  opacity:.92;
  font-size:clamp(0.9rem,2.4vw,1.05rem);
  white-space:nowrap;        /* single line */
}
@media (max-width:576px){
  .bs-eu-banner{ padding:10px 12px; border-radius:8px; }
  .bs-eu-row{ gap:10px; }
  .bs-eu-flag{ width:34px; }          /* compact but visible stars */
  .bs-eu-texts{ max-width:86vw; }
}
