{"version":3,"file":"enxo8U6JBveuAhKrTmrTpw8gmTR0QIMoHggXu57i2Io.CNDXrOTx.mjs","names":["props","v0","v1","__FramerMetadata__","getLocalizedValue","valuesByLocaleId","localizedValues","__FramerMetadata__","getLocalizedValue","valuesByLocaleId","localizedValues","addPropertyOverrides","Material","TextClipFonts","TextClip","enabledGestures","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","props","createLayoutDependency","Component","className","css","serializationHash","variantClassNames","transition1","Transition","Variants","getProps","props","createLayoutDependency","Component","className","css","ButtonsPrevNextButton2Fonts","ButtonsPrevNextButton2","CategoryElementsCategoryLink","TextClip","serializationHash","variantClassNames","transition1","Transition","Variants","getProps","props","createLayoutDependency","Component","className","css","props","_Fragment","serializationHash","variantClassNames","transition1","getProps","props","Component","className","css","fonts","css","className","NavBreadcrumbs","Image","ButtonsPrevNextButton2","ButtonsShareButtons","NavBlogSidePanel","SectionsPopular","BannersBlogBanner","props","Blog","Authors","metadata","className","PropertyOverrides","_Fragment","idy1TUAXAox","UxKnQnklLy1TUAXAox","XHu3vCh1Gy1TUAXAox","idobJBVqXPA","UxKnQnklLobJBVqXPA","XHu3vCh1GobJBVqXPA","css"],"sources":["https:/framerusercontent.com/modules/FETvxoPGEVSPooTL3Ciz/UMAaLFo3Be6OpUT1xG3i/Test.js","https:/framerusercontent.com/modules/rxXmp3GTNrC0H3nMoIUg/5De6C59KIa39kKphEUZg/e21PqzN2x-0.js","https:/framerusercontent.com/modules/rxXmp3GTNrC0H3nMoIUg/5De6C59KIa39kKphEUZg/e21PqzN2x.js","https:/framerusercontent.com/modules/kYjDV2LbQ2UTw4Wm7Oje/gNMVrWIN6wBv18xX9Zno/WlrsPnH35-0.js","https:/framerusercontent.com/modules/kYjDV2LbQ2UTw4Wm7Oje/gNMVrWIN6wBv18xX9Zno/WlrsPnH35.js","https:/framerusercontent.com/modules/I3Nw9tIN855pvsB4H7IS/yaMHyURkyCX1RYNtL0zY/WlrsPnH35.js","https:/framerusercontent.com/modules/bx0dxIre0DpQxY38mxAP/U129NUCc5Z2veTI46czT/x1a2lFNyj.js","https:/framerusercontent.com/modules/hJPQJDhlyGSCUUEXjXWx/fefqbWbga3nxMHLzhhEV/e21PqzN2x.js","https:/framerusercontent.com/modules/y8ckmFmPFgZ5Nzn1PrR2/e5Fa41jFxd3ezoZBjy3n/SocialShare.js","https:/framerusercontent.com/modules/wxF8RPMtzJn4L5VnLhMA/WWcKca8gsa59zeFJMcZh/KXB9zBxP2.js","https:/framerusercontent.com/modules/OsJdbHYIFnsghBqHqnGW/RexWW0ZQieZwftbmMrPi/iE9xHuxB_.js","https:/framerusercontent.com/modules/zGLhgLSjloo5tGTZ8Rek/GCPgw12vO0sZgC02CTe7/bMYVUK6qH.js","https:/framerusercontent.com/modules/svYoQBfi3XtgyYtxwStb/cTgpPHnW7SKdE5p0PQwb/bMYVUK6qH.js"],"sourcesContent":["import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";export function TextClip(props){const{text,lineCount,textStyle,letterMode,maxCharacters}=props;let lineClampStyle={};if(letterMode){lineClampStyle={display:\"block\",overflow:\"hidden\",textOverflow:\"ellipsis\",whiteSpace:\"nowrap\",width:`calc(${maxCharacters} * 0.6ch + 1.5ch)`};}else{lineClampStyle={display:\"-webkit-box\",WebkitLineClamp:lineCount,WebkitBoxOrient:\"vertical\",overflow:\"hidden\",textOverflow:\"ellipsis\",textAlign:textStyle.textAlign};}const transformStyle={textTransform:textStyle.textTransform};const containerStyle={display:\"flex\",justifyContent:getJustifyContent(textStyle.textAlign),alignItems:getAlignItems(textStyle.textAlign),overflow:\"visible\"};function getJustifyContent(textAlign){switch(textAlign){case\"center\":return\"center\";case\"right\":return\"flex-end\";case\"left\":default:return\"flex-start\";}}function getAlignItems(textAlign){switch(textAlign){case\"center\":return\"center\";case\"right\":case\"left\":default:return\"flex-start\";}}return /*#__PURE__*/_jsx(motion.div,{style:{...containerStyle},children:/*#__PURE__*/_jsx(motion.div,{style:{...lineClampStyle,...textStyle,...transformStyle,fontFamily:textStyle.font},children:text})});}addPropertyControls(TextClip,{text:{type:ControlType.String,defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\"},letterMode:{type:ControlType.Boolean,title:\"Letter Mode\",defaultValue:false},maxCharacters:{type:ControlType.Number,title:\"Max Characters\",defaultValue:20,min:1,step:1,displayStepper:true,hidden(props){return!props.letterMode;}},lineCount:{type:ControlType.Number,defaultValue:1,min:1,displayStepper:true,step:1,hidden(props){return props.letterMode;}},textStyle:{type:ControlType.Object,controls:{font:{type:ControlType.String,defaultValue:\"Inter\"},color:{type:ControlType.Color,defaultValue:\"#000\"},fontSize:{type:ControlType.Number,defaultValue:16},fontWeight:{type:ControlType.Number,defaultValue:400,displayStepper:true,step:100},lineHeight:{type:ControlType.Number,defaultValue:1.5,displayStepper:true,step:.1},letterSpacing:{type:ControlType.Number,defaultValue:0,displayStepper:true,step:.1},textAlign:{type:ControlType.Enum,options:[\"left\",\"center\",\"right\"],defaultValue:\"left\"},textTransform:{type:ControlType.Enum,options:[\"none\",\"capitalize\",\"lowercase\",\"uppercase\"],defaultValue:\"none\",title:\"Transform\"}}}});export default TextClip;\nexport const __FramerMetadata__ = {\"exports\":{\"TextClip\":{\"type\":\"reactComponent\",\"name\":\"TextClip\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"TextClip\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Test.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=\"Blog\";export const v1=\"Artigo anterior\";export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133)))\"},children:\"/\"})});export const v3=\"Inter\";\nexport const __FramerMetadata__ = {\"exports\":{\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (2f96024)\nimport*as localizedValues from\"./e21PqzN2x-0.js\";const valuesByLocaleId={QT0n2uvgH:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"flecha\";export const v1=\"Inter\";\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (2f96024)\nimport*as localizedValues from\"./WlrsPnH35-0.js\";const valuesByLocaleId={QT0n2uvgH:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (2f96024)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}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 TextClip from\"https://framerusercontent.com/modules/FETvxoPGEVSPooTL3Ciz/UMAaLFo3Be6OpUT1xG3i/Test.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/kYjDV2LbQ2UTw4Wm7Oje/gNMVrWIN6wBv18xX9Zno/WlrsPnH35.js\";const MaterialFonts=getFonts(Material);const TextClipFonts=getFonts(TextClip);const enabledGestures={QBukRjVZ0:{hover:true},Tf9qb5FLC:{hover:true},vFdMdLmbR:{hover:true},wvYfJjV5y:{hover:true},ykSb1eRxk:{hover:true}};const cycleOrder=[\"ykSb1eRxk\",\"vFdMdLmbR\",\"Tf9qb5FLC\",\"QBukRjVZ0\",\"wvYfJjV5y\"];const serializationHash=\"framer-09JKm\";const variantClassNames={QBukRjVZ0:\"framer-v-twbc5j\",Tf9qb5FLC:\"framer-v-ejntcz\",vFdMdLmbR:\"framer-v-xvy3oj\",wvYfJjV5y:\"framer-v-v6glt0\",ykSb1eRxk:\"framer-v-18idqtk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile - next\":\"wvYfJjV5y\",\"Mobile - previous\":\"QBukRjVZ0\",Back:\"Tf9qb5FLC\",Next:\"vFdMdLmbR\",Previous:\"ykSb1eRxk\"};const getProps=({height,id,link,previousNext,title,width,...props})=>{return{...props,J0GTsHFPI:title??props.J0GTsHFPI??\"Article title should exist right here\",owNPiEM_V:link??props.owNPiEM_V,variant:humanReadableVariantMap[props.variant]??props.variant??\"ykSb1eRxk\",y0FtBZycb:previousNext??props.y0FtBZycb??\"Previous article\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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{style,className,layoutId,variant,J0GTsHFPI,owNPiEM_V,y0FtBZycb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ykSb1eRxk\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"Tf9qb5FLC-hover\")return false;if(baseVariant===\"Tf9qb5FLC\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:owNPiEM_V,motionChild:true,nodeId:\"ykSb1eRxk\",scopeId:\"WlrsPnH35\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-18idqtk\",className,classNames)} framer-1tk242x`,\"data-border\":true,\"data-framer-name\":\"Previous\",layoutDependency:layoutDependency,layoutId:\"ykSb1eRxk\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-27871916-ce5c-4bcb-8c42-24334299f0b3, rgb(230, 230, 230))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-1d77b891-7947-4ac5-9ad2-67828441cbd6, rgb(255, 255, 255))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 3px 6px 0px rgba(0, 0, 0, 0.05), inset 0px -3px 2px 0px var(--token-cb8c315f-aa79-46d0-9894-796d4f3c486e, rgb(244, 244, 244)), inset 0px 0.6021873017743928px 0.36131238106463576px -1.1666666666666665px rgba(255, 255, 255, 0.1), inset 0px 2.288533303243457px 1.3731199819460744px -2.333333333333333px rgba(255, 255, 255, 0.09), inset 0px 10px 6.000000000000001px -3.5px rgba(255, 255, 255, 0.05)\",...style},variants:{\"QBukRjVZ0-hover\":{backgroundColor:\"var(--token-cb8c315f-aa79-46d0-9894-796d4f3c486e, rgb(244, 244, 244))\"},\"vFdMdLmbR-hover\":{backgroundColor:\"var(--token-cb8c315f-aa79-46d0-9894-796d4f3c486e, rgb(244, 244, 244))\"},\"wvYfJjV5y-hover\":{backgroundColor:\"var(--token-cb8c315f-aa79-46d0-9894-796d4f3c486e, rgb(244, 244, 244))\"},\"ykSb1eRxk-hover\":{backgroundColor:\"var(--token-cb8c315f-aa79-46d0-9894-796d4f3c486e, rgb(244, 244, 244))\"},Tf9qb5FLC:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\"}},...addPropertyOverrides({\"QBukRjVZ0-hover\":{\"data-framer-name\":undefined},\"Tf9qb5FLC-hover\":{\"data-framer-name\":undefined},\"vFdMdLmbR-hover\":{\"data-framer-name\":undefined},\"wvYfJjV5y-hover\":{\"data-framer-name\":undefined},\"ykSb1eRxk-hover\":{\"data-framer-name\":undefined},QBukRjVZ0:{\"data-framer-name\":\"Mobile - previous\"},Tf9qb5FLC:{\"data-framer-name\":\"Back\"},vFdMdLmbR:{\"data-framer-name\":\"Next\"},wvYfJjV5y:{\"data-framer-name\":\"Mobile - next\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6vmiac\",layoutDependency:layoutDependency,layoutId:\"nJWPI8A5u\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mbgm9x-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ij903W2sC-container\",nodeId:\"ij903W2sC\",rendersWithMotion:true,scopeId:\"WlrsPnH35\",style:{rotate:0},variants:{\"ykSb1eRxk-hover\":{rotate:0},QBukRjVZ0:{rotate:0},Tf9qb5FLC:{rotate:0},vFdMdLmbR:{rotate:180},wvYfJjV5y:{rotate:0}},children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-fe9ded06-f608-4919-9137-825f8ed57e50, rgb(125, 125, 125))\",height:\"100%\",iconSearch:getLocalizedValue(\"v0\",activeLocale)??\"arrow\",iconSelection:\"ArrowBackIos\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"ij903W2sC\",layoutId:\"ij903W2sC\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"Tf9qb5FLC-hover\":{color:\"var(--token-fd2a9202-3b01-4729-831f-86b0b036c94c, rgb(17, 17, 17))\"},Tf9qb5FLC:{color:\"var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133))\"},wvYfJjV5y:{iconSelection:\"ArrowForwardIos\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m6ofww\",layoutDependency:layoutDependency,layoutId:\"eVvSyFlyz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d21ac01e-dce3-4822-b3f1-b0798f091443, rgb(84, 84, 84)))\"},children:\"Previous article\"})}),className:\"framer-wu2n6t\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"EeXELF0yG\",style:{\"--extracted-r6o4lv\":\"var(--token-d21ac01e-dce3-4822-b3f1-b0798f091443, rgb(84, 84, 84))\"},text:y0FtBZycb,variants:{\"Tf9qb5FLC-hover\":{\"--extracted-r6o4lv\":\"var(--token-fd2a9202-3b01-4729-831f-86b0b036c94c, rgb(17, 17, 17))\"},Tf9qb5FLC:{\"--extracted-r6o4lv\":\"var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"Tf9qb5FLC-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd2a9202-3b01-4729-831f-86b0b036c94c, rgb(17, 17, 17)))\"},children:\"Article title should exist right here\"})})},QBukRjVZ0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d21ac01e-dce3-4822-b3f1-b0798f091443, rgb(84, 84, 84)))\"},children:\"Previous\"})})},Tf9qb5FLC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133)))\"},children:\"Article title should exist right here\"})}),text:J0GTsHFPI},vFdMdLmbR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d21ac01e-dce3-4822-b3f1-b0798f091443, rgb(84, 84, 84)))\"},children:\"Next article\"})})},wvYfJjV5y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d21ac01e-dce3-4822-b3f1-b0798f091443, rgb(84, 84, 84)))\"},children:\"Next\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12vay9x-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"aSOb3WEHX-container\",nodeId:\"aSOb3WEHX\",rendersWithMotion:true,scopeId:\"WlrsPnH35\",children:/*#__PURE__*/_jsx(TextClip,{height:\"100%\",id:\"aSOb3WEHX\",layoutId:\"aSOb3WEHX\",letterMode:true,lineCount:1,maxCharacters:50,style:{width:\"100%\"},text:J0GTsHFPI,textStyle:{color:\"var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133))\",font:getLocalizedValue(\"v1\",activeLocale)??\"Inter\",fontSize:12,fontWeight:600,letterSpacing:0,lineHeight:1.5,textAlign:\"right\",textTransform:\"none\"},width:\"100%\",...addPropertyOverrides({vFdMdLmbR:{textStyle:{color:\"var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133))\",font:getLocalizedValue(\"v1\",activeLocale)??\"Inter\",fontSize:12,fontWeight:600,letterSpacing:0,lineHeight:1.5,textAlign:\"left\",textTransform:\"none\"}},wvYfJjV5y:{textStyle:{color:\"var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133))\",font:getLocalizedValue(\"v1\",activeLocale)??\"Inter\",fontSize:12,fontWeight:600,letterSpacing:0,lineHeight:1.5,textAlign:\"left\",textTransform:\"none\"}}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-09JKm.framer-1tk242x, .framer-09JKm .framer-1tk242x { display: block; }\",\".framer-09JKm.framer-18idqtk { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: 377px; }\",\".framer-09JKm .framer-6vmiac { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 24px; }\",\".framer-09JKm .framer-1mbgm9x-container { flex: none; height: 16px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 16px; z-index: 1; }\",\".framer-09JKm .framer-1m6ofww { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-09JKm .framer-wu2n6t { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-09JKm .framer-12vay9x-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-09JKm.framer-v-xvy3oj .framer-6vmiac, .framer-09JKm.framer-v-xvy3oj .framer-12vay9x-container, .framer-09JKm.framer-v-v6glt0 .framer-6vmiac { order: 1; }\",\".framer-09JKm.framer-v-xvy3oj .framer-1m6ofww, .framer-09JKm.framer-v-v6glt0 .framer-1m6ofww { align-content: flex-start; align-items: flex-start; order: 0; }\",\".framer-09JKm.framer-v-xvy3oj .framer-wu2n6t { order: 0; }\",\".framer-09JKm.framer-v-ejntcz.framer-18idqtk { gap: 4px; justify-content: flex-start; padding: 0px; width: min-content; }\",\".framer-09JKm.framer-v-ejntcz .framer-6vmiac { height: var(--framer-aspect-ratio-supported, 16px); width: 16px; }\",\".framer-09JKm.framer-v-ejntcz .framer-1m6ofww { flex: none; width: min-content; }\",\".framer-09JKm.framer-v-ejntcz .framer-wu2n6t { overflow: visible; white-space: pre; width: auto; }\",\".framer-09JKm.framer-v-twbc5j.framer-18idqtk, .framer-09JKm.framer-v-v6glt0.framer-18idqtk { gap: 12px; justify-content: flex-start; padding: 12px 12px 12px 24px; width: 150px; }\",\".framer-09JKm.framer-v-twbc5j .framer-1m6ofww { align-content: flex-start; align-items: flex-start; }\",\".framer-09JKm.framer-v-18idqtk.hover .framer-1mbgm9x-container { left: -6px; }\",\".framer-09JKm.framer-v-xvy3oj.hover .framer-1mbgm9x-container { left: unset; right: -6px; }\",\".framer-09JKm.framer-v-twbc5j.hover .framer-1mbgm9x-container { left: -4px; }\",\".framer-09JKm.framer-v-v6glt0.hover .framer-1mbgm9x-container { left: unset; right: -4px; }\",\".framer-09JKm.framer-v-ejntcz.hover .framer-1mbgm9x-container { bottom: 0px; height: unset; left: -5px; top: 0px; }\",'.framer-09JKm[data-border=\"true\"]::after, .framer-09JKm [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 68\n * @framerIntrinsicWidth 377\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vFdMdLmbR\":{\"layout\":[\"fixed\",\"auto\"]},\"Tf9qb5FLC\":{\"layout\":[\"auto\",\"auto\"]},\"QBukRjVZ0\":{\"layout\":[\"fixed\",\"auto\"]},\"wvYfJjV5y\":{\"layout\":[\"fixed\",\"auto\"]},\"PKVB7O_Qj\":{\"layout\":[\"fixed\",\"auto\"]},\"tbtsUsIOj\":{\"layout\":[\"fixed\",\"auto\"]},\"aqp5dSVvg\":{\"layout\":[\"fixed\",\"auto\"]},\"fDeLwFIcc\":{\"layout\":[\"fixed\",\"auto\"]},\"X4Eus3aeu\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"J0GTsHFPI\":\"title\",\"owNPiEM_V\":\"link\",\"y0FtBZycb\":\"previousNext\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerWlrsPnH35=withCSS(Component,css,\"framer-09JKm\");export default FramerWlrsPnH35;FramerWlrsPnH35.displayName=\"Buttons/Prev-Next button 2\";FramerWlrsPnH35.defaultProps={height:68,width:377};addPropertyControls(FramerWlrsPnH35,{variant:{options:[\"ykSb1eRxk\",\"vFdMdLmbR\",\"Tf9qb5FLC\",\"QBukRjVZ0\",\"wvYfJjV5y\"],optionTitles:[\"Previous\",\"Next\",\"Back\",\"Mobile - previous\",\"Mobile - next\"],title:\"Variant\",type:ControlType.Enum},J0GTsHFPI:{defaultValue:\"Article title should exist right here\",displayTextArea:false,title:\"Title\",type:ControlType.String},owNPiEM_V:{title:\"Link\",type:ControlType.Link},y0FtBZycb:{defaultValue:\"Previous article\",displayTextArea:false,placeholder:\"Previous article\",title:\"Previous/Next\",type:ControlType.String}});addFonts(FramerWlrsPnH35,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...MaterialFonts,...TextClipFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWlrsPnH35\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"377\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"J0GTsHFPI\\\":\\\"title\\\",\\\"owNPiEM_V\\\":\\\"link\\\",\\\"y0FtBZycb\\\":\\\"previousNext\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vFdMdLmbR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Tf9qb5FLC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QBukRjVZ0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wvYfJjV5y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PKVB7O_Qj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tbtsUsIOj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aqp5dSVvg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fDeLwFIcc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"X4Eus3aeu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"68\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (d65f646)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={hv1XtcOgz:{hover:true}};const serializationHash=\"framer-cpLr5\";const variantClassNames={hv1XtcOgz:\"framer-v-pbblcd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({category,height,id,link,width,...props})=>{return{...props,dKMR_Q6o2:category??props.dKMR_Q6o2??\"Announcements\",v80webg8D:link??props.v80webg8D};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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{style,className,layoutId,variant,dKMR_Q6o2,v80webg8D,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"hv1XtcOgz\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:v80webg8D,motionChild:true,nodeId:\"hv1XtcOgz\",openInNewTab:false,scopeId:\"x1a2lFNyj\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-pbblcd\",className,classNames)} framer-p1g3bx`,\"data-framer-name\":\"Announcements\",layoutDependency:layoutDependency,layoutId:\"hv1XtcOgz\",ref:refBinding,style:{...style},...addPropertyOverrides({\"hv1XtcOgz-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Announcements\"})})}),className:\"framer-1i4k44c\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],layoutDependency:layoutDependency,layoutId:\"Lv9P6fSmf\",style:{\"--extracted-r6o4lv\":\"var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133))\"},text:dKMR_Q6o2,variants:{\"hv1XtcOgz-hover\":{\"--extracted-r6o4lv\":\"var(--token-fd2a9202-3b01-4729-831f-86b0b036c94c, rgb(17, 17, 17))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"hv1XtcOgz-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd2a9202-3b01-4729-831f-86b0b036c94c, rgb(17, 17, 17)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Announcements\"})})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cpLr5.framer-p1g3bx, .framer-cpLr5 .framer-p1g3bx { display: block; }\",\".framer-cpLr5.framer-pbblcd { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-cpLr5 .framer-1i4k44c { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Vp1r31yiU\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"dKMR_Q6o2\":\"category\",\"v80webg8D\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerx1a2lFNyj=withCSS(Component,css,\"framer-cpLr5\");export default Framerx1a2lFNyj;Framerx1a2lFNyj.displayName=\"Category Elements/Category Link\";Framerx1a2lFNyj.defaultProps={height:200,width:200};addPropertyControls(Framerx1a2lFNyj,{dKMR_Q6o2:{defaultValue:\"Announcements\",displayTextArea:false,title:\"Category\",type:ControlType.String},v80webg8D:{title:\"Link\",type:ControlType.Link}});addFonts(Framerx1a2lFNyj,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerx1a2lFNyj\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Vp1r31yiU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"200\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"dKMR_Q6o2\\\":\\\"category\\\",\\\"v80webg8D\\\":\\\"link\\\"}\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./x1a2lFNyj.map","// Generated by Framer (2f96024)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import TextClip from\"https://framerusercontent.com/modules/FETvxoPGEVSPooTL3Ciz/UMAaLFo3Be6OpUT1xG3i/Test.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/rxXmp3GTNrC0H3nMoIUg/5De6C59KIa39kKphEUZg/e21PqzN2x.js\";import ButtonsPrevNextButton2 from\"https://framerusercontent.com/modules/I3Nw9tIN855pvsB4H7IS/yaMHyURkyCX1RYNtL0zY/WlrsPnH35.js\";import CategoryElementsCategoryLink from\"https://framerusercontent.com/modules/bx0dxIre0DpQxY38mxAP/U129NUCc5Z2veTI46czT/x1a2lFNyj.js\";const ButtonsPrevNextButton2Fonts=getFonts(ButtonsPrevNextButton2);const CategoryElementsCategoryLinkFonts=getFonts(CategoryElementsCategoryLink);const TextClipFonts=getFonts(TextClip);const serializationHash=\"framer-9XToi\";const variantClassNames={WdfVpMa6d:\"framer-v-1lt3vcr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({category,categoryLink,height,id,metaTitle,width,...props})=>{return{...props,LxTVRmRM6:categoryLink??props.LxTVRmRM6,vyizkn0zf:category??props.vyizkn0zf??\"Announcements\",XGUCd810G:metaTitle??props.XGUCd810G??\"Wisdom's GreenTech Initiative for Sustainability\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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{style,className,layoutId,variant,XGUCd810G,LxTVRmRM6,vyizkn0zf,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"WdfVpMa6d\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,\"aria-label\":\"Breadcrumbs\",className:cx(scopingClassNames,\"framer-1lt3vcr\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"WdfVpMa6d\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MdXOtnAew\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xk40lc-container\",layoutDependency:layoutDependency,layoutId:\"O62oYXUKU-container\",nodeId:\"O62oYXUKU\",rendersWithMotion:true,scopeId:\"e21PqzN2x\",children:/*#__PURE__*/_jsx(ButtonsPrevNextButton2,{height:\"100%\",id:\"O62oYXUKU\",J0GTsHFPI:getLocalizedValue(\"v0\",activeLocale)??\"Blog\",layoutId:\"O62oYXUKU\",owNPiEM_V:resolvedLinks[0],variant:\"Tf9qb5FLC\",width:\"100%\",y0FtBZycb:getLocalizedValue(\"v1\",activeLocale)??\"Previous article\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133)))\"},children:\"/\"})}),className:\"framer-1huwyvb\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"Mv97kBwfH\",style:{\"--extracted-r6o4lv\":\"var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133))\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uniw4w-container\",layoutDependency:layoutDependency,layoutId:\"rQ0xXxDiU-container\",nodeId:\"rQ0xXxDiU\",rendersWithMotion:true,scopeId:\"e21PqzN2x\",children:/*#__PURE__*/_jsx(CategoryElementsCategoryLink,{dKMR_Q6o2:vyizkn0zf,height:\"100%\",id:\"rQ0xXxDiU\",layoutId:\"rQ0xXxDiU\",v80webg8D:LxTVRmRM6,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133)))\"},children:\"/\"})}),className:\"framer-16u660r\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"x35ufVvU7\",style:{\"--extracted-r6o4lv\":\"var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133))\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pqhb69-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ksDBgrs2n-container\",nodeId:\"ksDBgrs2n\",rendersWithMotion:true,scopeId:\"e21PqzN2x\",children:/*#__PURE__*/_jsx(TextClip,{height:\"100%\",id:\"ksDBgrs2n\",layoutId:\"ksDBgrs2n\",letterMode:true,lineCount:1,maxCharacters:35,text:XGUCd810G,textStyle:{color:\"rgb(0, 0, 0)\",font:getLocalizedValue(\"v3\",activeLocale)??\"Inter\",fontSize:16,fontWeight:700,letterSpacing:0,lineHeight:1.5,textAlign:\"left\",textTransform:\"none\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9XToi.framer-1sl1z9r, .framer-9XToi .framer-1sl1z9r { display: block; }\",\".framer-9XToi.framer-1lt3vcr { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 632px; }\",\".framer-9XToi .framer-xk40lc-container, .framer-9XToi .framer-1uniw4w-container, .framer-9XToi .framer-pqhb69-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-9XToi .framer-1huwyvb, .framer-9XToi .framer-16u660r { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 632\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"XGUCd810G\":\"metaTitle\",\"LxTVRmRM6\":\"categoryLink\",\"vyizkn0zf\":\"category\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framere21PqzN2x=withCSS(Component,css,\"framer-9XToi\");export default Framere21PqzN2x;Framere21PqzN2x.displayName=\"Nav/Breadcrumbs\";Framere21PqzN2x.defaultProps={height:25,width:632};addPropertyControls(Framere21PqzN2x,{XGUCd810G:{defaultValue:\"Wisdom's GreenTech Initiative for Sustainability\",title:\"Meta title\",type:ControlType.String},LxTVRmRM6:{title:\"Category Link\",type:ControlType.Link},vyizkn0zf:{defaultValue:\"Announcements\",displayTextArea:false,title:\"Category\",type:ControlType.String}});addFonts(Framere21PqzN2x,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...ButtonsPrevNextButton2Fonts,...CategoryElementsCategoryLinkFonts,...TextClipFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framere21PqzN2x\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"25\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"XGUCd810G\\\":\\\"metaTitle\\\",\\\"LxTVRmRM6\\\":\\\"categoryLink\\\",\\\"vyizkn0zf\\\":\\\"category\\\"}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"632\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType,Color}from\"framer\";const BRAND_COLORS={facebook:\"#0866FF\",twitter:\"#000\",linkedIn:\"#0A66C2\",reddit:\"#FF4500\",pinterest:\"#BD081C\",whatsApp:\"#25D366\",email:\"#000\",copyUrl:\"#000\"};export const PLATFORM_NAMES=[\"Facebook\",\"Twitter / X\",\"LinkedIn\",\"Reddit\",\"Pinterest\",\"WhatsApp\",\"Email\",\"Copy URL\"];/**\n * @framerDisableUnlink\n */export default function SocialShare(props){const{type,colors,iconSize,border}=props;const[shareUrl,setShareUrl]=useState(props.shareLink==\"url\"?props.shareUrl:\"\");const encodedUrl=encodeURIComponent(shareUrl);const borderRadius=props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`;useEffect(()=>{if(props.shareLink==\"currentPage\"){setShareUrl(window.location.href);}},[]);let linkUrl=\"\";switch(type){case\"facebook\":linkUrl=`https://www.facebook.com/sharer/sharer.php?u=${encodedUrl}`;break;case\"twitter\":linkUrl=`https://twitter.com/share?url=${encodedUrl}`;break;case\"linkedIn\":linkUrl=`https://www.linkedin.com/sharing/share-offsite/?url=${encodedUrl}`;break;case\"reddit\":linkUrl=`https://www.reddit.com/submit?url=${encodedUrl}`;break;case\"pinterest\":linkUrl=`https://pinterest.com/pin/create/link/?url=${encodedUrl}`;break;case\"whatsApp\":linkUrl=`https://wa.me/?text=${encodedUrl}`;break;case\"email\":linkUrl=`mailto:?body=${encodedUrl}`;break;}const copyToClipboard=()=>{navigator.clipboard.writeText(shareUrl).then(()=>{alert(\"URL copied to clipboard!\");}).catch(err=>{alert(\"Failed to copy URL\");});};return /*#__PURE__*/_jsxs(\"a\",{\"data-superfields\":true,href:linkUrl.length?linkUrl:undefined,target:props.newTab?\"_blank\":\"_self\",rel:props.newTab?\"noopener noreferrer\":undefined,\"aria-label\":PLATFORM_NAMES[type],onClick:type==\"copyUrl\"&&copyToClipboard,style:{display:\"flex\",alignItems:\"center\",justifyContent:\"center\",backgroundColor:colors.fillColorType==\"custom\"?colors.fillColor:Color.toString(Color.alpha(Color(BRAND_COLORS[type]),colors.fillOpacity)),borderRadius:borderRadius,padding:props.paddingIsMixed?`${props.paddingTop}px ${props.paddingRight}px ${props.paddingBottom}px ${props.paddingLeft}px`:`${props.padding}px`,cursor:\"pointer\",...props.style},children:[/*#__PURE__*/_jsx(SocialIcon,{type:type,size:iconSize,color:colors.iconColorType==\"custom\"?colors.iconColor:BRAND_COLORS[type],customIcon:props.customIcon}),border&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,borderWidth:border.widthIsMixed?`${border.widthTop}px ${border.widthRight}px ${border.widthBottom}px ${border.widthLeft}px`:`${border.width}px`,borderStyle:border.style,borderColor:border.colorType==\"custom\"?border.color:BRAND_COLORS[type],borderRadius:borderRadius,pointerEvents:\"none\"}})]});}SocialShare.displayName=\"Social Share\";addPropertyControls(SocialShare,{shareLink:{type:ControlType.Enum,defaultValue:\"currentPage\",options:[\"currentPage\",\"url\"],optionTitles:[\"Current Page\",\"Custom URL\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},shareUrl:{type:ControlType.String,defaultValue:\"\",placeholder:\"https://example.com\",title:\"URL\",preventLocalization:true,hidden:props=>props.shareLink!=\"url\"},type:{type:ControlType.Enum,defaultValue:\"facebook\",options:[\"facebook\",\"twitter\",\"linkedIn\",\"reddit\",\"pinterest\",\"whatsApp\",\"email\",\"copyUrl\"],optionTitles:PLATFORM_NAMES,title:\"Platform\"},newTab:{type:ControlType.Boolean,defaultValue:true},colors:{type:ControlType.Object,buttonTitle:\"Icon & Fill\",controls:{iconColorType:{type:ControlType.Enum,defaultValue:\"custom\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Icon Color\"},iconColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.iconColorType!=\"custom\",title:\" \"},fillColorType:{type:ControlType.Enum,defaultValue:\"brand\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Fill\"},fillColor:{type:ControlType.Color,defaultValue:\"#000\",optional:true,hidden:props=>props.fillColorType!=\"custom\",title:\" \"},fillOpacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01,hidden:props=>props.fillColorType!=\"brand\"}}},iconSize:{type:ControlType.Number,defaultValue:24,min:1,step:1},radius:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},padding:{type:ControlType.FusedNumber,defaultValue:12,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},border:{type:ControlType.Object,optional:true,controls:{colorType:{type:ControlType.Enum,defaultValue:\"brand\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Color\"},color:{type:ControlType.Color,defaultValue:\"#FFF\",title:\" \",hidden:props=>props.colorType!=\"custom\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},customIcon:{type:ControlType.Object,optional:true,buttonTitle:\"Icon\",controls:{type:{type:ControlType.Enum,defaultValue:\"svg\",options:[\"svg\",\"image\"],optionTitles:[\"SVG\",\"Image\"],displaySegmentedControl:true},svg:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"SVG\",preventLocalization:true,hidden:props=>props.type!=\"svg\"},image:{type:ControlType.ResponsiveImage,hidden:props=>props.type!=\"image\"},sizing:{type:ControlType.Enum,defaultValue:\"cover\",options:[\"cover\",\"contain\",\"fill\"],optionTitles:[\"Fill\",\"Fit\",\"Stretch\"],hidden:props=>props.type!=\"image\"},opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01}}}});function SocialIcon(props){const{size,color,customIcon}=props;const contents=[];let fill=true;let stroke=false;if(customIcon){if(customIcon.type==\"svg\"){return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"superfields-social-share-icon\",style:{width:size,height:size,opacity:customIcon.opacity,color:color,pointerEvents:\"none\"},dangerouslySetInnerHTML:customIcon.type==\"svg\"?{__html:customIcon.svg.replace(/width=\"(\\d+)\"/,`width=\"${size}\"`).replace(/height=\"(\\d+)\"/,`width=\"${size}\"`)}:undefined}),customIcon?.type==\"svg\"&&/*#__PURE__*/_jsx(\"style\",{children:`.superfields-social-share-icon svg { display: block; }`})]});}else if(customIcon.type==\"image\"){return /*#__PURE__*/_jsx(\"img\",{src:customIcon.image?.src,alt:customIcon.image?.alt,style:{display:\"block\",width:size,height:size,opacity:customIcon.opacity,color:color,objectFit:customIcon.sizing,objectPosition:\"center\",pointerEvents:\"none\"}});}}switch(props.type){case\"facebook\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M9.101 23.691v-7.98H6.627v-3.667h2.474v-1.58c0-4.085 1.848-5.978 5.858-5.978.401 0 .955.042 1.468.103a8.68 8.68 0 0 1 1.141.195v3.325a8.623 8.623 0 0 0-.653-.036 26.805 26.805 0 0 0-.733-.009c-.707 0-1.259.096-1.675.309a1.686 1.686 0 0 0-.679.622c-.258.42-.374.995-.374 1.752v1.297h3.919l-.386 2.103-.287 1.564h-3.246v8.245C19.396 23.238 24 18.179 24 12.044c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.628 3.874 10.35 9.101 11.647Z\"}));break;case\"twitter\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z\"}));break;case\"linkedIn\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z\"}));break;case\"reddit\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm5.01 4.744c.688 0 1.25.561 1.25 1.249a1.25 1.25 0 0 1-2.498.056l-2.597-.547-.8 3.747c1.824.07 3.48.632 4.674 1.488.308-.309.73-.491 1.207-.491.968 0 1.754.786 1.754 1.754 0 .716-.435 1.333-1.01 1.614a3.111 3.111 0 0 1 .042.52c0 2.694-3.13 4.87-7.004 4.87-3.874 0-7.004-2.176-7.004-4.87 0-.183.015-.366.043-.534A1.748 1.748 0 0 1 4.028 12c0-.968.786-1.754 1.754-1.754.463 0 .898.196 1.207.49 1.207-.883 2.878-1.43 4.744-1.487l.885-4.182a.342.342 0 0 1 .14-.197.35.35 0 0 1 .238-.042l2.906.617a1.214 1.214 0 0 1 1.108-.701zM9.25 12C8.561 12 8 12.562 8 13.25c0 .687.561 1.248 1.25 1.248.687 0 1.248-.561 1.248-1.249 0-.688-.561-1.249-1.249-1.249zm5.5 0c-.687 0-1.248.561-1.248 1.25 0 .687.561 1.248 1.249 1.248.688 0 1.249-.561 1.249-1.249 0-.687-.562-1.249-1.25-1.249zm-5.466 3.99a.327.327 0 0 0-.231.094.33.33 0 0 0 0 .463c.842.842 2.484.913 2.961.913.477 0 2.105-.056 2.961-.913a.361.361 0 0 0 .029-.463.33.33 0 0 0-.464 0c-.547.533-1.684.73-2.512.73-.828 0-1.979-.196-2.512-.73a.326.326 0 0 0-.232-.095z\"}));break;case\"pinterest\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z\"}));break;case\"whatsApp\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z\"}));break;case\"email\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M3 7l9 6l9 -6\"}));fill=false;stroke=true;break;case\"copyUrl\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M7 7m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h8.666a2.667 2.667 0 0 1 2.667 2.667v8.666a2.667 2.667 0 0 1 -2.667 2.667h-8.666a2.667 2.667 0 0 1 -2.667 -2.667z\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M4.012 16.737a2.005 2.005 0 0 1 -1.012 -1.737v-10c0 -1.1 .9 -2 2 -2h10c.75 0 1.158 .385 1.5 1\"}));fill=false;stroke=true;break;}return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:size,height:size,viewBox:\"0 0 24 24\",color:color,\"stroke-width\":stroke?\"2\":undefined,stroke:stroke?\"currentColor\":undefined,fill:fill?\"currentColor\":\"none\",\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\",style:{display:\"block\"},children:contents});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SocialShare\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"PLATFORM_NAMES\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SocialShare.map","// Generated by Framer (9e04080)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SocialShare from\"https://framerusercontent.com/modules/y8ckmFmPFgZ5Nzn1PrR2/e5Fa41jFxd3ezoZBjy3n/SocialShare.js\";const SocialShareFonts=getFonts(SocialShare);const serializationHash=\"framer-qHABY\";const variantClassNames={TybZj2NWg:\"framer-v-5s05xc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"TybZj2NWg\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,\"aria-label\":\"Social sharing\",className:cx(scopingClassNames,\"framer-5s05xc\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"TybZj2NWg\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ekzdcg-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"iSnG5_ZM6-container\",nodeId:\"iSnG5_ZM6\",rendersWithMotion:true,scopeId:\"KXB9zBxP2\",children:/*#__PURE__*/_jsx(SocialShare,{border:{color:\"var(--token-31ce67d2-1059-4837-a3c6-125b8bcac3b2, rgb(230, 230, 230))\",colorType:\"custom\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},colors:{fillColor:\"var(--token-c433f222-299d-4cbe-9c20-c23702f653b7, rgb(255, 255, 255))\",fillColorType:\"custom\",fillOpacity:1,iconColor:\"var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133))\",iconColorType:\"custom\"},height:\"100%\",iconSize:14,id:\"iSnG5_ZM6\",layoutId:\"iSnG5_ZM6\",newTab:true,padding:8,paddingBottom:8,paddingIsMixed:false,paddingLeft:8,paddingRight:8,paddingTop:8,radius:1090,radiusBottomLeft:1090,radiusBottomRight:1090,radiusIsMixed:false,radiusTopLeft:1090,radiusTopRight:1090,shareLink:\"currentPage\",shareUrl:\"\",type:\"facebook\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1i0nwda-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"RC7uKKr9U-container\",nodeId:\"RC7uKKr9U\",rendersWithMotion:true,scopeId:\"KXB9zBxP2\",children:/*#__PURE__*/_jsx(SocialShare,{border:{color:\"var(--token-31ce67d2-1059-4837-a3c6-125b8bcac3b2, rgb(230, 230, 230))\",colorType:\"custom\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},colors:{fillColor:\"var(--token-c433f222-299d-4cbe-9c20-c23702f653b7, rgb(255, 255, 255))\",fillColorType:\"custom\",fillOpacity:1,iconColor:\"var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133))\",iconColorType:\"custom\"},height:\"100%\",iconSize:14,id:\"RC7uKKr9U\",layoutId:\"RC7uKKr9U\",newTab:true,padding:8,paddingBottom:8,paddingIsMixed:false,paddingLeft:8,paddingRight:8,paddingTop:8,radius:1090,radiusBottomLeft:1090,radiusBottomRight:1090,radiusIsMixed:false,radiusTopLeft:1090,radiusTopRight:1090,shareLink:\"currentPage\",shareUrl:\"\",type:\"twitter\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-d5jqhi-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"jFHQy2O5N-container\",nodeId:\"jFHQy2O5N\",rendersWithMotion:true,scopeId:\"KXB9zBxP2\",children:/*#__PURE__*/_jsx(SocialShare,{border:{color:\"var(--token-31ce67d2-1059-4837-a3c6-125b8bcac3b2, rgb(230, 230, 230))\",colorType:\"custom\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},colors:{fillColor:\"var(--token-c433f222-299d-4cbe-9c20-c23702f653b7, rgb(255, 255, 255))\",fillColorType:\"custom\",fillOpacity:1,iconColor:\"var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133))\",iconColorType:\"custom\"},height:\"100%\",iconSize:14,id:\"jFHQy2O5N\",layoutId:\"jFHQy2O5N\",newTab:true,padding:8,paddingBottom:8,paddingIsMixed:false,paddingLeft:8,paddingRight:8,paddingTop:8,radius:1090,radiusBottomLeft:1090,radiusBottomRight:1090,radiusIsMixed:false,radiusTopLeft:1090,radiusTopRight:1090,shareLink:\"currentPage\",shareUrl:\"\",type:\"pinterest\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1risbzi-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Z2mg6xfpg-container\",nodeId:\"Z2mg6xfpg\",rendersWithMotion:true,scopeId:\"KXB9zBxP2\",children:/*#__PURE__*/_jsx(SocialShare,{border:{color:\"var(--token-31ce67d2-1059-4837-a3c6-125b8bcac3b2, rgb(230, 230, 230))\",colorType:\"custom\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},colors:{fillColor:\"var(--token-c433f222-299d-4cbe-9c20-c23702f653b7, rgb(255, 255, 255))\",fillColorType:\"custom\",fillOpacity:1,iconColor:\"var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133))\",iconColorType:\"custom\"},height:\"100%\",iconSize:14,id:\"Z2mg6xfpg\",layoutId:\"Z2mg6xfpg\",newTab:true,padding:8,paddingBottom:8,paddingIsMixed:false,paddingLeft:8,paddingRight:8,paddingTop:8,radius:1090,radiusBottomLeft:1090,radiusBottomRight:1090,radiusIsMixed:false,radiusTopLeft:1090,radiusTopRight:1090,shareLink:\"currentPage\",shareUrl:\"\",type:\"linkedIn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gphn7e-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"IZYydjW2m-container\",nodeId:\"IZYydjW2m\",rendersWithMotion:true,scopeId:\"KXB9zBxP2\",children:/*#__PURE__*/_jsx(SocialShare,{border:{color:\"var(--token-31ce67d2-1059-4837-a3c6-125b8bcac3b2, rgb(230, 230, 230))\",colorType:\"custom\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},colors:{fillColor:\"var(--token-c433f222-299d-4cbe-9c20-c23702f653b7, rgb(255, 255, 255))\",fillColorType:\"custom\",fillOpacity:1,iconColor:\"var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133))\",iconColorType:\"custom\"},height:\"100%\",iconSize:14,id:\"IZYydjW2m\",layoutId:\"IZYydjW2m\",newTab:true,padding:8,paddingBottom:8,paddingIsMixed:false,paddingLeft:8,paddingRight:8,paddingTop:8,radius:1090,radiusBottomLeft:1090,radiusBottomRight:1090,radiusIsMixed:false,radiusTopLeft:1090,radiusTopRight:1090,shareLink:\"currentPage\",shareUrl:\"\",type:\"copyUrl\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qHABY.framer-1d0zroj, .framer-qHABY .framer-1d0zroj { display: block; }\",\".framer-qHABY.framer-5s05xc { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 248px; }\",\".framer-qHABY .framer-ekzdcg-container, .framer-qHABY .framer-1i0nwda-container, .framer-qHABY .framer-d5jqhi-container, .framer-qHABY .framer-1risbzi-container, .framer-qHABY .framer-gphn7e-container { flex: none; height: auto; position: relative; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 248\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerKXB9zBxP2=withCSS(Component,css,\"framer-qHABY\");export default FramerKXB9zBxP2;FramerKXB9zBxP2.displayName=\"Buttons/Share buttons\";FramerKXB9zBxP2.defaultProps={height:30,width:248};addFonts(FramerKXB9zBxP2,[{explicitInter:true,fonts:[]},...SocialShareFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKXB9zBxP2\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"248\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"30\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KXB9zBxP2.map","// Generated by Framer (ae297d8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-8ep0e .framer-styles-preset-1vuwix:not(.rich-text-wrapper), .framer-8ep0e .framer-styles-preset-1vuwix.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-9efbf1ca-f98b-4878-8a9e-a5302f588aca, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-8ep0e\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (2f96024)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={QT0n2uvgH:new LazyValue(()=>import(\"./bMYVUK6qH-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (2f96024)\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,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import NavBreadcrumbs from\"#framer/local/canvasComponent/e21PqzN2x/e21PqzN2x.js\";import ButtonsShareButtons from\"#framer/local/canvasComponent/KXB9zBxP2/KXB9zBxP2.js\";import BannersBlogBanner from\"#framer/local/canvasComponent/nQy5mWYeV/nQy5mWYeV.js\";import SectionsPopular from\"#framer/local/canvasComponent/NVy4ygWMF/NVy4ygWMF.js\";import NavBlogSidePanel from\"#framer/local/canvasComponent/pBe5ZkP29/pBe5ZkP29.js\";import ButtonsPrevNextButton2 from\"#framer/local/canvasComponent/WlrsPnH35/WlrsPnH35.js\";import{getTitles}from\"#framer/local/codeFile/U45faVP/Function.js\";import Authors from\"#framer/local/collection/Z4XtM8wPX/Z4XtM8wPX.js\";import Blog,{enumToDisplayNameFunctions}from\"#framer/local/collection/Z6V97HKLQ/Z6V97HKLQ.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle11 from\"#framer/local/css/B3pP4_prY/B3pP4_prY.js\";import*as sharedStyle10 from\"#framer/local/css/CNa0YXlnA/CNa0YXlnA.js\";import*as sharedStyle7 from\"#framer/local/css/iE9xHuxB_/iE9xHuxB_.js\";import*as sharedStyle from\"#framer/local/css/keDJ44hDN/keDJ44hDN.js\";import*as sharedStyle12 from\"#framer/local/css/mnE06Hkn0/mnE06Hkn0.js\";import*as sharedStyle9 from\"#framer/local/css/NIboVqLyV/NIboVqLyV.js\";import*as sharedStyle6 from\"#framer/local/css/oqNyR2EFu/oqNyR2EFu.js\";import*as sharedStyle3 from\"#framer/local/css/p51u7wZfE/p51u7wZfE.js\";import*as sharedStyle5 from\"#framer/local/css/T6fQQTRqN/T6fQQTRqN.js\";import*as sharedStyle8 from\"#framer/local/css/VbyWu7YW2/VbyWu7YW2.js\";import*as sharedStyle2 from\"#framer/local/css/vrRYoA_Dz/vrRYoA_Dz.js\";import*as sharedStyle1 from\"#framer/local/css/XbwJlXRcj/XbwJlXRcj.js\";import*as sharedStyle4 from\"#framer/local/css/xx3EsdWGz/xx3EsdWGz.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/bMYVUK6qH/bMYVUK6qH.js\";import metadataProvider from\"#framer/local/webPageMetadata/bMYVUK6qH/bMYVUK6qH.js\";const NavBreadcrumbsFonts=getFonts(NavBreadcrumbs);const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const ButtonsPrevNextButton2Fonts=getFonts(ButtonsPrevNextButton2);const MotionArticleWithFX=withFX(motion.article);const MotionDivGetTitles10n1yqg=withCodeBoundaryForOverrides(motion.div,{nodeId:\"MUEqXOI2l\",override:getTitles,scopeId:\"bMYVUK6qH\"});const ButtonsShareButtonsFonts=getFonts(ButtonsShareButtons);const NavBlogSidePanelFonts=getFonts(NavBlogSidePanel);const SectionsPopularFonts=getFonts(SectionsPopular);const BannersBlogBannerFonts=getFonts(BannersBlogBanner);const breakpoints={fY_nLVcVr:\"(max-width: 809px)\",mcLCpJYbe:\"(min-width: 810px) and (max-width: 1199px)\",qAU1zqHP9:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-fuykZ\";const variantClassNames={fY_nLVcVr:\"framer-v-mao7a4\",mcLCpJYbe:\"framer-v-1v0nc16\",qAU1zqHP9:\"framer-v-bt5izl\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"UbOjh0BzP\":return{webPageId:\"LlawceSwB\"};case\"z0XDes2n5\":return{webPageId:\"uoK2RBPvF\"};case\"ziMYX5BJ1\":return{webPageId:\"Lwz_zVyso\"};default:return undefined;}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition1={damping:30,delay:0,mass:1,stiffness:205,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:40};const transition2={damping:30,delay:.1,mass:1,stiffness:205,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:40};const transition3={damping:30,delay:.2,mass:1,stiffness:205,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:40};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};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:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const transition4={damping:30,delay:.3,mass:1,stiffness:205,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:40};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:\"qAU1zqHP9\",Phone:\"fY_nLVcVr\",Tablet:\"mcLCpJYbe\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"qAU1zqHP9\"};};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:{constraint:{left:{collection:\"bMYVUK6qH\",name:\"LPDcxpYyU\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LPDcxpYyU\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"bMYVUK6qH\",data:Blog,type:\"Collection\"},right:{alias:\"LPDcxpYyU\",data:Authors,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"bMYVUK6qH\",name:\"AkzEoZPWQ\",type:\"Identifier\"},{collection:\"bMYVUK6qH\",name:\"UxKnQnklL\",type:\"Identifier\"},{collection:\"bMYVUK6qH\",name:\"qQ21E7yPM\",type:\"Identifier\"},{collection:\"bMYVUK6qH\",name:\"Vwu9XZyWo\",type:\"Identifier\"},{collection:\"bMYVUK6qH\",name:\"pkV5qtNYv\",type:\"Identifier\"},{collection:\"bMYVUK6qH\",name:\"FKEdpCiuH\",type:\"Identifier\"},{alias:\"LPDcxpYyU.tGtVV51J_\",collection:\"LPDcxpYyU\",name:\"tGtVV51J_\",type:\"Identifier\"},{alias:\"LPDcxpYyU.DiFjwB5Zk\",collection:\"LPDcxpYyU\",name:\"DiFjwB5Zk\",type:\"Identifier\"},{alias:\"LPDcxpYyU.XuOjiEVxW\",collection:\"LPDcxpYyU\",name:\"XuOjiEVxW\",type:\"Identifier\"},{collection:\"bMYVUK6qH\",name:\"FBXjk6Pql\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"bMYVUK6qH\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,UxKnQnklL=getFromCurrentRouteData(\"UxKnQnklL\")??\"\",pkV5qtNYv=getFromCurrentRouteData(\"pkV5qtNYv\"),FKEdpCiuH=getFromCurrentRouteData(\"FKEdpCiuH\"),LPDcxpYyU_tGtVV51J_=getFromCurrentRouteData(\"LPDcxpYyU.tGtVV51J_\"),LPDcxpYyU_DiFjwB5Zk=getFromCurrentRouteData(\"LPDcxpYyU.DiFjwB5Zk\")??\"\",LPDcxpYyU_XuOjiEVxW=getFromCurrentRouteData(\"LPDcxpYyU.XuOjiEVxW\")??\"\",Vwu9XZyWo=getFromCurrentRouteData(\"Vwu9XZyWo\"),FBXjk6Pql=getFromCurrentRouteData(\"FBXjk6Pql\")??\"\",UxKnQnklLy1TUAXAox,XHu3vCh1Gy1TUAXAox,idy1TUAXAox,AkzEoZPWQ=getFromCurrentRouteData(\"AkzEoZPWQ\")??0,UxKnQnklLobJBVqXPA,XHu3vCh1GobJBVqXPA,idobJBVqXPA,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const visible=isSet(LPDcxpYyU_XuOjiEVxW);const activeLocaleCode=useLocaleCode();const textContent=toDateString(Vwu9XZyWo,activeLocaleCode);const elementId=useRouteElementId(\"wRvgM76iy\");const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"mcLCpJYbe\",\"fY_nLVcVr\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"qAU1zqHP9\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-a5eebf22-c91e-45b8-b751-c3f460af1c06, rgb(232, 232, 232)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-bt5izl\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nbnkm6\",\"data-framer-name\":\"Article\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12doynw\",\"data-framer-name\":\"Content stack\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1xjd538\",\"data-framer-name\":\"Article stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b13qqc\",\"data-framer-name\":\"Article content\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1yj91vb\",\"data-framer-name\":\"Title block\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromEnum(pkV5qtNYv,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum(pkV5qtNYv,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum(pkV5qtNYv,activeLocale),implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fY_nLVcVr:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1080px) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+84+0+0+0+0+0+0+0+0},mcLCpJYbe:{width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 680px) - 52px, 1px) - 64px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1080px) - 312px, 1px) - 64px)`,y:(componentViewport?.y||0)+0+0+84+0+0+0+0+32+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t19bc5-container\",nodeId:\"LaR8fvXiQ\",scopeId:\"bMYVUK6qH\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fY_nLVcVr:{LxTVRmRM6:resolvedLinks[2]},mcLCpJYbe:{LxTVRmRM6:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(NavBreadcrumbs,{height:\"100%\",id:\"LaR8fvXiQ\",layoutId:\"LaR8fvXiQ\",LxTVRmRM6:resolvedLinks[0],style:{width:\"100%\"},vyizkn0zf:enumToDisplayNameFunctions[\"pkV5qtNYv\"]?.(pkV5qtNYv,activeLocale),width:\"100%\",XGUCd810G:UxKnQnklL})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fY_nLVcVr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4328,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+84+0+0+0+0+0+0+0+57),pixelHeight:4328,pixelWidth:2e3,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1080px) - 40px, 1px)`,...toResponsiveImage(FKEdpCiuH)}},mcLCpJYbe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4328,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+84+0+0+0+0+32+0+0+57),pixelHeight:4328,pixelWidth:2e3,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 680px) - 52px, 1px) - 64px)`,...toResponsiveImage(FKEdpCiuH)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:4328,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+84+0+0+0+0+32+0+0+57),pixelHeight:4328,pixelWidth:2e3,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1080px) - 312px, 1px) - 64px)`,...toResponsiveImage(FKEdpCiuH)},className:\"framer-19wvnwg\",\"data-border\":true,\"data-framer-name\":\"Banner\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ya85sy\",\"data-framer-name\":\"Title/author/category\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fY_nLVcVr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-492246bc-541d-4174-a090-7ec4ac97510b, rgb(3, 3, 3))\"},children:\"Title\"})})},mcLCpJYbe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-492246bc-541d-4174-a090-7ec4ac97510b, rgb(3, 3, 3))\"},children:\"Title\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-492246bc-541d-4174-a090-7ec4ac97510b, rgb(3, 3, 3))\"},children:\"Title\"})}),className:\"framer-1fshjb7\",fonts:[\"GF;Inter-700\"],style:{transformPerspective:1200},text:UxKnQnklL,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d09r2t\",\"data-framer-name\":\"Author stack\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fY_nLVcVr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5184,intrinsicWidth:3456,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+84+0+0+0+0+0+0+0+489+0+80+2.4),pixelHeight:5184,pixelWidth:3456,sizes:\"40px\",...toResponsiveImage(LPDcxpYyU_tGtVV51J_)}},mcLCpJYbe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5184,intrinsicWidth:3456,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+84+0+0+0+0+32+0+0+489+0+80+2.4),pixelHeight:5184,pixelWidth:3456,sizes:\"40px\",...toResponsiveImage(LPDcxpYyU_tGtVV51J_)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5184,intrinsicWidth:3456,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+84+0+0+0+0+32+0+0+489+0+85.6+2.4),pixelHeight:5184,pixelWidth:3456,sizes:\"40px\",...toResponsiveImage(LPDcxpYyU_tGtVV51J_)},className:\"framer-jewf20\",\"data-border\":true,\"data-framer-name\":\"Author photo\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ik3bxk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m1hrc6\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f1wp1r\",\"data-styles-preset\":\"keDJ44hDN\",children:\"Written by \"})}),className:\"framer-1q1c8kr\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f1wp1r\",\"data-styles-preset\":\"keDJ44hDN\",style:{\"--framer-text-color\":\"var(--token-cc29820f-fa09-4a71-9cea-275bb432a9af, rgb(54, 54, 54))\"},children:\"Omar Farook . Co Founder\"})}),className:\"framer-1i0rw1m\",fonts:[\"Inter\"],text:LPDcxpYyU_DiFjwB5Zk,verticalAlignment:\"center\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f1wp1r\",\"data-styles-preset\":\"keDJ44hDN\",style:{\"--framer-text-color\":\"var(--token-cc29820f-fa09-4a71-9cea-275bb432a9af, rgb(54, 54, 54))\"},children:\" . \"})}),className:\"framer-24v7nn\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f1wp1r\",\"data-styles-preset\":\"keDJ44hDN\",style:{\"--framer-text-color\":\"var(--token-cc29820f-fa09-4a71-9cea-275bb432a9af, rgb(54, 54, 54))\"},children:\"Omar Farook . Co Founder\"})}),className:\"framer-2ih10a\",fonts:[\"Inter\"],text:LPDcxpYyU_XuOjiEVxW,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4xgw6a\",\"data-framer-name\":\"Date published\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f1wp1r\",\"data-styles-preset\":\"keDJ44hDN\",children:\"Published \"})}),className:\"framer-ll5xz3\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f1wp1r\",\"data-styles-preset\":\"keDJ44hDN\",style:{\"--framer-text-color\":\"var(--token-cc29820f-fa09-4a71-9cea-275bb432a9af, rgb(54, 54, 54))\"},children:\"Nov 22, 2024\"})}),className:\"framer-1b78wx0\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"center\",withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-131tkgl\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(MotionArticleWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rdz96s\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"dEihmGzH7\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"GHo9J9tMR\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fY_nLVcVr:{stylesPresetsClassNames:{a:\"framer-styles-preset-wkt6ct\",code:\"framer-styles-preset-11jk2e5\",h1:\"framer-styles-preset-8k5g1j\",h2:\"framer-styles-preset-1blpizw\",h3:\"framer-styles-preset-jl05m1\",h4:\"framer-styles-preset-1mxc0by\",h5:\"framer-styles-preset-otauat\",h6:\"framer-styles-preset-cjni8h\",img:\"framer-styles-preset-1agzgzm\",p:\"framer-styles-preset-1vuwix\",table:\"framer-styles-preset-odlnsy\"}},mcLCpJYbe:{stylesPresetsClassNames:{a:\"framer-styles-preset-wkt6ct\",code:\"framer-styles-preset-11jk2e5\",h1:\"framer-styles-preset-8k5g1j\",h2:\"framer-styles-preset-1blpizw\",h3:\"framer-styles-preset-jl05m1\",h4:\"framer-styles-preset-1mxc0by\",h5:\"framer-styles-preset-otauat\",h6:\"framer-styles-preset-cjni8h\",img:\"framer-styles-preset-1agzgzm\",p:\"framer-styles-preset-1vuwix\",table:\"framer-styles-preset-odlnsy\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:FBXjk6Pql,className:\"framer-new4fx\",fonts:[\"Inter\"],id:elementId,ref:ref1,stylesPresetsClassNames:{a:\"framer-styles-preset-wkt6ct\",code:\"framer-styles-preset-11jk2e5\",h1:\"framer-styles-preset-8k5g1j\",h2:\"framer-styles-preset-1blpizw\",h3:\"framer-styles-preset-jl05m1\",h4:\"framer-styles-preset-geh0jf\",h5:\"framer-styles-preset-134k8hb\",h6:\"framer-styles-preset-xsjyob\",img:\"framer-styles-preset-1agzgzm\",p:\"framer-styles-preset-1vuwix\",table:\"framer-styles-preset-odlnsy\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qdiclu\",\"data-framer-name\":\"Previous/Next\",children:[/*#__PURE__*/_jsx(\"button\",{className:\"framer-i9lxhb\",\"data-framer-name\":\"Previous\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"y1TUAXAox\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"y1TUAXAox\",name:\"UxKnQnklL\",type:\"Identifier\"},{collection:\"y1TUAXAox\",name:\"XHu3vCh1G\",type:\"Identifier\"},{collection:\"y1TUAXAox\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"y1TUAXAox\",name:\"AkzEoZPWQ\",type:\"Identifier\"},operator:\"<\",right:{type:\"LiteralValue\",value:AkzEoZPWQ},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idy1TUAXAox,UxKnQnklL:UxKnQnklLy1TUAXAox,XHu3vCh1G:XHu3vCh1Gy1TUAXAox},index)=>{UxKnQnklLy1TUAXAox??=\"\";XHu3vCh1Gy1TUAXAox??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`y1TUAXAox-${idy1TUAXAox}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{XHu3vCh1G:XHu3vCh1Gy1TUAXAox},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{XHu3vCh1G:XHu3vCh1Gy1TUAXAox},webPageId:\"bMYVUK6qH\"},implicitPathVariables:undefined},{href:{pathVariables:{XHu3vCh1G:XHu3vCh1Gy1TUAXAox},webPageId:\"bMYVUK6qH\"},implicitPathVariables:undefined},{href:{pathVariables:{XHu3vCh1G:XHu3vCh1Gy1TUAXAox},webPageId:\"bMYVUK6qH\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fY_nLVcVr:{height:68,width:`max((max(min(${componentViewport?.width||\"100vw\"}, 1080px) - 40px, 1px) - 8px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+84+0+0+0+0+0+678.8+0+144+0+0+0},mcLCpJYbe:{width:`max((max(min(${componentViewport?.width||\"100vw\"}, 680px) - 52px, 1px) - 112px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+84+0+0+0+0+32+678.8+0+144+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max((max(min(${componentViewport?.width||\"100vw\"}, 1080px) - 312px, 1px) - 112px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+84+0+0+0+0+32+684.4+0+144+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jqjxq0-container\",nodeId:\"o42FcokdC\",scopeId:\"bMYVUK6qH\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fY_nLVcVr:{owNPiEM_V:resolvedLinks1[2],style:{width:\"100%\"},variant:\"QBukRjVZ0\"},mcLCpJYbe:{owNPiEM_V:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonsPrevNextButton2,{height:\"100%\",id:\"o42FcokdC\",J0GTsHFPI:UxKnQnklLy1TUAXAox,layoutId:\"o42FcokdC\",owNPiEM_V:resolvedLinks1[0],style:{height:\"100%\",width:\"100%\"},variant:\"ykSb1eRxk\",width:\"100%\",y0FtBZycb:getLocalizedValue(\"v3\",activeLocale)??\"Previous article\"})})})})})})})},idy1TUAXAox);})})})})}),/*#__PURE__*/_jsx(\"button\",{className:\"framer-bbub6q\",\"data-framer-name\":\"Next\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"obJBVqXPA\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"obJBVqXPA\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"obJBVqXPA\",name:\"UxKnQnklL\",type:\"Identifier\"},{collection:\"obJBVqXPA\",name:\"XHu3vCh1G\",type:\"Identifier\"},{collection:\"obJBVqXPA\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"obJBVqXPA\",name:\"AkzEoZPWQ\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:AkzEoZPWQ},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idobJBVqXPA,UxKnQnklL:UxKnQnklLobJBVqXPA,XHu3vCh1G:XHu3vCh1GobJBVqXPA},index1)=>{UxKnQnklLobJBVqXPA??=\"\";XHu3vCh1GobJBVqXPA??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`obJBVqXPA-${idobJBVqXPA}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{XHu3vCh1G:XHu3vCh1GobJBVqXPA},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{XHu3vCh1G:XHu3vCh1GobJBVqXPA},webPageId:\"bMYVUK6qH\"},implicitPathVariables:undefined},{href:{pathVariables:{XHu3vCh1G:XHu3vCh1GobJBVqXPA},webPageId:\"bMYVUK6qH\"},implicitPathVariables:undefined},{href:{pathVariables:{XHu3vCh1G:XHu3vCh1GobJBVqXPA},webPageId:\"bMYVUK6qH\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fY_nLVcVr:{height:68,width:`max((max(min(${componentViewport?.width||\"100vw\"}, 1080px) - 40px, 1px) - 8px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+84+0+0+0+0+0+678.8+0+144+0+0+0},mcLCpJYbe:{width:`max((max(min(${componentViewport?.width||\"100vw\"}, 680px) - 52px, 1px) - 112px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+84+0+0+0+0+32+678.8+0+144+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max((max(min(${componentViewport?.width||\"100vw\"}, 1080px) - 312px, 1px) - 112px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+84+0+0+0+0+32+684.4+0+144+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f6f0j1-container\",nodeId:\"GCuzbq93j\",scopeId:\"bMYVUK6qH\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fY_nLVcVr:{owNPiEM_V:resolvedLinks2[2],variant:\"wvYfJjV5y\"},mcLCpJYbe:{owNPiEM_V:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonsPrevNextButton2,{height:\"100%\",id:\"GCuzbq93j\",J0GTsHFPI:UxKnQnklLobJBVqXPA,layoutId:\"GCuzbq93j\",owNPiEM_V:resolvedLinks2[0],style:{height:\"100%\",width:\"100%\"},variant:\"vFdMdLmbR\",width:\"100%\",y0FtBZycb:getLocalizedValue(\"v4\",activeLocale)??\"Next article\"})})})})})})})},idobJBVqXPA);})})})})})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"aside\",{className:\"framer-1oy3y3s hidden-1v0nc16 hidden-mao7a4\",\"data-framer-name\":\"Article navigation\",children:[/*#__PURE__*/_jsxs(\"nav\",{className:\"framer-1uigdkl\",\"data-framer-name\":\"On this page links\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-79xs5y\",\"data-styles-preset\":\"mnE06Hkn0\",style:{\"--framer-text-color\":\"var(--token-fd2a9202-3b01-4729-831f-86b0b036c94c, rgb(17, 17, 17))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"On this page\"})})}),className:\"framer-1o79t54\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivGetTitles10n1yqg,{className:\"framer-10n1yqg\",\"data-framer-name\":\"Chapters\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--token-948ff4cd-356f-425b-9ebb-c2f53a428975, rgb(133, 133, 133))\",\"--framer-text-decoration\":\"underline\"},children:\"Syntax support\"})}),className:\"framer-lntmxh\",\"data-framer-name\":\"SubList\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"248px\",y:(componentViewport?.y||0)+0+0+84+0+0+0+0+32+102.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yfttbw-container\",nodeId:\"G6wE68Mqi\",scopeId:\"bMYVUK6qH\",children:/*#__PURE__*/_jsx(ButtonsShareButtons,{height:\"100%\",id:\"G6wE68Mqi\",layoutId:\"G6wE68Mqi\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:315,width:\"248px\",y:(componentViewport?.y||0)+0+0+84+0+0+0+0+32+164.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17ijdt9-container\",nodeId:\"uQBK2BNRN\",scopeId:\"bMYVUK6qH\",children:/*#__PURE__*/_jsx(NavBlogSidePanel,{gjfrfEtzw:false,height:\"100%\",id:\"uQBK2BNRN\",layoutId:\"uQBK2BNRN\",style:{width:\"100%\"},width:\"100%\"})})})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4obi5y\",\"data-framer-name\":\"Article End\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fY_nLVcVr:{width:`min(${componentViewport?.width||\"100vw\"} - 20px, 1080px)`,y:(componentViewport?.y||0)+0+1046.8+72+0},mcLCpJYbe:{width:`min(min(${componentViewport?.width||\"100vw\"}, 910px) - 144px, 1080px)`,y:(componentViewport?.y||0)+0+1094.8+72+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:359,width:`min(${componentViewport?.width||\"100vw\"} - 144px, 1080px)`,y:(componentViewport?.y||0)+0+1100.4+72+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e62j4i-container\",nodeId:\"yywgKFJ5x\",scopeId:\"bMYVUK6qH\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fY_nLVcVr:{variant:\"MbBLGXQ76\"},mcLCpJYbe:{variant:\"OYZg9YOEA\"}},children:/*#__PURE__*/_jsx(SectionsPopular,{height:\"100%\",id:\"yywgKFJ5x\",layoutId:\"yywgKFJ5x\",SCAwFq2BJ:true,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"wfHPtwud3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i3fjid\",\"data-framer-name\":\"CTA Frame\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fY_nLVcVr:{width:`max(min(${componentViewport?.width||\"100vw\"} - 20px, 1080px) - 40px, 1px)`,y:(componentViewport?.y||0)+0+1046.8+72+407+0},mcLCpJYbe:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 910px) - 144px, 1080px), 1px)`,y:(componentViewport?.y||0)+0+1094.8+72+431+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:468,width:`max(min(${componentViewport?.width||\"100vw\"} - 144px, 1080px), 1px)`,y:(componentViewport?.y||0)+0+1100.4+72+431+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7scyf0-container\",nodeId:\"RvZwv2Ziv\",scopeId:\"bMYVUK6qH\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fY_nLVcVr:{variant:\"qnsv4yi5W\"},mcLCpJYbe:{variant:\"ncUY11ALe\"}},children:/*#__PURE__*/_jsx(BannersBlogBanner,{fOfX888Ei:getLocalizedValue(\"v7\",activeLocale)??\"Win back precious time\",height:\"100%\",id:\"RvZwv2Ziv\",layoutId:\"RvZwv2Ziv\",sO6Q0kG7i:\"v5lIwtT5E\",style:{width:\"100%\"},variant:\"OeIFX8R5F\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fuykZ.framer-5jnjea, .framer-fuykZ .framer-5jnjea { display: block; }\",\".framer-fuykZ.framer-bt5izl { align-content: center; align-items: center; background-color: var(--token-a5eebf22-c91e-45b8-b751-c3f460af1c06, #e8e8e8); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-fuykZ .framer-nbnkm6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; max-width: 1080px; padding: 84px 20px 72px 20px; position: relative; width: 100%; }\",\".framer-fuykZ .framer-12doynw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fuykZ .framer-1xjd538 { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fuykZ .framer-b13qqc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 32px 0px 32px; position: relative; width: 1px; z-index: 2; }\",\".framer-fuykZ .framer-1yj91vb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fuykZ .framer-1t19bc5-container, .framer-fuykZ .framer-1yfttbw-container, .framer-fuykZ .framer-17ijdt9-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-fuykZ .framer-19wvnwg { --border-bottom-width: 1px; --border-color: var(--token-27871916-ce5c-4bcb-8c42-24334299f0b3, #e6e6e6); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; gap: 48px; height: 400px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fuykZ .framer-1ya85sy { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fuykZ .framer-1fshjb7 { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fuykZ .framer-d09r2t { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-fuykZ .framer-jewf20 { --border-bottom-width: 1px; --border-color: var(--token-c623a7a4-8d24-4417-a040-740eb6edb779, #bfbfbf); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fuykZ .framer-1ik3bxk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-fuykZ .framer-m1hrc6, .framer-fuykZ .framer-4xgw6a { align-content: center; align-items: center; 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: min-content; }\",\".framer-fuykZ .framer-1q1c8kr, .framer-fuykZ .framer-ll5xz3 { flex: none; height: auto; opacity: 0.7; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-fuykZ .framer-1i0rw1m, .framer-fuykZ .framer-24v7nn, .framer-fuykZ .framer-2ih10a, .framer-fuykZ .framer-1b78wx0, .framer-fuykZ .framer-1o79t54, .framer-fuykZ .framer-lntmxh { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-fuykZ .framer-131tkgl { background-color: var(--token-400ab1fc-f0f8-4714-b2eb-91e77cc3d671, #999999); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-fuykZ .framer-rdz96s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fuykZ .framer-new4fx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fuykZ .framer-qdiclu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fuykZ .framer-i9lxhb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-fuykZ .framer-1jqjxq0-container, .framer-fuykZ .framer-f6f0j1-container { flex: none; height: 84px; position: relative; width: 100%; }\",\".framer-fuykZ .framer-bbub6q { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-fuykZ .framer-1oy3y3s { align-content: flex-start; align-items: flex-start; 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: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 12px 12px 12px; position: sticky; top: 72px; width: 272px; z-index: 1; }\",\".framer-fuykZ .framer-1uigdkl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fuykZ .framer-10n1yqg { align-content: flex-start; align-items: flex-start; 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-fuykZ .framer-4obi5y { align-content: center; align-items: center; background-color: var(--token-fd2a9202-3b01-4729-831f-86b0b036c94c, #111111); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: visible; padding: 72px; position: relative; width: 100%; }\",\".framer-fuykZ .framer-1e62j4i-container { flex: none; height: auto; max-width: 1080px; position: relative; width: 100%; }\",\".framer-fuykZ .framer-1i3fjid { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1080px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fuykZ .framer-7scyf0-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",...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,'.framer-fuykZ[data-border=\"true\"]::after, .framer-fuykZ [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: 1199px) { .framer-fuykZ.framer-bt5izl { width: 810px; } .framer-fuykZ .framer-nbnkm6 { gap: 24px; max-width: 680px; } .framer-fuykZ .framer-1xjd538 { padding: 0px 0px 0px 12px; } .framer-fuykZ .framer-4obi5y { max-width: 910px; }}\",\"@media (max-width: 809px) { .framer-fuykZ.framer-bt5izl { width: 390px; } .framer-fuykZ .framer-nbnkm6 { gap: 32px; } .framer-fuykZ .framer-b13qqc { padding: 0px; } .framer-fuykZ .framer-qdiclu { gap: 8px; } .framer-fuykZ .framer-1jqjxq0-container { height: auto; } .framer-fuykZ .framer-bbub6q { align-self: stretch; height: auto; } .framer-fuykZ .framer-f6f0j1-container { flex: 1 0 0px; height: 1px; } .framer-fuykZ .framer-4obi5y { gap: 48px; padding: 72px 10px 72px 10px; } .framer-fuykZ .framer-1i3fjid { gap: 0px; padding: 0px 20px 0px 20px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9940\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mcLCpJYbe\":{\"layout\":[\"fixed\",\"auto\"]},\"fY_nLVcVr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"wRvgM76iy\":{\"pattern\":\":wRvgM76iy\",\"name\":\"content-data\"}}\n * @framerResponsiveScreen\n */const FramerbMYVUK6qH=withCSS(Component,css,\"framer-fuykZ\");export default FramerbMYVUK6qH;FramerbMYVUK6qH.displayName=\"Page\";FramerbMYVUK6qH.defaultProps={height:9940,width:1200};addFonts(FramerbMYVUK6qH,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavBreadcrumbsFonts,...ButtonsPrevNextButton2Fonts,...ButtonsShareButtonsFonts,...NavBlogSidePanelFonts,...SectionsPopularFonts,...BannersBlogBannerFonts,...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),...componentPresets.fonts?.[\"dEihmGzH7\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"dEihmGzH7\"]):[],...componentPresets.fonts?.[\"GHo9J9tMR\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"GHo9J9tMR\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbMYVUK6qH\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"9940\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mcLCpJYbe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fY_nLVcVr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"{\\\"wRvgM76iy\\\":{\\\"pattern\\\":\\\":wRvgM76iy\\\",\\\"name\\\":\\\"content-data\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}