/* ─── SPONSOR LOGO ART (themed SVG by tier) ─── */
function SponsorArt({ tier, accent, style = {}, size = 80 }) {
// Each tier gets a unique iconographic motif tied to the race
const w = size * 1.6;
const h = size;
const common = { width: w, height: h, viewBox: `0 0 ${w} ${h}`, fill: "none", "aria-hidden": true, style };
if (tier === "gold") {
// Mountain peaks (Las Bardas)
return (
);
}
if (tier === "silver") {
// Compass / bearing
return (
);
}
if (tier === "bronze") {
// Pine forest line
return (
);
}
if (tier === "media") {
// River — fluid horizontal lines
return (
);
}
return null;
}
window.SponsorArt = SponsorArt;