// Generative SVG portrait + image abstractions for cards. // Uses brand accent + paper tones; intentionally editorial, not photographic. const Portrait = ({ accent = "#b4321f" }) => ( {/* Accent bar */} {/* Silhouette — abstract shoulders + head */} {/* collar/shirt suggestion */} {/* Crop marks */} ); const PostArt1 = ({ accent }) => ( {/* Ascending bars: DRG efficiency over time */} {[40, 70, 60, 100, 130, 110, 150, 180, 200, 240].map((h, i) => ( ))} {/* baseline */} {/* axis labels */} FIG.01 — DRG INDEX 2012–2024 QUELLE: BFS ); const PostArt2 = ({ accent }) => ( {/* Network nodes — care coordination */} {[[80,80],[320,80],[80,240],[320,240]].map(([x,y],i)=>( ))} CN FIG.02 — INTEGRATED CARE NETWORK ); const PostArt3 = ({ accent }) => ( {/* Big "%" symbol */} % FIG.03 — TARIFE 2026 ); const PostArt4 = ({ accent }) => ( {/* Concentric rings — population health */} {[140, 110, 80, 50, 25].map((r, i) => ( ))} FIG.04 — VERSORGUNGSDICHTE ); window.Portrait = Portrait; window.PostArt1 = PostArt1; window.PostArt2 = PostArt2; window.PostArt3 = PostArt3; window.PostArt4 = PostArt4;