{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/q6TPcm1rVRPb4ymPsf0M/ozVL167hH9qRZk4f9yzV/TableOfContent.js", "ssg:https://framerusercontent.com/modules/6UzrVb5Z8LTNmo1lJKcx/2vfRPdhbDKUond0RR4H5/ImageLightbox.js", "ssg:https://framerusercontent.com/modules/c1nRIFogRABaKPjw26bG/gErNTFxA65wRkSuRwjCE/oLDG1AuFs.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerIntrinsicWidth 600\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicHeight 400\n */export default function Table_of_Content(props){const[headers,setHeaders]=useState([]);const[activeId,setActiveId]=useState(\"\");const[firstHeadingLevel,setFirstHeadingLevel]=useState(null);const ignoreNextScrollEvent=useRef(false);const scrollTimeoutRef=useRef(null);useEffect(()=>{const sectionElement=document.getElementById(props.section_id)||document.body;const headingElements=Array.from(sectionElement.querySelectorAll(\"h1, h2, h3, h4, h5, h6\"));if(headingElements.length>0&&firstHeadingLevel===null){setFirstHeadingLevel(parseInt(headingElements[0].tagName[1],10));}const headers=headingElements.map((element,index)=>{if(!element.id){element.id=`header-${index}`;}return{id:element.id,text:element.innerText,level:parseInt(element.tagName[1],10)};});setHeaders(headers);},[props.section_id,firstHeadingLevel]);useEffect(()=>{const onScroll=()=>{if(ignoreNextScrollEvent.current){ignoreNextScrollEvent.current=false;return;}let currentSectionId=\"\";headers.filter(header=>props[`showH${header.level}`]!==false).forEach(header=>{const element=document.getElementById(header.id);const scrollPosition=element.getBoundingClientRect().top+window.scrollY;if(scrollPosition<window.scrollY+props.yOffset+5){currentSectionId=header.id;}});setActiveId(currentSectionId);};window.addEventListener(\"scroll\",onScroll);return()=>window.removeEventListener(\"scroll\",onScroll);},[headers,props.yOffset,props]);const getStyle=header=>{const indentation=firstHeadingLevel?header.level-firstHeadingLevel:0;const headerFont=props[`h${header.level}Font`]||{};return{display:\"block\",...headerFont,color:header.id===activeId?props.activeColor:props.fontColor,fontWeight:header.id===activeId?props.activeFontWeight:headerFont.fontWeight||\"normal\",textDecoration:\"none\",marginBottom:`${props.spacing}px`,marginLeft:`${indentation*props.indentation}px`};};const handleClick=headerId=>{ignoreNextScrollEvent.current=true;const element=document.getElementById(headerId);if(element){const y=element.getBoundingClientRect().top+window.pageYOffset-props.yOffset;window.scrollTo({top:y,behavior:\"smooth\"});checkIfScrollFinished(headerId);}};const checkIfScrollFinished=headerId=>{if(scrollTimeoutRef.current){clearTimeout(scrollTimeoutRef.current);}const isScrolled=()=>{const element=document.getElementById(headerId);if(element){const rect=element.getBoundingClientRect();return Math.abs(rect.top-props.yOffset)<=1;}return false;};const checkScroll=()=>{if(isScrolled()){setActiveId(headerId);}else{scrollTimeoutRef.current=setTimeout(()=>{requestAnimationFrame(checkScroll);},10);}};checkScroll();};return /*#__PURE__*/_jsx(\"div\",{children:headers.filter(header=>props[`showH${header.level}`]!==false).map(header=>/*#__PURE__*/_jsx(\"a\",{href:`#${header.id}`,style:getStyle(header),onMouseOver:e=>e.currentTarget.style.color=props.onHoverColor,onMouseOut:e=>{e.currentTarget.style.color=header.id===activeId?props.activeColor:props.fontColor;e.currentTarget.style.fontWeight=header.id===activeId?props.activeFontWeight:getStyle(header).fontWeight;},onClick:e=>{e.preventDefault();handleClick(header.id);},children:header.text},header.id))});}Table_of_Content.defaultProps={section_id:\"\",fontColor:\"#000000\",activeColor:\"#FF0000\",onHoverColor:\"#00FF00\",spacing:8,indentation:10,yOffset:0,activeFontWeight:\"bold\"};addPropertyControls(Table_of_Content,{section_id:{type:ControlType.String,title:\"Section ID\"},fontColor:{type:ControlType.Color,title:\"Font Color\"},activeColor:{type:ControlType.Color,title:\"Active Color\"},onHoverColor:{type:ControlType.Color,title:\"On Hover Color\"},spacing:{type:ControlType.Number,title:\"Spacing\"},indentation:{type:ControlType.Number,title:\"Indentation\"},yOffset:{type:ControlType.Number,title:\"Y Offset\",min:0,max:200,step:1},activeFontWeight:{type:ControlType.Enum,title:\"Active Font Weight\",options:[\"normal\",\"bold\",\"bolder\",\"lighter\",\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"],defaultValue:\"bold\"},showH1:{type:ControlType.Boolean,title:\"Show H1\",defaultValue:true},showH2:{type:ControlType.Boolean,title:\"Show H2\",defaultValue:true},showH3:{type:ControlType.Boolean,title:\"Show H3\",defaultValue:true},showH4:{type:ControlType.Boolean,title:\"Show H4\",defaultValue:true},showH5:{type:ControlType.Boolean,title:\"Show H5\",defaultValue:true},showH6:{type:ControlType.Boolean,title:\"Show H6\",defaultValue:true},h1Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H1 Font\"},h2Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H2 Font\"},h3Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H3 Font\"},h4Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H4 Font\"},h5Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H5 Font\"},h6Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H6 Font\",description:\"Preview to see it in effect \\n\\nv1.6 \\n[via SegmentUI](https://www.segmentUI.com)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Table_of_Content\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"600\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContent.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";export function CMSContentImageLightboxWithSmoothTransition(Component){return props=>{const[lightboxDisplay,setLightboxDisplay]=useState(false);const[selectedImage,setSelectedImage]=useState(\"\");const[opacity,setOpacity]=useState(0);const handleImageClick=src=>{setSelectedImage(src);setLightboxDisplay(true);};useEffect(()=>{if(lightboxDisplay){setTimeout(()=>setOpacity(1),10);}},[lightboxDisplay]);const closeLightbox=()=>{setOpacity(0);setTimeout(()=>setLightboxDisplay(false),300);};return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(Component,{...props,onClick:e=>{if(e.target.tagName===\"IMG\"){handleImageClick(e.target.src);}},style:{cursor:\"pointer\"}}),/*#__PURE__*/_jsx(\"style\",{children:`\n                    .${props.className} img {\n                        cursor: zoom-in;\n                    }\n                    .lightbox-backdrop {\n                        position: fixed;\n                        top: 0;\n                        left: 0;\n                        width: 100vw;\n                        height: 100vh;\n                        background-color: rgba(0, 0, 0, 0.8);\n                        display: flex;\n                        align-items: center;\n                        justify-content: center;\n                        z-index: 1000;\n                        opacity: 0;\n                        transition: opacity 0.3s ease;\n                    }\n                    .lightbox-image {\n                        max-height: 90%;\n                        max-width: 90%;\n                    }\n                `}),lightboxDisplay&&/*#__PURE__*/_jsx(\"div\",{className:\"lightbox-backdrop\",onClick:closeLightbox,style:{opacity:opacity},children:/*#__PURE__*/_jsx(\"img\",{src:selectedImage,className:\"lightbox-image\",alt:\"Fullscreen\"})})]});};}import{Frame,addPropertyControls,ControlType}from\"framer\";export function Header(props){return /*#__PURE__*/_jsx(Frame,{width:\"100%\",height:80,background:\"white\",children:props.buttonSlot});}addPropertyControls(Header,{buttonSlot:{type:ControlType.ComponentInstance,title:\"Button\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"Header\":{\"type\":\"reactComponent\",\"name\":\"Header\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"CMSContentImageLightboxWithSmoothTransition\":{\"type\":\"reactHoc\",\"name\":\"CMSContentImageLightboxWithSmoothTransition\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ImageLightbox.map", "// Generated by Framer (da373ee)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,withCodeBoundaryForOverrides,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Table_of_Content from\"https://framerusercontent.com/modules/q6TPcm1rVRPb4ymPsf0M/ozVL167hH9qRZk4f9yzV/TableOfContent.js\";import{CMSContentImageLightboxWithSmoothTransition}from\"#framer/local/codeFile/SeC7nkU/ImageLightbox.js\";import{WordCounter}from\"#framer/local/codeFile/GzcDk9z/RichTextCounter.js\";import Blog,{enumToDisplayNameFunctions}from\"#framer/local/collection/Ahiahz968/Ahiahz968.js\";import Team from\"#framer/local/collection/Mw0MzAb1s/Mw0MzAb1s.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle17 from\"#framer/local/css/ALeoHd2zM/ALeoHd2zM.js\";import*as sharedStyle7 from\"#framer/local/css/CVkyezkMY/CVkyezkMY.js\";import*as sharedStyle3 from\"#framer/local/css/djDPEUwhH/djDPEUwhH.js\";import*as sharedStyle14 from\"#framer/local/css/dKhtQtj_s/dKhtQtj_s.js\";import*as sharedStyle6 from\"#framer/local/css/hHsIfsCYN/hHsIfsCYN.js\";import*as sharedStyle10 from\"#framer/local/css/JftXXIuwg/JftXXIuwg.js\";import*as sharedStyle8 from\"#framer/local/css/jr3tXZn4i/jr3tXZn4i.js\";import*as sharedStyle4 from\"#framer/local/css/jrv5bwnyy/jrv5bwnyy.js\";import*as sharedStyle5 from\"#framer/local/css/kEeWTFB5n/kEeWTFB5n.js\";import*as sharedStyle12 from\"#framer/local/css/lACBkHOz7/lACBkHOz7.js\";import*as sharedStyle11 from\"#framer/local/css/N4cH5VlsQ/N4cH5VlsQ.js\";import*as sharedStyle16 from\"#framer/local/css/N74N_0q9y/N74N_0q9y.js\";import*as sharedStyle2 from\"#framer/local/css/pfWtQrq8C/pfWtQrq8C.js\";import*as sharedStyle15 from\"#framer/local/css/rGKB37Wtz/rGKB37Wtz.js\";import*as sharedStyle9 from\"#framer/local/css/U8eGnqdyY/U8eGnqdyY.js\";import*as sharedStyle1 from\"#framer/local/css/V5nk717xE/V5nk717xE.js\";import*as sharedStyle from\"#framer/local/css/vqCJJjluc/vqCJJjluc.js\";import*as sharedStyle13 from\"#framer/local/css/ZQdrSMSI5/ZQdrSMSI5.js\";import metadataProvider from\"#framer/local/webPageMetadata/oLDG1AuFs/oLDG1AuFs.js\";const MaterialFonts=getFonts(Material);const WordCounterFonts=getFonts(WordCounter);const RichTextCMSContentImageLightboxWithSmoothTransition7m741d=withCodeBoundaryForOverrides(RichText,{nodeId:\"UAcUwLrUi\",override:CMSContentImageLightboxWithSmoothTransition,scopeId:\"oLDG1AuFs\"});const Table_of_ContentFonts=getFonts(Table_of_Content);const MotionDivWithFX=withFX(motion.div);const breakpoints={Gyr0xp7Yl:\"(min-width: 810px) and (max-width: 1247px)\",Q6ivksahp:\"(max-width: 809px)\",whHbOEtE6:\"(min-width: 1248px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-QqgH2\";const variantClassNames={Gyr0xp7Yl:\"framer-v-9604ri\",Q6ivksahp:\"framer-v-1ssklnh\",whHbOEtE6:\"framer-v-4vcttq\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"short\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={boxShadow:\"0px 0.12072530715522589px 0.6036265357761295px 0px rgba(0, 0, 0, 0.02), 0px 1px 5px 0px rgba(0, 0, 0, 0.15)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1};const dateOptions1={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString1=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions1,activeLocale);};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"whHbOEtE6\",Phone:\"Q6ivksahp\",Tablet:\"Gyr0xp7Yl\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"whHbOEtE6\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"oLDG1AuFs\",data:Blog,type:\"Collection\"},select:[{collection:\"oLDG1AuFs\",name:\"N2h3PtOZp\",type:\"Identifier\"},{collection:\"oLDG1AuFs\",name:\"QRwXcFRa7\",type:\"Identifier\"},{collection:\"oLDG1AuFs\",name:\"cWiB0RBqj\",type:\"Identifier\"},{collection:\"oLDG1AuFs\",name:\"BBS_KVNzN\",type:\"Identifier\"},{collection:\"oLDG1AuFs\",name:\"zjnE7ok5I\",type:\"Identifier\"},{collection:\"oLDG1AuFs\",name:\"ezcPsrBbZ\",type:\"Identifier\"},{collection:\"oLDG1AuFs\",name:\"zk5TkSruQ\",type:\"Identifier\"},{collection:\"oLDG1AuFs\",name:\"QuZBqwN9w\",type:\"Identifier\"},{collection:\"oLDG1AuFs\",name:\"dwYq76Adh\",type:\"Identifier\"},{collection:\"oLDG1AuFs\",name:\"A3e49Dlkg\",type:\"Identifier\"},{collection:\"oLDG1AuFs\",name:\"wdXjsnhJX\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"oLDG1AuFs\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,cWiB0RBqj=getFromCurrentRouteData(\"cWiB0RBqj\"),N2h3PtOZp=getFromCurrentRouteData(\"N2h3PtOZp\")??\"\",QuZBqwN9w=getFromCurrentRouteData(\"QuZBqwN9w\"),dwYq76Adh=getFromCurrentRouteData(\"dwYq76Adh\"),A3e49Dlkg=getFromCurrentRouteData(\"A3e49Dlkg\"),wdXjsnhJX=getFromCurrentRouteData(\"wdXjsnhJX\"),BBS_KVNzN=getFromCurrentRouteData(\"BBS_KVNzN\")??\"\",QRwXcFRa7=getFromCurrentRouteData(\"QRwXcFRa7\"),zjnE7ok5I=getFromCurrentRouteData(\"zjnE7ok5I\")??\"\",ezcPsrBbZ=getFromCurrentRouteData(\"ezcPsrBbZ\"),vsWMr1mKjyPNM3O2z6,cWiB0RBqjyPNM3O2z6,QRwXcFRa7yPNM3O2z6,ezcPsrBbZyPNM3O2z6,N2h3PtOZpyPNM3O2z6,zk5TkSruQyPNM3O2z6,wWqvDZrVKDUNke1lZe,jiOOsK34wDUNke1lZe,agL47LoP9DUNke1lZe,mY9JhVcMVDUNke1lZe,idDUNke1lZe,idyPNM3O2z6,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(currentRouteData,activeLocale),[currentRouteData,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className,sharedStyle16.className,sharedStyle17.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"lMp_hhk9b\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"hfI2ijjMM\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"qMAkbHxLs\");const ref3=React.useRef(null);const textContent=enumToDisplayNameFunctions[\"QuZBqwN9w\"]?.(QuZBqwN9w,activeLocale);const textContent1=enumToDisplayNameFunctions[\"dwYq76Adh\"]?.(dwYq76Adh,activeLocale);const textContent2=enumToDisplayNameFunctions[\"A3e49Dlkg\"]?.(A3e49Dlkg,activeLocale);const textContent3=enumToDisplayNameFunctions[\"wdXjsnhJX\"]?.(wdXjsnhJX,activeLocale);const activeLocaleCode=useLocaleCode();const textContent4=toDateString(QRwXcFRa7,activeLocaleCode);const textContent5=enumToDisplayNameFunctions[\"ezcPsrBbZ\"]?.(ezcPsrBbZ,activeLocale);const elementId3=useRouteElementId(\"UAcUwLrUi\");const ref4=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"Gyr0xp7Yl\",\"Q6ivksahp\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"whHbOEtE6\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-c53d836b-5706-468a-b8e6-ae61d5338acb, rgb(235, 236, 237)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-4vcttq\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-3zh7o0\",\"data-framer-name\":\"Blog Section/Table of Contents\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dyjol1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qtbdox\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yw0xUonSn\"},motionChild:true,nodeId:\"Q_qFFjwcw\",openInNewTab:false,scopeId:\"oLDG1AuFs\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-ojdmhk framer-ggzptu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t1nasm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AHKiBhhhQ\",scopeId:\"oLDG1AuFs\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-aa00c859-9e35-4938-802e-5067ae674749, rgb(64, 66, 69))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowBack\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"AHKiBhhhQ\",layoutId:\"AHKiBhhhQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l7lhsi\",\"data-styles-preset\":\"vqCJJjluc\",children:\"Blog\"})}),className:\"framer-pqmn4v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-122tzfv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gyr0xp7Yl:{background:{alt:\"\",fit:\"fill\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px)`,...toResponsiveImage(cWiB0RBqj)}},Q6ivksahp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+96+0+0+0+0+49.2+0),sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px)`,...toResponsiveImage(cWiB0RBqj)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 40px) / 2, 1px), 1200px), 1px)`,...toResponsiveImage(cWiB0RBqj)},className:\"framer-t5hotf\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hdotj2\",\"data-framer-name\":\"Headings/h1\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pjnvvw\",\"data-framer-name\":\"Content Container\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pz4uok\",\"data-styles-preset\":\"V5nk717xE\",children:\"Create a Landing Page That Performs Great\"})}),className:\"framer-18eyxc\",fonts:[\"Inter\"],text:N2h3PtOZp,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-228erf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t0jlse\",\"data-styles-preset\":\"pfWtQrq8C\",style:{\"--framer-text-color\":\"var(--token-9063a8ce-9afa-453f-9ec8-907870eee0f2, rgb(255, 174, 0))\"},children:\"Finanzierung\"})}),className:\"framer-1i1ctfr\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t0jlse\",\"data-styles-preset\":\"pfWtQrq8C\",style:{\"--framer-text-color\":\"var(--token-9063a8ce-9afa-453f-9ec8-907870eee0f2, rgb(255, 174, 0))\"},children:\"\\xb7\"})}),className:\"framer-ezgqxj\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t0jlse\",\"data-styles-preset\":\"pfWtQrq8C\",style:{\"--framer-text-color\":\"var(--token-9063a8ce-9afa-453f-9ec8-907870eee0f2, rgb(255, 174, 0))\"},children:\"Finanzierung\"})}),className:\"framer-fozhcp\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t0jlse\",\"data-styles-preset\":\"pfWtQrq8C\",style:{\"--framer-text-color\":\"var(--token-9063a8ce-9afa-453f-9ec8-907870eee0f2, rgb(255, 174, 0))\"},children:\"\\xb7\"})}),className:\"framer-1y6ntsl\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t0jlse\",\"data-styles-preset\":\"pfWtQrq8C\",style:{\"--framer-text-color\":\"var(--token-9063a8ce-9afa-453f-9ec8-907870eee0f2, rgb(255, 174, 0))\"},children:\"Finanzierung\"})}),className:\"framer-dtevkd\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],text:textContent2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t0jlse\",\"data-styles-preset\":\"pfWtQrq8C\",style:{\"--framer-text-color\":\"var(--token-9063a8ce-9afa-453f-9ec8-907870eee0f2, rgb(255, 174, 0))\"},children:\"\\xb7\"})}),className:\"framer-1wivgxo\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t0jlse\",\"data-styles-preset\":\"pfWtQrq8C\",style:{\"--framer-text-color\":\"var(--token-9063a8ce-9afa-453f-9ec8-907870eee0f2, rgb(255, 174, 0))\"},children:\"Finanzierung\"})}),className:\"framer-1yowq9z\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],text:textContent3,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bw14ew\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z8z57u\",\"data-styles-preset\":\"djDPEUwhH\",children:\"Content\"})}),className:\"framer-fwcero\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],text:BBS_KVNzN,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z8z57u\",\"data-styles-preset\":\"djDPEUwhH\",children:\"\\xb7\"})}),className:\"framer-1vz1bmt\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z8z57u\",\"data-styles-preset\":\"djDPEUwhH\",children:\"Content\"})}),className:\"framer-x57t70\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],text:textContent4,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z8z57u\",\"data-styles-preset\":\"djDPEUwhH\",children:\"\\xb7\"})}),className:\"framer-3tzk4q\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rehqyq-container\",isAuthoredByUser:true,nodeId:\"ooIA5g5ik\",scopeId:\"oLDG1AuFs\",children:/*#__PURE__*/_jsx(WordCounter,{displayMode:\"time\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.7em\",textAlign:\"right\"},fontColor:\"var(--token-aa00c859-9e35-4938-802e-5067ae674749, rgb(64, 66, 69))\",height:\"100%\",id:\"ooIA5g5ik\",layoutId:\"ooIA5g5ik\",title:zjnE7ok5I,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z8z57u\",\"data-styles-preset\":\"djDPEUwhH\",children:\"\\xb7\"})}),className:\"framer-1y5svhl\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s2drm8\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iyz54d\",\"data-styles-preset\":\"jrv5bwnyy\",style:{\"--framer-text-color\":\"var(--token-dfac4a67-4238-4aab-bc86-20fbdeb40318, rgb(89, 79, 238))\"},children:\"Content\"})}),className:\"framer-1acj69x\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],text:textContent5,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"hfSDBNMO2\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"Tl2WEZN8E\"]},children:/*#__PURE__*/_jsx(RichTextCMSContentImageLightboxWithSmoothTransition7m741d,{__fromCanvasComponent:true,children:zjnE7ok5I,className:\"framer-7m741d\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],id:elementId3,ref:ref4,stylesPresetsClassNames:{a:\"framer-styles-preset-1sbcrqm\",blockquote:\"framer-styles-preset-s7cbbf\",code:\"framer-styles-preset-1fczzu0\",h1:\"framer-styles-preset-hr5s57\",h2:\"framer-styles-preset-1cimk5v\",h3:\"framer-styles-preset-1pz4uok\",h4:\"framer-styles-preset-rr2b19\",h5:\"framer-styles-preset-1a32giy\",h6:\"framer-styles-preset-1j9lxei\",img:\"framer-styles-preset-133b1sl\",p:\"framer-styles-preset-m2k7pp\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qeoqn9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-rr2b19\",\"data-styles-preset\":\"CVkyezkMY\",children:\"\\xc4hnliche Artikel\"})}),className:\"framer-1aev28\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16yqk70\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"yPNM3O2z6\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"yPNM3O2z6\",name:\"vsWMr1mKj\",type:\"Identifier\"},{collection:\"yPNM3O2z6\",name:\"cWiB0RBqj\",type:\"Identifier\"},{collection:\"yPNM3O2z6\",name:\"QRwXcFRa7\",type:\"Identifier\"},{collection:\"yPNM3O2z6\",name:\"ezcPsrBbZ\",type:\"Identifier\"},{collection:\"yPNM3O2z6\",name:\"N2h3PtOZp\",type:\"Identifier\"},{collection:\"yPNM3O2z6\",name:\"zk5TkSruQ\",type:\"Identifier\"},{collection:\"yPNM3O2z6\",name:\"id\",type:\"Identifier\"},{alias:\"DUNke1lZe\",arguments:[{from:{alias:\"DUNke1lZe\",data:Team,type:\"Collection\"},select:[{collection:\"DUNke1lZe\",name:\"wWqvDZrVK\",type:\"Identifier\"},{collection:\"DUNke1lZe\",name:\"jiOOsK34w\",type:\"Identifier\"},{collection:\"DUNke1lZe\",name:\"agL47LoP9\",type:\"Identifier\"},{collection:\"DUNke1lZe\",name:\"mY9JhVcMV\",type:\"Identifier\"},{collection:\"DUNke1lZe\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"DUNke1lZe\",name:\"mY9JhVcMV\",type:\"Identifier\"},operator:\"==\",right:{collection:\"yPNM3O2z6\",name:\"BBS_KVNzN\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}]},children:(collection1,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({cWiB0RBqj:cWiB0RBqjyPNM3O2z6,DUNke1lZe:collection,ezcPsrBbZ:ezcPsrBbZyPNM3O2z6,id:idyPNM3O2z6,N2h3PtOZp:N2h3PtOZpyPNM3O2z6,QRwXcFRa7:QRwXcFRa7yPNM3O2z6,vsWMr1mKj:vsWMr1mKjyPNM3O2z6,zk5TkSruQ:zk5TkSruQyPNM3O2z6},index1)=>{vsWMr1mKjyPNM3O2z6??=\"\";N2h3PtOZpyPNM3O2z6??=\"\";zk5TkSruQyPNM3O2z6??=\"\";const textContent6=toDateString1(QRwXcFRa7yPNM3O2z6,activeLocaleCode);const textContent7=enumToDisplayNameFunctions[\"ezcPsrBbZ\"]?.(ezcPsrBbZyPNM3O2z6,activeLocale);return /*#__PURE__*/_jsx(LayoutGroup,{id:`yPNM3O2z6-${idyPNM3O2z6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{vsWMr1mKj:vsWMr1mKjyPNM3O2z6},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{vsWMr1mKj:vsWMr1mKjyPNM3O2z6},webPageId:\"oLDG1AuFs\"},motionChild:true,nodeId:\"QpNdl1699\",scopeId:\"oLDG1AuFs\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-v9thoh framer-ggzptu\",whileHover:animation,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-113ub06\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gyr0xp7Yl:{background:{alt:\"\",fit:\"fill\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 32px, 1px)`,...toResponsiveImage(cWiB0RBqjyPNM3O2z6)}},Q6ivksahp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+96+0+0+0+0+893.6+0+66+0+1237.6+16+0+0),sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 32px, 1px)`,...toResponsiveImage(cWiB0RBqjyPNM3O2z6)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 40px) / 2, 1px), 1200px) - 32px, 1px)`,...toResponsiveImage(cWiB0RBqjyPNM3O2z6)},className:\"framer-918129\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g68yjg\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9qjs9h\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1onc4hd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iyz54d\",\"data-styles-preset\":\"jrv5bwnyy\",children:\"Content\"})}),className:\"framer-11apsfm\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iyz54d\",\"data-styles-preset\":\"jrv5bwnyy\",children:\"\\xb7\"})}),className:\"framer-17tc44e\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iyz54d\",\"data-styles-preset\":\"jrv5bwnyy\",style:{\"--framer-text-color\":\"var(--token-dfac4a67-4238-4aab-bc86-20fbdeb40318, rgb(89, 79, 238))\"},children:\"Content\"})}),className:\"framer-5s7yfh\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent7,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ezqekf\",\"data-styles-preset\":\"rGKB37Wtz\",children:\"Title\"})}),className:\"framer-mkg7h1\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:N2h3PtOZpyPNM3O2z6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m2k7pp\",\"data-styles-preset\":\"JftXXIuwg\",children:\"Content\"})}),className:\"framer-1epmki2\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:zk5TkSruQyPNM3O2z6,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-17qyryc hidden-9604ri hidden-1ssklnh\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w1nh7e\",children:collection?.map(({agL47LoP9:agL47LoP9DUNke1lZe,id:idDUNke1lZe,jiOOsK34w:jiOOsK34wDUNke1lZe,mY9JhVcMV:mY9JhVcMVDUNke1lZe,wWqvDZrVK:wWqvDZrVKDUNke1lZe},index)=>{jiOOsK34wDUNke1lZe??=\"\";agL47LoP9DUNke1lZe??=\"\";mY9JhVcMVDUNke1lZe??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`DUNke1lZe-${idDUNke1lZe}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{mY9JhVcMV:mY9JhVcMVDUNke1lZe},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c91i40\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"40px\",...toResponsiveImage(wWqvDZrVKDUNke1lZe)},className:\"framer-19d4ufn\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19myvst\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-po9ocu\",\"data-styles-preset\":\"N74N_0q9y\",children:\"Author Name\"})}),className:\"framer-1oq4vhv\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],text:jiOOsK34wDUNke1lZe,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rbq60l\",\"data-styles-preset\":\"ALeoHd2zM\",children:\"Author Designation\"})}),className:\"framer-1if6zw2\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],text:agL47LoP9DUNke1lZe,verticalAlignment:\"top\",withExternalLayout:true})]})]})})},idDUNke1lZe);})})})]})]})})})},idyPNM3O2z6);})})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1emrr0y hidden-9604ri hidden-1ssklnh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1j9lxei\",\"data-styles-preset\":\"U8eGnqdyY\",children:\"Inhalt\"})}),className:\"framer-cag83p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cb21zf-container\",id:\"1cb21zf\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Pn8hV4FUU\",scopeId:\"oLDG1AuFs\",children:/*#__PURE__*/_jsx(Table_of_Content,{activeColor:\"var(--token-dfac4a67-4238-4aab-bc86-20fbdeb40318, rgb(89, 79, 238))\",activeFontWeight:\"bold\",fontColor:\"var(--token-d2e97ca1-fa50-4384-bbdc-cdaea13673ef, rgb(44, 45, 48))\",h1Font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},h2Font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},h3Font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"20px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.6em\"},h4Font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.6em\"},h5Font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.6em\"},h6Font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.6em\"},height:\"100%\",id:\"Pn8hV4FUU\",indentation:0,layoutId:\"Pn8hV4FUU\",onHoverColor:\"var(--token-d2e97ca1-fa50-4384-bbdc-cdaea13673ef, rgb(44, 45, 48))\",section_id:\"cms1\",showH1:true,showH2:true,showH3:true,showH4:true,showH5:true,showH6:true,spacing:12,style:{width:\"100%\"},width:\"100%\",yOffset:0})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ect4ew\",\"data-framer-name\":\"progressbar\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-9pb8c1\",\"data-framer-name\":\"Bar\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yk1c7b\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QqgH2.framer-ggzptu, .framer-QqgH2 .framer-ggzptu { display: block; }\",\".framer-QqgH2.framer-4vcttq { align-content: center; align-items: center; background-color: var(--token-c53d836b-5706-468a-b8e6-ae61d5338acb, #ebeced); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1248px; }\",\".framer-QqgH2 .framer-3zh7o0 { align-content: center; align-items: center; background-color: var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 96px 24px 80px 24px; position: relative; width: 100%; }\",\".framer-QqgH2 .framer-1dyjol1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QqgH2 .framer-1qtbdox { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QqgH2 .framer-ojdmhk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-QqgH2 .framer-1t1nasm-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-QqgH2 .framer-pqmn4v, .framer-QqgH2 .framer-1i1ctfr, .framer-QqgH2 .framer-ezgqxj, .framer-QqgH2 .framer-fozhcp, .framer-QqgH2 .framer-1y6ntsl, .framer-QqgH2 .framer-dtevkd, .framer-QqgH2 .framer-1wivgxo, .framer-QqgH2 .framer-1yowq9z, .framer-QqgH2 .framer-fwcero, .framer-QqgH2 .framer-1vz1bmt, .framer-QqgH2 .framer-x57t70, .framer-QqgH2 .framer-3tzk4q, .framer-QqgH2 .framer-1y5svhl, .framer-QqgH2 .framer-1acj69x, .framer-QqgH2 .framer-11apsfm, .framer-QqgH2 .framer-17tc44e, .framer-QqgH2 .framer-5s7yfh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QqgH2 .framer-122tzfv { align-content: center; align-items: center; background-color: var(--token-a21c5608-6f6d-44b8-a4dd-3ec4d069f1f6, #fafafa); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 358px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-QqgH2 .framer-t5hotf, .framer-QqgH2 .framer-918129 { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-QqgH2 .framer-hdotj2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QqgH2 .framer-1pjnvvw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QqgH2 .framer-18eyxc, .framer-QqgH2 .framer-cag83p { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QqgH2 .framer-228erf, .framer-QqgH2 .framer-1onc4hd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QqgH2 .framer-1bw14ew { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QqgH2 .framer-1rehqyq-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-QqgH2 .framer-1s2drm8 { --border-bottom-width: 1px; --border-color: var(--token-30fb77e0-7703-415f-8b70-5d0dca061c94, #e1defc); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 16px 4px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-QqgH2 .framer-7m741d { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QqgH2 .framer-1qeoqn9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QqgH2 .framer-1aev28 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QqgH2 .framer-16yqk70 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 1200px; padding: 0px; position: relative; width: 100%; }\",\".framer-QqgH2 .framer-v9thoh { align-content: flex-start; align-items: flex-start; background-color: var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 16px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QqgH2 .framer-113ub06 { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-a21c5608-6f6d-44b8-a4dd-3ec4d069f1f6, #fafafa); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QqgH2 .framer-1g68yjg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 24px 0px 24px 0px; position: relative; width: 1px; }\",\".framer-QqgH2 .framer-9qjs9h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QqgH2 .framer-mkg7h1, .framer-QqgH2 .framer-1epmki2, .framer-QqgH2 .framer-1oq4vhv, .framer-QqgH2 .framer-1if6zw2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QqgH2 .framer-17qyryc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QqgH2 .framer-1w1nh7e { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-QqgH2 .framer-1c91i40 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-QqgH2 .framer-19d4ufn { aspect-ratio: 1 / 1; border-bottom-left-radius: 1000px; border-bottom-right-radius: 1000px; border-top-left-radius: 1000px; border-top-right-radius: 1000px; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 40px; }\",\".framer-QqgH2 .framer-19myvst { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 1px; }\",\".framer-QqgH2 .framer-1emrr0y { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; max-height: 100vh; max-width: 400px; padding: 0px; position: sticky; top: 96px; width: 1px; z-index: 1; }\",\".framer-QqgH2 .framer-1cb21zf-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-QqgH2 .framer-ect4ew { flex: none; gap: 10px; height: 4px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: fixed; top: 0px; width: 100%; z-index: 3; }\",\".framer-QqgH2 .framer-9pb8c1 { background-color: var(--token-dfac4a67-4238-4aab-bc86-20fbdeb40318, #594fee); flex: none; height: 10000vh; overflow: hidden; position: absolute; right: 0px; top: calc(52.94117647058826% - 10000vh / 2); width: 200%; }\",\".framer-QqgH2 .framer-1yk1c7b { background-color: #ffffff; flex: none; height: 45px; left: 992px; overflow: hidden; position: absolute; top: calc(51.131086142322125% - 45px / 2); width: 80px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css,...sharedStyle17.css,'.framer-QqgH2[data-border=\"true\"]::after, .framer-QqgH2 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1247px) { .framer-QqgH2.framer-4vcttq { width: 810px; } .framer-QqgH2 .framer-3zh7o0 { padding: 96px 24px 40px 24px; } .framer-QqgH2 .framer-1dyjol1 { flex-direction: column; } .framer-QqgH2 .framer-1qtbdox { flex: none; order: 1; width: 100%; }}\",\"@media (max-width: 809px) { .framer-QqgH2.framer-4vcttq { width: 390px; } .framer-QqgH2 .framer-3zh7o0 { padding: 96px 24px 40px 24px; } .framer-QqgH2 .framer-1dyjol1, .framer-QqgH2 .framer-v9thoh { flex-direction: column; } .framer-QqgH2 .framer-1qtbdox { flex: none; order: 1; width: 100%; } .framer-QqgH2 .framer-113ub06 { align-self: unset; flex: none; height: 154px; width: 100%; } .framer-QqgH2 .framer-1g68yjg { flex: none; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6113\n * @framerIntrinsicWidth 1248\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Gyr0xp7Yl\":{\"layout\":[\"fixed\",\"auto\"]},\"Q6ivksahp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"lMp_hhk9b\":{\"pattern\":\":lMp_hhk9b\",\"name\":\"\"},\"hfI2ijjMM\":{\"pattern\":\":hfI2ijjMM\",\"name\":\"\"},\"qMAkbHxLs\":{\"pattern\":\":qMAkbHxLs\",\"name\":\"\"},\"UAcUwLrUi\":{\"pattern\":\":UAcUwLrUi\",\"name\":\"cms1\"}}\n * @framerResponsiveScreen\n */const FrameroLDG1AuFs=withCSS(Component,css,\"framer-QqgH2\");export default FrameroLDG1AuFs;FrameroLDG1AuFs.displayName=\"Blog Detail\";FrameroLDG1AuFs.defaultProps={height:6113,width:1248};addFonts(FrameroLDG1AuFs,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...MaterialFonts,...WordCounterFonts,...Table_of_ContentFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...getFontsFromSharedStyle(sharedStyle16.fonts),...getFontsFromSharedStyle(sharedStyle17.fonts),...componentPresets.fonts?.[\"Tl2WEZN8E\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"Tl2WEZN8E\"]):[],...componentPresets.fonts?.[\"hfSDBNMO2\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"hfSDBNMO2\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroLDG1AuFs\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1248\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Gyr0xp7Yl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Q6ivksahp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"lMp_hhk9b\\\":{\\\"pattern\\\":\\\":lMp_hhk9b\\\",\\\"name\\\":\\\"\\\"},\\\"hfI2ijjMM\\\":{\\\"pattern\\\":\\\":hfI2ijjMM\\\",\\\"name\\\":\\\"\\\"},\\\"qMAkbHxLs\\\":{\\\"pattern\\\":\\\":qMAkbHxLs\\\",\\\"name\\\":\\\"\\\"},\\\"UAcUwLrUi\\\":{\\\"pattern\\\":\\\":UAcUwLrUi\\\",\\\"name\\\":\\\"cms1\\\"}}\",\"framerIntrinsicHeight\":\"6113\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Table_of_Content", "props", "headers", "setHeaders", "ye", "activeId", "setActiveId", "firstHeadingLevel", "setFirstHeadingLevel", "ignoreNextScrollEvent", "pe", "scrollTimeoutRef", "ue", "sectionElement", "headingElements", "element", "index", "onScroll", "currentSectionId", "header", "window", "getStyle", "indentation", "headerFont", "handleClick", "headerId", "y", "checkIfScrollFinished", "isScrolled", "rect", "checkScroll", "p", "e", "addPropertyControls", "ControlType", "CMSContentImageLightboxWithSmoothTransition", "Component", "props", "lightboxDisplay", "setLightboxDisplay", "ye", "selectedImage", "setSelectedImage", "opacity", "setOpacity", "handleImageClick", "src", "ue", "closeLightbox", "u", "l", "p", "e", "Header", "Frame", "addPropertyControls", "ControlType", "MaterialFonts", "getFonts", "Icon", "WordCounterFonts", "WordCounter", "RichTextCMSContentImageLightboxWithSmoothTransition7m741d", "withCodeBoundaryForOverrides", "RichText", "CMSContentImageLightboxWithSmoothTransition", "Table_of_ContentFonts", "Table_of_Content", "MotionDivWithFX", "withFX", "motion", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "sharedDateFormatter", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "transition1", "animation", "dateOptions1", "toDateString1", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "Ahiahz968_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "cWiB0RBqj", "N2h3PtOZp", "QuZBqwN9w", "dwYq76Adh", "A3e49Dlkg", "wdXjsnhJX", "BBS_KVNzN", "QRwXcFRa7", "zjnE7ok5I", "ezcPsrBbZ", "vsWMr1mKjyPNM3O2z6", "cWiB0RBqjyPNM3O2z6", "QRwXcFRa7yPNM3O2z6", "ezcPsrBbZyPNM3O2z6", "N2h3PtOZpyPNM3O2z6", "zk5TkSruQyPNM3O2z6", "wWqvDZrVKDUNke1lZe", "jiOOsK34wDUNke1lZe", "agL47LoP9DUNke1lZe", "mY9JhVcMVDUNke1lZe", "idDUNke1lZe", "idyPNM3O2z6", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "textContent", "enumToDisplayNameFunctions", "textContent1", "textContent2", "textContent3", "activeLocaleCode", "useLocaleCode", "textContent4", "textContent5", "elementId3", "ref4", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "Link", "ComponentViewportProvider", "Container", "x", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "ComponentPresetsProvider", "ChildrenCanSuspend", "Mw0MzAb1s_default", "collection1", "paginationInfo", "loadMore", "l", "collection", "index1", "textContent6", "textContent7", "PathVariablesContext", "index", "css", "FrameroLDG1AuFs", "withCSS", "oLDG1AuFs_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
