{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/q6TPcm1rVRPb4ymPsf0M/ukEM2DrdqZklbSePOgRx/TableOfContent.js", "ssg:https://framerusercontent.com/modules/XOCGpZSIu4ca8r9m7ey5/4MZhRcG9RdORFxI1JK8x/Full_Width_Image.js", "ssg:https://framerusercontent.com/modules/xpVFYFgAD4GS6UcxFpnF/lKuk678ATUr6kygrFBvs/SXexU9w6h.js", "ssg:https://framerusercontent.com/modules/cVNHS21KbVoCZzXxAGja/9KA2SdxBnPyjLecJ4Loo/Z6QCSPFWD.js", "ssg:https://framerusercontent.com/modules/pc7gXr0c6EMOQhgePd2P/SYALN1yJNGtY1GLNswVI/o9IkjzBGv.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.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]);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:\"v1.0 \\n[via SegmentUI](https://www.segmentUI.com)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Table_of_Content\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContent.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";export function setFullWidth(Component){return props=>{return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(Component,{...props}),/*#__PURE__*/_jsx(\"style\",{children:`\n          .${props.className} img {\n            width: 100%; /* Set image width to 100% of the parent container */\n          }\n        `})]});};}export function setFullWidthRadius(Component){return props=>{return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(Component,{...props}),/*#__PURE__*/_jsx(\"style\",{children:`\n          .${props.className} img {\n            width: 100%; /* Set image width to 100% of the parent container */\n            border-radius: 12px; /* Added 12px border radius */\n          }\n        `})]});};}\nexport const __FramerMetadata__ = {\"exports\":{\"setFullWidth\":{\"type\":\"reactHoc\",\"name\":\"setFullWidth\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"setFullWidthRadius\":{\"type\":\"reactHoc\",\"name\":\"setFullWidthRadius\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Full_Width_Image.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Figtree-700\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{family:\"Figtree\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15bwkEU4HTy.woff2\",weight:\"700\"}];export const css=['.framer-81yGD .framer-styles-preset-1vxiqrl:not(.rich-text-wrapper), .framer-81yGD .framer-styles-preset-1vxiqrl.rich-text-wrapper h1 { --framer-font-family: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.01em; --framer-line-height: 96%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #171717; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-81yGD\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Figtree-700\",\"GF;Figtree-900\",\"GF;Figtree-900italic\",\"GF;Figtree-700italic\"]);export const fonts=[{family:\"Figtree\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15bwkEU4HTy.woff2\",weight:\"700\"},{family:\"Figtree\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15bwkEU4HTy.woff2\",weight:\"900\"},{family:\"Figtree\",style:\"italic\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3Ax8ayEA25WTybO8.woff2\",weight:\"900\"},{family:\"Figtree\",style:\"italic\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A1EayEA25WTybO8.woff2\",weight:\"700\"}];export const css=['.framer-NHN1A .framer-styles-preset-jjpz2q:not(.rich-text-wrapper), .framer-NHN1A .framer-styles-preset-jjpz2q.rich-text-wrapper h2 { --framer-font-family: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-family-bold: \"Figtree\", sans-serif; --framer-font-family-bold-italic: \"Figtree\", sans-serif; --framer-font-family-italic: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-d9dd2a4f-da85-42e7-a671-178e822b1065, #171717); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-NHN1A\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,clampRGB,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import Table_of_Content from\"https://framerusercontent.com/modules/q6TPcm1rVRPb4ymPsf0M/ukEM2DrdqZklbSePOgRx/TableOfContent.js\";import NewsletterSubscribe from\"#framer/local/canvasComponent/aBthmOpF2/aBthmOpF2.js\";import CTA from\"#framer/local/canvasComponent/APTx8DDNr/APTx8DDNr.js\";import Button from\"#framer/local/canvasComponent/ARD1H_alj/ARD1H_alj.js\";import Header from\"#framer/local/canvasComponent/FTzFtKDpg/FTzFtKDpg.js\";import Tag from\"#framer/local/canvasComponent/HYTBtRi59/HYTBtRi59.js\";import BlogCard from\"#framer/local/canvasComponent/z2RYmwrT_/z2RYmwrT_.js\";import Footer from\"#framer/local/canvasComponent/ZohlLwAZW/ZohlLwAZW.js\";import{setFullWidth}from\"#framer/local/codeFile/zrGsSKf/Full_Width_Image.js\";import Blog,{enumToDisplayNameFunctions}from\"#framer/local/collection/YqXeuoBEL/YqXeuoBEL.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle6 from\"#framer/local/css/Cv0UDgIpf/Cv0UDgIpf.js\";import*as sharedStyle3 from\"#framer/local/css/gQEn_Bslb/gQEn_Bslb.js\";import*as sharedStyle7 from\"#framer/local/css/i8ANhQCA3/i8ANhQCA3.js\";import*as sharedStyle8 from\"#framer/local/css/i9R8aklC3/i9R8aklC3.js\";import*as sharedStyle2 from\"#framer/local/css/m74V6t7LA/m74V6t7LA.js\";import*as sharedStyle from\"#framer/local/css/SXexU9w6h/SXexU9w6h.js\";import*as sharedStyle10 from\"#framer/local/css/TgoOS6ixn/TgoOS6ixn.js\";import*as sharedStyle5 from\"#framer/local/css/w8VnC_NxM/w8VnC_NxM.js\";import*as sharedStyle9 from\"#framer/local/css/yZyWXPBcM/yZyWXPBcM.js\";import*as sharedStyle1 from\"#framer/local/css/z39ytlXU7/z39ytlXU7.js\";import*as sharedStyle4 from\"#framer/local/css/Z6QCSPFWD/Z6QCSPFWD.js\";import metadataProvider from\"#framer/local/webPageMetadata/o9IkjzBGv/o9IkjzBGv.js\";const HeaderFonts=getFonts(Header);const TagFonts=getFonts(Tag);const RichTextSetFullWidthgfhi5x=withCodeBoundaryForOverrides(RichText,{nodeId:\"aqao1CMK8\",override:setFullWidth,scopeId:\"o9IkjzBGv\"});const EmbedFonts=getFonts(Embed);const Table_of_ContentFonts=getFonts(Table_of_Content);const NewsletterSubscribeFonts=getFonts(NewsletterSubscribe);const ButtonFonts=getFonts(Button);const BlogCardFonts=getFonts(BlogCard);const CTAFonts=getFonts(CTA);const FooterFonts=getFonts(Footer);const breakpoints={Bm3K2uUqj:\"(min-width: 760px) and (max-width: 1119px)\",svwfSjeSd:\"(min-width: 1120px)\",Zo5clKfHa:\"(max-width: 759px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-t0F6o\";const variantClassNames={Bm3K2uUqj:\"framer-v-1ss7i77\",svwfSjeSd:\"framer-v-16jrep2\",Zo5clKfHa:\"framer-v-qtgela\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"tmJh1RWZR\":return'var(--token-00942da7-000c-432d-a24e-da6225122bee, rgb(255, 237, 229)) /* {\"name\":\"Light Red\"} */';case\"R4BlQLNuE\":return'var(--token-66f14956-d596-4688-a1b1-a718a31479e0, rgb(255, 247, 208)) /* {\"name\":\"Light Yellow\"} */';case\"SSsgWzyxf\":return'var(--token-30c9ad8c-498b-4492-b461-8b5f300f30c6, rgb(248, 255, 229)) /* {\"name\":\"Light Green\"} */';case\"buNvfON24\":return'var(--token-5c0276e9-d792-4aea-a052-d0122212f997, rgb(230, 253, 255)) /* {\"name\":\"Light Blue\"} */';case\"GAushxgr0\":return'var(--token-fed2f671-fabe-4ae2-b7fc-220e6c0915e8, rgb(251, 242, 255)) /* {\"name\":\"Light Purple\"} */';case\"T4COnznh_\":return'var(--token-0ddd70c1-13e6-4e04-ae23-1a403e2871d3, rgb(253, 231, 248)) /* {\"name\":\"Light Pink\"} */';default:return'var(--token-165ecaea-a993-4c44-b839-fb9c2b851c99, rgb(250, 248, 243)) /* {\"name\":\"Off-White\"} */';}};const toString=value=>{return typeof value===\"string\"?value:String(value);};const convertFromEnum1=(value,activeLocale)=>{switch(value){case\"tmJh1RWZR\":return\"rgba(254, 79, 2, 0.2)\";case\"R4BlQLNuE\":return\"rgba(76, 41, 8, 0.16)\";case\"SSsgWzyxf\":return\"rgba(188, 252, 0, 0.5)\";case\"buNvfON24\":return\"rgba(7, 238, 254, 0.4)\";case\"GAushxgr0\":return\"rgba(202, 127, 254, 0.36)\";case\"T4COnznh_\":return\"rgba(255, 133, 228, 0.32)\";default:return\"rgba(23, 23, 23, 0.2)\";}};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const convertFromEnum2=(value,activeLocale)=>{switch(value){case\"eOLekBTeE\":return\"dwrXFl8va\";case\"Bfvh6NGep\":return\"hocrnLzwg\";default:return\"dwrXFl8va\";}};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:\"svwfSjeSd\",Phone:\"Zo5clKfHa\",Tablet:\"Bm3K2uUqj\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"svwfSjeSd\"};};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:\"o9IkjzBGv\",data:Blog,type:\"Collection\"},select:[{collection:\"o9IkjzBGv\",name:\"QyA80Akmn\",type:\"Identifier\"},{collection:\"o9IkjzBGv\",name:\"YCh7PU1Ff\",type:\"Identifier\"},{collection:\"o9IkjzBGv\",name:\"pgeyXwQYm\",type:\"Identifier\"},{collection:\"o9IkjzBGv\",name:\"WEFglBt3d\",type:\"Identifier\"},{collection:\"o9IkjzBGv\",name:\"U88awW0jS\",type:\"Identifier\"},{collection:\"o9IkjzBGv\",name:\"wGJEqIlOj\",type:\"Identifier\"},{collection:\"o9IkjzBGv\",name:\"Kxof7TMwq\",type:\"Identifier\"},{collection:\"o9IkjzBGv\",name:\"mcEHtkbD0\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"o9IkjzBGv\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,pgeyXwQYm=getFromCurrentRouteData(\"pgeyXwQYm\"),QyA80Akmn=getFromCurrentRouteData(\"QyA80Akmn\")??\"\",wGJEqIlOj=getFromCurrentRouteData(\"wGJEqIlOj\"),Kxof7TMwq=getFromCurrentRouteData(\"Kxof7TMwq\"),WEFglBt3d=getFromCurrentRouteData(\"WEFglBt3d\"),mcEHtkbD0=getFromCurrentRouteData(\"mcEHtkbD0\")??\"\",YCh7PU1Ff=getFromCurrentRouteData(\"YCh7PU1Ff\")??\"\",V1k1iR5ohmY47zChPV,lnOYQuh6lmY47zChPV,QyA80AkmnmY47zChPV,U88awW0jSmY47zChPV,YCh7PU1FfmY47zChPV,idmY47zChPV,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const fillColor=toString(convertFromEnum(pgeyXwQYm,activeLocale));const visible=isSet(wGJEqIlOj);const textContent=enumToDisplayNameFunctions[\"Kxof7TMwq\"]?.(Kxof7TMwq,activeLocale);const activeLocaleCode=useLocaleCode();const textContent1=toDateString(WEFglBt3d,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const elementId=useRouteElementId(\"aqao1CMK8\");const ref1=React.useRef(null);const visible1=equals(YCh7PU1Ff,\"8-mission-critical-consignment-business-costs\");const elementId1=useRouteElementId(\"M19yj2LrB\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"svwfSjeSd\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-16jrep2\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o01z9v-container\",layoutScroll:true,nodeId:\"DFP3sXRyD\",scopeId:\"o9IkjzBGv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bm3K2uUqj:{gZSr8EnHw:resolvedLinks[1],variant:\"heAdUcJUs\"},Zo5clKfHa:{gZSr8EnHw:resolvedLinks[2],variant:\"EwtTwoR1G\"}},children:/*#__PURE__*/_jsx(Header,{gZSr8EnHw:resolvedLinks[0],height:\"100%\",id:\"DFP3sXRyD\",layoutId:\"DFP3sXRyD\",style:{height:\"100%\",width:\"100%\"},variant:\"EJ1pjP14g\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-epi36u\",\"data-framer-name\":\"Rows\",style:{\"--13gyznc\":fillColor,\"--1rv4okn\":clampRGB(fillColor)},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ge8ysc\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ge9iv1\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3c1x48\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-24ntb9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zo5clKfHa:{y:(componentViewport?.y||0)+0+0+192+0+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+0+0+200+0+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pywfwe-container\",nodeId:\"aM2lIgRR8\",scopeId:\"o9IkjzBGv\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"aM2lIgRR8\",iwhHV4QEU:\"rgba(23, 23, 23, 0.8)\",layoutId:\"aM2lIgRR8\",width:\"100%\",wiUuG9vyK:toString(convertFromEnum1(pgeyXwQYm,activeLocale)),XGJ3yUW6I:enumToDisplayNameFunctions[\"pgeyXwQYm\"]?.(pgeyXwQYm,activeLocale)})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1vxiqrl\",\"data-styles-preset\":\"SXexU9w6h\",children:\"Dealing with \u201CDeath Piles\u201D and Excess Inventory\"})}),className:\"framer-1ms7jk4\",\"data-framer-name\":\"Introducing the Astria EVM\",fonts:[\"Inter\"],text:QyA80Akmn,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o1ia2d\",\"data-framer-name\":\"Details\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zo5clKfHa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+192+0+0+0+0+0+0+126.76+0),sizes:\"48px\",...toResponsiveImage(wGJEqIlOj),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+200+0+0+0+0+0+0+126.76+0),sizes:\"48px\",...toResponsiveImage(wGJEqIlOj),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1txs6ow\",\"data-framer-name\":\"Headshot\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w5l830\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nxueu7\",\"data-styles-preset\":\"z39ytlXU7\",children:\"Jon Staab\"})}),className:\"framer-1mkfg8o\",\"data-framer-name\":\"Eshita\",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-bmw0mp\",\"data-styles-preset\":\"m74V6t7LA\",children:\"Jan 21, 2024\"})}),className:\"framer-y3ju8r\",\"data-framer-name\":\"Oct 31, 2023\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-acaoux\",\"data-framer-name\":\"Rows\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-121qnej\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rdmyzg\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lod4a6\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"KakJsG8zv\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"s_aNVxlEL\"]},children:/*#__PURE__*/_jsx(RichTextSetFullWidthgfhi5x,{__fromCanvasComponent:true,children:mcEHtkbD0,className:\"framer-gfhi5x\",\"data-framer-name\":\"Powered by The Shared Sequencer\",fonts:[\"GF;NB Akademie-regular\"],id:elementId,ref:ref1,stylesPresetsClassNames:{a:\"framer-styles-preset-d91vn8\",blockquote:\"framer-styles-preset-y63sr3\",h1:\"framer-styles-preset-1khm5no\",h2:\"framer-styles-preset-jjpz2q\",h3:\"framer-styles-preset-1b5aimr\",h4:\"framer-styles-preset-867rht\",h5:\"framer-styles-preset-1g3srm4\",h6:\"framer-styles-preset-67vg72\",img:\"framer-styles-preset-jktixh\",p:\"framer-styles-preset-2pe64a\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17082xy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GnOBNvuir\",scopeId:\"o9IkjzBGv\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=\"\" width=\"100%\" frameBorder=\"0\" height=\"2500px\"></iframe>',id:\"GnOBNvuir\",layoutId:\"GnOBNvuir\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},type:\"url\",url:\"https://consignment-business-cost-calculator.surge.sh/\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ey51my\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-867rht\",\"data-styles-preset\":\"Cv0UDgIpf\",children:\"Contents\"})}),className:\"framer-kgc1yn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sabj4s-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"f2MFSOyh2\",scopeId:\"o9IkjzBGv\",children:/*#__PURE__*/_jsx(Table_of_Content,{activeColor:\"var(--token-d9dd2a4f-da85-42e7-a671-178e822b1065, rgb(23, 23, 23))\",activeFontWeight:\"bold\",fontColor:\"var(--token-d9dd2a4f-da85-42e7-a671-178e822b1065, rgb(23, 23, 23))\",h1Font:{},h2Font:{fontFamily:'\"Figtree\", \"Figtree Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},h3Font:{fontFamily:'\"Figtree\", \"Figtree Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},h4Font:{fontFamily:'\"Figtree\", \"Figtree Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},h5Font:{},h6Font:{},height:\"100%\",id:\"f2MFSOyh2\",indentation:16,layoutId:\"f2MFSOyh2\",onHoverColor:\"var(--token-c7e9527f-30af-4b03-add3-abe85d001f66, rgb(254, 79, 2))\",section_id:\"1\",showH1:false,showH2:true,showH3:false,showH4:false,showH5:false,showH6:false,spacing:15,width:\"100%\",yOffset:0})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o0b7gf\",\"data-framer-name\":\"Section\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bm3K2uUqj:{y:(componentViewport?.y||0)+0+1106.36+0+0},Zo5clKfHa:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1372px)`,y:(componentViewport?.y||0)+0+1290.36+64+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1372px)`,y:(componentViewport?.y||0)+0+1122.36+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6q7d35-container\",nodeId:\"UkwIt9rRx\",scopeId:\"o9IkjzBGv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bm3K2uUqj:{variant:\"Jt7kq39An\"},Zo5clKfHa:{variant:\"mONsLBhGT\"}},children:/*#__PURE__*/_jsx(NewsletterSubscribe,{height:\"100%\",id:\"UkwIt9rRx\",layoutId:\"UkwIt9rRx\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"ccDKaaDPk\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1089izh\",\"data-border\":true,\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-154ya0y\",\"data-framer-name\":\"Rows\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jjpz2q\",\"data-styles-preset\":\"Z6QCSPFWD\",children:\"More Resources\"})}),className:\"framer-zjkwfm\",\"data-framer-name\":\"Consolidate operations with one effortless consignment software\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Qy1_HQlv2\"},implicitPathVariables:undefined},{href:{webPageId:\"Qy1_HQlv2\"},implicitPathVariables:undefined},{href:{webPageId:\"Qy1_HQlv2\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bm3K2uUqj:{y:(componentViewport?.y||0)+0+1350.36+80+0+0},Zo5clKfHa:{y:(componentViewport?.y||0)+0+1654.36+80+0+0+104}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,y:(componentViewport?.y||0)+0+1366.36+80+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rgvwh4-container\",nodeId:\"yGN5c9UFT\",scopeId:\"o9IkjzBGv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bm3K2uUqj:{UsDVn0b0n:resolvedLinks1[1]},Zo5clKfHa:{UsDVn0b0n:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"yGN5c9UFT\",layoutId:\"yGN5c9UFT\",m1CmyNhY2:false,mdW5utJB3:\"See All\",UsDVn0b0n:resolvedLinks1[0],V3RPd2gv0:false,variant:\"pIFMU5A5_\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cm19ri\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"mY47zChPV\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"mY47zChPV\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"mY47zChPV\",name:\"V1k1iR5oh\",type:\"Identifier\"},{collection:\"mY47zChPV\",name:\"lnOYQuh6l\",type:\"Identifier\"},{collection:\"mY47zChPV\",name:\"QyA80Akmn\",type:\"Identifier\"},{collection:\"mY47zChPV\",name:\"U88awW0jS\",type:\"Identifier\"},{collection:\"mY47zChPV\",name:\"YCh7PU1Ff\",type:\"Identifier\"},{collection:\"mY47zChPV\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"mY47zChPV\",name:\"YCh7PU1Ff\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:YCh7PU1Ff},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idmY47zChPV,lnOYQuh6l:lnOYQuh6lmY47zChPV,QyA80Akmn:QyA80AkmnmY47zChPV,U88awW0jS:U88awW0jSmY47zChPV,V1k1iR5oh:V1k1iR5ohmY47zChPV,YCh7PU1Ff:YCh7PU1FfmY47zChPV},index)=>{QyA80AkmnmY47zChPV??=\"\";U88awW0jSmY47zChPV??=\"\";YCh7PU1FfmY47zChPV??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`mY47zChPV-${idmY47zChPV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{YCh7PU1Ff:YCh7PU1FfmY47zChPV},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-j96bbe\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{YCh7PU1Ff:YCh7PU1FfmY47zChPV},webPageId:\"o9IkjzBGv\"},implicitPathVariables:undefined},{href:{pathVariables:{YCh7PU1Ff:YCh7PU1FfmY47zChPV},webPageId:\"o9IkjzBGv\"},implicitPathVariables:undefined},{href:{pathVariables:{YCh7PU1Ff:YCh7PU1FfmY47zChPV},webPageId:\"o9IkjzBGv\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bm3K2uUqj:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1372px) - 24px) / 2, 200px), 1px)`,y:(componentViewport?.y||0)+0+1350.36+80+138+0+0+0},Zo5clKfHa:{width:`max(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1372px), 200px), 1px)`,y:(componentViewport?.y||0)+0+1654.36+80+242+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:618,width:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1372px) - 64px) / 3, 200px), 1px)`,y:(componentViewport?.y||0)+0+1366.36+80+138+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-egxtrn-container\",nodeId:\"eeowv5gCr\",scopeId:\"o9IkjzBGv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bm3K2uUqj:{U3bGZMton:resolvedLinks2[1]},Zo5clKfHa:{U3bGZMton:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(BlogCard,{agEGkUiNP:QyA80AkmnmY47zChPV,height:\"100%\",id:\"eeowv5gCr\",layoutId:\"eeowv5gCr\",Q3Ur_Wm3r:toResponsiveImage(lnOYQuh6lmY47zChPV),style:{width:\"100%\"},U3bGZMton:resolvedLinks2[0],variant:convertFromEnum2(V1k1iR5ohmY47zChPV,activeLocale),width:\"100%\",ZpMmfY5n8:U88awW0jSmY47zChPV})})})})})})})})},idmY47zChPV);})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bm3K2uUqj:{y:(componentViewport?.y||0)+0+2908.36},Zo5clKfHa:{y:(componentViewport?.y||0)+0+3324.36}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:306,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2932.36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kqwsfm-container\",nodeId:\"Kk40egUxP\",scopeId:\"o9IkjzBGv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zo5clKfHa:{variant:\"S_xcfvtFw\"}},children:/*#__PURE__*/_jsx(CTA,{avChL_nn1:\"Ready to jump in?\",fghZC_R3x:\"var(--token-0f36803e-2d85-4398-b1b0-b9d610829dcc, rgb(188, 252, 0))\",height:\"100%\",id:\"Kk40egUxP\",layoutId:\"Kk40egUxP\",r2Dw14e_o:\"Start Free Trial\",rPafCF5oA:true,s35sXfIrD:\"No Credit Card Required\",style:{width:\"100%\"},variant:\"hBLsc3wbM\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bm3K2uUqj:{y:(componentViewport?.y||0)+0+3214.36},Zo5clKfHa:{y:(componentViewport?.y||0)+0+3630.36}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:489,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3238.36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yizvow-container\",nodeId:\"wLE1GOy5e\",scopeId:\"o9IkjzBGv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bm3K2uUqj:{variant:\"NXoO4I_jr\"},Zo5clKfHa:{variant:\"FIhirbVVr\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"wLE1GOy5e\",layoutId:\"wLE1GOy5e\",style:{width:\"100%\"},variant:\"aK5I5c8n7\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t0F6o.framer-lxqzif, .framer-t0F6o .framer-lxqzif { display: block; }\",\".framer-t0F6o.framer-16jrep2 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1120px; }\",\".framer-t0F6o .framer-o01z9v-container { flex: none; height: 112px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-t0F6o .framer-epi36u { align-content: center; align-items: center; background-color: var(--1uqxcis, var(--1rv4okn)); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 200px 30px 80px 30px; position: relative; width: 100%; }\",\".framer-t0F6o .framer-ge8ysc { 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; max-width: 1060px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t0F6o .framer-ge9iv1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 640px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0F6o .framer-3c1x48 { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0F6o .framer-24ntb9 { 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: min-content; }\",\".framer-t0F6o .framer-1pywfwe-container, .framer-t0F6o .framer-1sabj4s-container, .framer-t0F6o .framer-1rgvwh4-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-t0F6o .framer-1ms7jk4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-t0F6o .framer-o1ia2d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0F6o .framer-1txs6ow { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 48px; }\",\".framer-t0F6o .framer-1w5l830 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-t0F6o .framer-1mkfg8o, .framer-t0F6o .framer-y3ju8r, .framer-t0F6o .framer-zjkwfm { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-t0F6o .framer-acaoux { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-t0F6o .framer-121qnej { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-t0F6o .framer-1rdmyzg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 640px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-t0F6o .framer-lod4a6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t0F6o .framer-gfhi5x { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-t0F6o .framer-17082xy-container { flex: none; height: 2500px; max-width: 100%; position: relative; width: 100%; }\",\".framer-t0F6o .framer-1ey51my { align-content: flex-start; align-items: flex-start; background-color: #f5f5f5; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 320px; overflow: hidden; padding: 32px; position: sticky; top: 136px; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-t0F6o .framer-kgc1yn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-t0F6o .framer-1o0b7gf { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 64px 40px; position: relative; scroll-margin-top: 120px; width: 100%; }\",\".framer-t0F6o .framer-6q7d35-container { flex: none; height: auto; max-width: 1372px; position: relative; width: 100%; }\",\".framer-t0F6o .framer-1089izh { --border-bottom-width: 0px; --border-color: rgba(23, 23, 23, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-t0F6o .framer-154ya0y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1372px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0F6o .framer-cm19ri { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; max-width: 1372px; padding: 0px; position: relative; width: 100%; }\",\".framer-t0F6o .framer-j96bbe { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-t0F6o .framer-egxtrn-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-t0F6o .framer-1kqwsfm-container, .framer-t0F6o .framer-yizvow-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (color: color(display-p3 1 1 1)) { .framer-t0F6o .framer-epi36u { --1uqxcis: var(--13gyznc); --1uqxcis: var(--13gyznc); --1uqxcis: var(--13gyznc); } }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-t0F6o.framer-16jrep2, .framer-t0F6o .framer-epi36u, .framer-t0F6o .framer-ge8ysc, .framer-t0F6o .framer-ge9iv1, .framer-t0F6o .framer-3c1x48, .framer-t0F6o .framer-24ntb9, .framer-t0F6o .framer-o1ia2d, .framer-t0F6o .framer-1w5l830, .framer-t0F6o .framer-acaoux, .framer-t0F6o .framer-121qnej, .framer-t0F6o .framer-1rdmyzg, .framer-t0F6o .framer-lod4a6, .framer-t0F6o .framer-1ey51my, .framer-t0F6o .framer-1o0b7gf, .framer-t0F6o .framer-1089izh, .framer-t0F6o .framer-j96bbe { gap: 0px; } .framer-t0F6o.framer-16jrep2 > *, .framer-t0F6o .framer-epi36u > *, .framer-t0F6o .framer-1w5l830 > *, .framer-t0F6o .framer-acaoux > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-t0F6o.framer-16jrep2 > :first-child, .framer-t0F6o .framer-epi36u > :first-child, .framer-t0F6o .framer-ge8ysc > :first-child, .framer-t0F6o .framer-ge9iv1 > :first-child, .framer-t0F6o .framer-3c1x48 > :first-child, .framer-t0F6o .framer-1w5l830 > :first-child, .framer-t0F6o .framer-acaoux > :first-child, .framer-t0F6o .framer-1rdmyzg > :first-child, .framer-t0F6o .framer-1ey51my > :first-child, .framer-t0F6o .framer-1o0b7gf > :first-child, .framer-t0F6o .framer-1089izh > :first-child { margin-top: 0px; } .framer-t0F6o.framer-16jrep2 > :last-child, .framer-t0F6o .framer-epi36u > :last-child, .framer-t0F6o .framer-ge8ysc > :last-child, .framer-t0F6o .framer-ge9iv1 > :last-child, .framer-t0F6o .framer-3c1x48 > :last-child, .framer-t0F6o .framer-1w5l830 > :last-child, .framer-t0F6o .framer-acaoux > :last-child, .framer-t0F6o .framer-1rdmyzg > :last-child, .framer-t0F6o .framer-1ey51my > :last-child, .framer-t0F6o .framer-1o0b7gf > :last-child, .framer-t0F6o .framer-1089izh > :last-child { margin-bottom: 0px; } .framer-t0F6o .framer-ge8ysc > *, .framer-t0F6o .framer-1ey51my > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-t0F6o .framer-ge9iv1 > *, .framer-t0F6o .framer-1rdmyzg > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-t0F6o .framer-3c1x48 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-t0F6o .framer-24ntb9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-t0F6o .framer-24ntb9 > :first-child, .framer-t0F6o .framer-o1ia2d > :first-child, .framer-t0F6o .framer-121qnej > :first-child, .framer-t0F6o .framer-lod4a6 > :first-child, .framer-t0F6o .framer-j96bbe > :first-child { margin-left: 0px; } .framer-t0F6o .framer-24ntb9 > :last-child, .framer-t0F6o .framer-o1ia2d > :last-child, .framer-t0F6o .framer-121qnej > :last-child, .framer-t0F6o .framer-lod4a6 > :last-child, .framer-t0F6o .framer-j96bbe > :last-child { margin-right: 0px; } .framer-t0F6o .framer-o1ia2d > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-t0F6o .framer-121qnej > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-t0F6o .framer-lod4a6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-t0F6o .framer-1o0b7gf > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-t0F6o .framer-1089izh > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-t0F6o .framer-j96bbe > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,'.framer-t0F6o[data-border=\"true\"]::after, .framer-t0F6o [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: 760px) and (max-width: 1119px) { .framer-t0F6o.framer-16jrep2 { width: 760px; } .framer-t0F6o .framer-epi36u { padding: 200px 24px 80px 24px; } .framer-t0F6o .framer-acaoux { padding: 80px 24px 0px 24px; } .framer-t0F6o .framer-121qnej { gap: 40px; } .framer-t0F6o .framer-1rdmyzg { flex: 3 0 0px; max-width: unset; min-width: 480px; } .framer-t0F6o .framer-gfhi5x { min-width: 100px; } .framer-t0F6o .framer-1ey51my { max-width: 240px; padding: 24px; } .framer-t0F6o .framer-cm19ri { gap: 24px; grid-template-columns: repeat(2, minmax(200px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-t0F6o .framer-121qnej, .framer-t0F6o .framer-cm19ri { gap: 0px; } .framer-t0F6o .framer-121qnej > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-t0F6o .framer-121qnej > :first-child { margin-left: 0px; } .framer-t0F6o .framer-121qnej > :last-child { margin-right: 0px; } .framer-t0F6o .framer-cm19ri > *, .framer-t0F6o .framer-cm19ri > :first-child, .framer-t0F6o .framer-cm19ri > :last-child { margin: 0px; } }}\",\"@media (max-width: 759px) { .framer-t0F6o.framer-16jrep2 { width: 390px; } .framer-t0F6o .framer-epi36u { padding: 192px 20px 80px 20px; } .framer-t0F6o .framer-acaoux { padding: 80px 20px 0px 20px; } .framer-t0F6o .framer-121qnej { flex-direction: column; } .framer-t0F6o .framer-1rdmyzg { flex: none; order: 1; width: 100%; } .framer-t0F6o .framer-1ey51my { flex: none; max-width: unset; order: 0; padding: 24px; position: relative; top: unset; width: 100%; } .framer-t0F6o .framer-1o0b7gf { gap: 80px; padding: 64px 20px 120px 20px; } .framer-t0F6o .framer-1089izh { padding: 80px 16px 80px 16px; } .framer-t0F6o .framer-154ya0y { flex-direction: column; gap: 64px; justify-content: flex-start; } .framer-t0F6o .framer-cm19ri { grid-template-columns: repeat(1, minmax(200px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-t0F6o .framer-121qnej, .framer-t0F6o .framer-1o0b7gf, .framer-t0F6o .framer-154ya0y { gap: 0px; } .framer-t0F6o .framer-121qnej > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-t0F6o .framer-121qnej > :first-child, .framer-t0F6o .framer-1o0b7gf > :first-child, .framer-t0F6o .framer-154ya0y > :first-child { margin-top: 0px; } .framer-t0F6o .framer-121qnej > :last-child, .framer-t0F6o .framer-1o0b7gf > :last-child, .framer-t0F6o .framer-154ya0y > :last-child { margin-bottom: 0px; } .framer-t0F6o .framer-1o0b7gf > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-t0F6o .framer-154ya0y > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21438\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Bm3K2uUqj\":{\"layout\":[\"fixed\",\"auto\"]},\"Zo5clKfHa\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"aqao1CMK8\":{\"pattern\":\":aqao1CMK8\",\"name\":\"1\"},\"M19yj2LrB\":{\"pattern\":\":M19yj2LrB\",\"name\":\"subscribe\"}}\n * @framerResponsiveScreen\n */const Framero9IkjzBGv=withCSS(Component,css,\"framer-t0F6o\");export default Framero9IkjzBGv;Framero9IkjzBGv.displayName=\"Blog Detail\";Framero9IkjzBGv.defaultProps={height:21438,width:1120};addFonts(Framero9IkjzBGv,[{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:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"}]},...HeaderFonts,...TagFonts,...EmbedFonts,...Table_of_ContentFonts,...NewsletterSubscribeFonts,...ButtonFonts,...BlogCardFonts,...CTAFonts,...FooterFonts,...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),...componentPresets.fonts?.[\"s_aNVxlEL\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"s_aNVxlEL\"]):[],...componentPresets.fonts?.[\"KakJsG8zv\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"KakJsG8zv\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framero9IkjzBGv\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"21438\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1120\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Bm3K2uUqj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zo5clKfHa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"aqao1CMK8\\\":{\\\"pattern\\\":\\\":aqao1CMK8\\\",\\\"name\\\":\\\"1\\\"},\\\"M19yj2LrB\\\":{\\\"pattern\\\":\\\":M19yj2LrB\\\",\\\"name\\\":\\\"subscribe\\\"}}\"}},\"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", "setFullWidth", "Component", "props", "u", "l", "p", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "HeaderFonts", "getFonts", "FTzFtKDpg_default", "TagFonts", "HYTBtRi59_default", "RichTextSetFullWidthgfhi5x", "withCodeBoundaryForOverrides", "RichText", "setFullWidth", "EmbedFonts", "Embed", "Table_of_ContentFonts", "Table_of_Content", "NewsletterSubscribeFonts", "aBthmOpF2_default", "ButtonFonts", "ARD1H_alj_default", "BlogCardFonts", "z2RYmwrT_default", "CTAFonts", "APTx8DDNr_default", "FooterFonts", "ZohlLwAZW_default", "breakpoints", "serializationHash", "variantClassNames", "convertFromEnum", "value", "activeLocale", "toString", "convertFromEnum1", "isSet", "toResponsiveImage", "toDateString", "options", "date", "display", "dateOptions", "fallbackLocale", "locale", "equals", "a", "b", "convertFromEnum2", "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", "YqXeuoBEL_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "pgeyXwQYm", "QyA80Akmn", "wGJEqIlOj", "Kxof7TMwq", "WEFglBt3d", "mcEHtkbD0", "YCh7PU1Ff", "V1k1iR5ohmY47zChPV", "lnOYQuh6lmY47zChPV", "QyA80AkmnmY47zChPV", "U88awW0jSmY47zChPV", "YCh7PU1FfmY47zChPV", "idmY47zChPV", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "fillColor", "visible", "textContent", "enumToDisplayNameFunctions", "activeLocaleCode", "useLocaleCode", "textContent1", "elementId", "useRouteElementId", "ref1", "visible1", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "PropertyOverrides2", "FTzFtKDpg_default", "clampRGB", "HYTBtRi59_default", "RichText", "x", "getLoadingLazyAtYPosition", "Image2", "ComponentPresetsProvider", "RichTextSetFullWidthgfhi5x", "Embed", "Table_of_Content", "aBthmOpF2_default", "resolvedLinks1", "ARD1H_alj_default", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks2", "z2RYmwrT_default", "APTx8DDNr_default", "ZohlLwAZW_default", "css", "Framero9IkjzBGv", "withCSS", "o9IkjzBGv_default", "addFonts", "HeaderFonts", "TagFonts", "EmbedFonts", "Table_of_ContentFonts", "NewsletterSubscribeFonts", "ButtonFonts", "BlogCardFonts", "CTAFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
