/* ─── 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 ( {[0.15, 0.35, 0.55, 0.75].map((x, i) => { const cx = w * x, baseY = h * 0.85; const trH = h * (0.5 + (i % 2) * 0.15); return ( ); })} ); } if (tier === "media") { // River — fluid horizontal lines return ( {[0.3, 0.45, 0.6, 0.75].map((y, i) => ( ))} ); } return null; } window.SponsorArt = SponsorArt;