// Footer Kit Digital — banda obligatoria de financiación NextGen / PRTR / Kit Digital.
// Acepta theme="dark" o theme="light" para integrar con cada variante.
// La banda central de financiación SIEMPRE va sobre fondo claro para respetar
// los colores oficiales (UE azul/oro, España rojo/amarillo, etc.)
(() => {
const C = window.FE_CONTENT;
// ─── SVG: bandera UE ───
function FlagEU({ width = 56 }) {
const stars = [];
// 12 estrellas en círculo
for (let i = 0; i < 12; i++) {
const a = (i / 12) * Math.PI * 2 - Math.PI / 2;
const cx = 22 + Math.cos(a) * 9;
const cy = 15 + Math.sin(a) * 9;
// pequeña estrella 5 puntas
const points = [];
for (let p = 0; p < 10; p++) {
const r = p % 2 === 0 ? 1.6 : 0.65;
const pa = (p / 10) * Math.PI * 2 - Math.PI / 2;
points.push(`${cx + Math.cos(pa) * r},${cy + Math.sin(pa) * r}`);
}
stars.push(