{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js", "ssg:https://framerusercontent.com/modules/slsBfhTQaT1HTC3dL72r/uLWJXxtBucCruyKmWizf/Test.js", "ssg:https://framerusercontent.com/modules/uspC8QpWFwK2ZSlCaHwF/hbL4EdSwTGbPwyLAFXZZ/GZQUloooI.js", "ssg:https://framerusercontent.com/modules/2mZtxhAxhmUo78IqmEDM/Os75zoPvvWBrDGNh5DHv/rbn6MRyRS.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,useMotionValue,useTransform}from\"framer-motion\";/**\n * ANIMATOR\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Animator(props){/* Properties */const{pathAnimation,from,to,animate,shouldLoop,loopOptions,slots=[],endCircle}=props;/* State */const hasChildren=Children.count(slots)>0;/* Empty State */let customShape=/*#__PURE__*/_jsxs(\"div\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u270D\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Graphic\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Animates single or joined paths on Web Pages only.\"})]});if(hasChildren){/* Grab the SVG from the Graphic */const firstChild=getFirstChild(slots);const svgChild=getFirstChild(firstChild.props.svg);const isSpring=pathAnimation.type===\"spring\";/* Shape transition properties *//* Dividing stiffness and damping by 1000 is a trick I got from Matt \n        which helps with pathLength animations, which otherwise are so fast \n        you never even see them happen in the preview. */const shapeTransition={pathLength:{...pathAnimation,repeat:shouldLoop?Infinity:0,repeatType:loopOptions,stiffness:isSpring?pathAnimation.stiffness/1e3:pathAnimation.stiffness,damping:isSpring?pathAnimation.damping/1e3:pathAnimation.damping}};/* Add our own properties to the Path */const pathLength=useMotionValue(0);const opacity=useTransform(pathLength,[0,.025],[0,1]);const shapeProps={variants:{start:{pathLength:from/100},end:{pathLength:to/100}},transition:shapeTransition};/* Prevent animating or adjusting pathLength on the Canvas */const isCanvas=RenderTarget.current()===RenderTarget.canvas;/* Just render the full connected Graphic on Canvas, when connected */if(isCanvas){customShape=firstChild;}/* If on a web page */if(!isCanvas&&svgChild){/* Pass Attributes */let attributes=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);let pathD;let stroke;let strokeWidth;let strokeLinecap;let strokeLinejoin;for(const element of attributes){if(element.includes(\"d=\")){pathD=splitAndReplace(element);}if(element.includes(\"stroke=\")){stroke=splitAndReplace(element);}if(element.includes(\"stroke-width=\")){strokeWidth=splitAndReplace(element);}if(element.includes(\"stroke-linecap=\")){strokeLinecap=splitAndReplace(element);}if(element.includes(\"stroke-linejoin=\")){strokeLinejoin=splitAndReplace(element);}}/* Grab viewbox */let svgViewbox;svgViewbox=svgChild.split(\"viewBox=\")[1];svgViewbox=svgViewbox.split(\">\")[0];svgViewbox=svgViewbox.replace(/^\"(.+(?=\"$))\"$/,\"$1\");customShape=/*#__PURE__*/_jsx(motion.div,{initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\",style:{width:\"100%\",height:\"100%\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",overflow:\"hidden\"},children:/*#__PURE__*/_jsx(motion.svg,{xmlns:\"http://www.w3.org/2000/svg\",width:\"100%\",height:\"100%\",viewBox:svgViewbox,children:/*#__PURE__*/_jsx(motion.path,{...shapeProps,d:pathD,stroke:stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",style:!endCircle&&{pathLength,opacity},initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\"})})});}}return customShape;}/* Default Properties */Animator.defaultProps={animate:true,shouldLoop:false,loopOptions:\"reverse\",from:0,to:100,pathAnimation:{type:\"tween\",duration:2},endCircle:true};/* Property Controls */addPropertyControls(Animator,{slots:{type:ControlType.ComponentInstance,title:\"Children\"},animate:{title:\"Animate\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.animate,enabledTitle:\"True\",disabledTitle:\"False\"},shouldLoop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.shouldLoop,enabledTitle:\"True\",disabledTitle:\"False\",hidden(props){return props.animate===false;}},loopOptions:{type:ControlType.Enum,title:\"Type\",defaultValue:Animator.defaultProps.loopOptions,options:[\"loop\",\"reverse\",\"mirror\"],optionTitles:[\"Loop\",\"Reverse\",\"Mirror\"],hidden(props){return props.shouldLoop===false;}},endCircle:{title:\"End Circle\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.endCircle,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden(props){return props.animate===false;}},from:{title:\"From\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.from,unit:\"%\",hidden(props){return props.animate===false;}},to:{title:\"To\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.to,unit:\"%\",hidden(props){return props.animate===false;}},pathAnimation:{title:\" \",type:ControlType.Transition,defaultValue:Animator.defaultProps.pathAnimation,hidden(props){return props.animate===false;}}});/* Method to get stringless attributes */const splitAndReplace=string=>{return string.split(\"=\")[1].replace(/['\"]+/g,\"\");};/* Method to get the first child */function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Animator\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Animator.map", "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\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextClip\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"TextClip\":{\"type\":\"reactComponent\",\"name\":\"TextClip\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Test.map", "// Generated by Framer (838580a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Switzer-regular\",\"FS;Switzer-bold\",\"FS;Switzer-bold italic\",\"FS;Switzer-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BLNB4FAQFNK56DWWNF7PMGTCOTZHOEII/ST3WKSSDMBK2MIQQO3MAVYWLF4FTOLFV/6IN5WOLRCYP4G4MOCOHOMXNON6Q7MDAR.woff2\",weight:\"400\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/HBNTRIISA5MEXGL5WPYI7CV2HIWTDV3Q/YDPDINVT673XLXNSTMLG4JNCZZMVVNPN/Y7SCNZJOT2MW5ADSGOFLDGH4TNL4JCQY.woff2\",weight:\"700\"},{family:\"Switzer\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LVPXCMXCWY3V7PSXRMGRQUJDAS2DT47E/BPEVRT2HG7PPVVUS7A67MZQQZW6LR6A5/A7AS3UPAGLC7MDVC67SBNTE5FGF2Z2RG.woff2\",weight:\"700\"},{family:\"Switzer\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XVUY2PHYBA6KMN4RMEMJPHQSTKCQ267G/UICOQA6KCSHFOSCPYDVVDNNCDKYFXHJB/O34WRFYO7JNWEBBA2LRV2XYRUSYXYDKH.woff2\",weight:\"400\"}]}];export const css=['.framer-x9Nw4 .framer-styles-preset-1c8s0wi:not(.rich-text-wrapper), .framer-x9Nw4 .framer-styles-preset-1c8s0wi.rich-text-wrapper p { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 100%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-x9Nw4\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7f69244)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Animator from\"https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js\";import TextClip from\"https://framerusercontent.com/modules/slsBfhTQaT1HTC3dL72r/uLWJXxtBucCruyKmWizf/Test.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/uspC8QpWFwK2ZSlCaHwF/hbL4EdSwTGbPwyLAFXZZ/GZQUloooI.js\";const AnimatorFonts=getFonts(Animator);const TextClipFonts=getFonts(TextClip);const cycleOrder=[\"ek9MYVdoz\",\"thAKnAyWa\",\"avFDvCRtQ\",\"AuYWJD_yp\",\"rKVRDhJBF\",\"BOoZpp7OK\",\"OQfD1a2J4\",\"plJryGGGN\"];const serializationHash=\"framer-LaQ5I\";const variantClassNames={AuYWJD_yp:\"framer-v-kjssch\",avFDvCRtQ:\"framer-v-775gze\",BOoZpp7OK:\"framer-v-dafxmb\",ek9MYVdoz:\"framer-v-agfhrh\",OQfD1a2J4:\"framer-v-1oq8r3\",plJryGGGN:\"framer-v-4kr172\",rKVRDhJBF:\"framer-v-1l9bb3k\",thAKnAyWa:\"framer-v-lvczxc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:0,ease:[.23,1,.32,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[.23,1,.32,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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={\"Article Card - Hover Out\":\"BOoZpp7OK\",\"Article Card - Wide\":\"AuYWJD_yp\",\"Article Card 1x1 Hover\":\"thAKnAyWa\",\"Article Card 1x1\":\"ek9MYVdoz\",\"Article Card Hover Out\":\"avFDvCRtQ\",\"Article Card Wide - Hover\":\"rKVRDhJBF\",\"Tablet/Mobile - 1x1\":\"OQfD1a2J4\",\"Tablet/Mobile - Wide\":\"plJryGGGN\"};const getProps=({height,id,image,previewText,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,GdNar7EyN:(_ref=title!==null&&title!==void 0?title:props.GdNar7EyN)!==null&&_ref!==void 0?_ref:\"A Letter From the Founders\",Omtc4De91:(_ref1=previewText!==null&&previewText!==void 0?previewText:props.Omtc4De91)!==null&&_ref1!==void 0?_ref1:\"Join us on a journey through the digital landscape as we explore the transformative power of technology in today's interconnected world.\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"ek9MYVdoz\",ZYZ194zvr:(_ref3=image!==null&&image!==void 0?image:props.ZYZ194zvr)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/nxFofrYSdyDPjS3Q1fnAXJx90Q.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nxFofrYSdyDPjS3Q1fnAXJx90Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nxFofrYSdyDPjS3Q1fnAXJx90Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nxFofrYSdyDPjS3Q1fnAXJx90Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nxFofrYSdyDPjS3Q1fnAXJx90Q.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/nxFofrYSdyDPjS3Q1fnAXJx90Q.jpg 6000w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ZYZ194zvr,GdNar7EyN,Omtc4De91,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ek9MYVdoz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterz8ts5e=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"thAKnAyWa\");});const onMouseLeavejdk6wy=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"avFDvCRtQ\");});const onAppear1dfv9eg=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ek9MYVdoz\"),600);});const onMouseEnter1jyosp4=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"ek9MYVdoz\");});const onMouseEnterqtpg1t=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"rKVRDhJBF\");});const onMouseLeave1jlj7ph=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"BOoZpp7OK\");});const onAppear6i0h3w=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"AuYWJD_yp\"),600);});const onMouseEnter198phqx=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"AuYWJD_yp\");});useOnVariantChange(baseVariant,{avFDvCRtQ:onAppear1dfv9eg,BOoZpp7OK:onAppear6i0h3w});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"OQfD1a2J4\",\"plJryGGGN\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"thAKnAyWa\",\"avFDvCRtQ\",\"rKVRDhJBF\",\"BOoZpp7OK\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({avFDvCRtQ:{value:transition2},BOoZpp7OK:{value:transition2},rKVRDhJBF:{value:transition2},thAKnAyWa:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-agfhrh\",className,classNames),\"data-framer-name\":\"Article Card 1x1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ek9MYVdoz\",onMouseEnter:onMouseEnterz8ts5e,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({AuYWJD_yp:{\"data-framer-name\":\"Article Card - Wide\",onMouseEnter:onMouseEnterqtpg1t},avFDvCRtQ:{\"data-framer-name\":\"Article Card Hover Out\",onMouseEnter:onMouseEnter1jyosp4},BOoZpp7OK:{\"data-framer-name\":\"Article Card - Hover Out\",onMouseEnter:onMouseEnter198phqx},OQfD1a2J4:{\"data-framer-name\":\"Tablet/Mobile - 1x1\",\"data-highlight\":undefined,onMouseEnter:undefined},plJryGGGN:{\"data-framer-name\":\"Tablet/Mobile - Wide\",\"data-highlight\":undefined,onMouseEnter:undefined},rKVRDhJBF:{\"data-framer-name\":\"Article Card Wide - Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1jlj7ph},thAKnAyWa:{\"data-framer-name\":\"Article Card 1x1 Hover\",onMouseLeave:onMouseLeavejdk6wy}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ikuzhp\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"zBby9BKP3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vhnb57\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"w1P825RuG\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+0),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(ZYZ194zvr)},className:\"framer-1lhu33t\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"rZx4njNJY\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e27hq0\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"OmrQRE7gc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m6qilz\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"yPr36sedE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1c8s0wi\",\"data-styles-preset\":\"GZQUloooI\",children:\"A Letter From the Founders\"})}),className:\"framer-dle2d\",\"data-framer-name\":\"A Letter From the Founders\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"F9CgZIXYl\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:GdNar7EyN,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hevocx\",\"data-framer-name\":\"Arrow Wrapper\",layoutDependency:layoutDependency,layoutId:\"lAjhBoCpE\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1us0q4n\",\"data-framer-name\":\"Arrow\",layoutDependency:layoutDependency,layoutId:\"b2sqPIPpv\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-hyybk9\",\"data-framer-name\":\"Arrow 2\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"m8Hs_4imJ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 6.417 8.025 L 8.929 5.513 M 8.929 5.513 L 6.417 3 M 8.929 5.513 L 3 5.513\" fill=\"transparent\" stroke-width=\"0.889401\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12848632926,withExternalLayout:true,...addPropertyOverrides({rKVRDhJBF:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 6.417 8.025 L 8.929 5.513 M 8.929 5.513 L 6.417 3 M 8.929 5.513 L 3 5.513\" fill=\"transparent\" stroke-width=\"0.89\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8701955457},thAKnAyWa:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 6.417 8.025 L 8.929 5.513 M 8.929 5.513 L 6.417 3 M 8.929 5.513 L 3 5.513\" fill=\"transparent\" stroke-width=\"0.89\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8701955457}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qhbogu-container\",layoutDependency:layoutDependency,layoutId:\"DcrWLIjFW-container\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"DcrWLIjFW\",layoutId:\"DcrWLIjFW\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:1,ease:[.23,1,.32,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1d4f3bf\",\"data-framer-name\":\"Circle\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"d4vjZv8Cz\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z\" fill=\"transparent\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10058952036,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\",...addPropertyOverrides({avFDvCRtQ:{from:100,to:0},BOoZpp7OK:{from:100,to:0}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ouqr28-container\",layoutDependency:layoutDependency,layoutId:\"LEi3h8FOo-container\",style:{opacity:.6},children:/*#__PURE__*/_jsx(TextClip,{height:\"100%\",id:\"LEi3h8FOo\",layoutId:\"LEi3h8FOo\",letterMode:false,lineCount:3,maxCharacters:20,style:{width:\"100%\"},text:Omtc4De91,textStyle:{color:\"rgb(0, 0, 0)\",font:\"Switzer\",fontSize:14,fontWeight:400,letterSpacing:0,lineHeight:1.2,textAlign:\"left\",textTransform:\"none\"},width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LaQ5I.framer-pem2en, .framer-LaQ5I .framer-pem2en { display: block; }\",\".framer-LaQ5I.framer-agfhrh { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 390px; }\",\".framer-LaQ5I .framer-1ikuzhp, .framer-LaQ5I .framer-1e27hq0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-LaQ5I .framer-vhnb57 { 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, 390px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-LaQ5I .framer-1lhu33t { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-LaQ5I .framer-m6qilz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-LaQ5I .framer-dle2d { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-LaQ5I .framer-hevocx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 20px; overflow: hidden; padding: 0px; position: relative; width: 20px; }\",\".framer-LaQ5I .framer-1us0q4n { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: flex-start; left: -31px; overflow: visible; padding: 0px; position: absolute; right: -1px; top: 0px; z-index: 1; }\",\".framer-LaQ5I .framer-hyybk9 { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-LaQ5I .framer-1qhbogu-container { flex: none; height: 20px; position: relative; width: 20px; z-index: 1; }\",\".framer-LaQ5I .framer-1d4f3bf { height: 20px; position: relative; width: 20px; }\",\".framer-LaQ5I .framer-1ouqr28-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LaQ5I.framer-agfhrh, .framer-LaQ5I .framer-1ikuzhp, .framer-LaQ5I .framer-vhnb57, .framer-LaQ5I .framer-1e27hq0, .framer-LaQ5I .framer-hevocx, .framer-LaQ5I .framer-1us0q4n { gap: 0px; } .framer-LaQ5I.framer-agfhrh > *, .framer-LaQ5I .framer-1ikuzhp > *, .framer-LaQ5I .framer-1e27hq0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-LaQ5I.framer-agfhrh > :first-child, .framer-LaQ5I .framer-1ikuzhp > :first-child, .framer-LaQ5I .framer-1e27hq0 > :first-child { margin-top: 0px; } .framer-LaQ5I.framer-agfhrh > :last-child, .framer-LaQ5I .framer-1ikuzhp > :last-child, .framer-LaQ5I .framer-1e27hq0 > :last-child { margin-bottom: 0px; } .framer-LaQ5I .framer-vhnb57 > *, .framer-LaQ5I .framer-hevocx > *, .framer-LaQ5I .framer-1us0q4n > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-LaQ5I .framer-vhnb57 > :first-child, .framer-LaQ5I .framer-hevocx > :first-child, .framer-LaQ5I .framer-1us0q4n > :first-child { margin-left: 0px; } .framer-LaQ5I .framer-vhnb57 > :last-child, .framer-LaQ5I .framer-hevocx > :last-child, .framer-LaQ5I .framer-1us0q4n > :last-child { margin-right: 0px; } }\",\".framer-LaQ5I.framer-v-lvczxc .framer-hevocx, .framer-LaQ5I.framer-v-775gze .framer-hevocx, .framer-LaQ5I.framer-v-1l9bb3k .framer-hevocx, .framer-LaQ5I.framer-v-dafxmb .framer-hevocx { min-height: unset; }\",\".framer-LaQ5I.framer-v-lvczxc .framer-1us0q4n, .framer-LaQ5I.framer-v-1l9bb3k .framer-1us0q4n { justify-content: center; left: 0px; overflow: hidden; right: 0px; }\",\".framer-LaQ5I.framer-v-lvczxc .framer-hyybk9, .framer-LaQ5I.framer-v-1l9bb3k .framer-hyybk9 { order: 0; }\",\".framer-LaQ5I.framer-v-775gze .framer-1us0q4n, .framer-LaQ5I.framer-v-dafxmb .framer-1us0q4n { justify-content: center; left: 0px; right: -32px; }\",\".framer-LaQ5I.framer-v-kjssch .framer-vhnb57, .framer-LaQ5I.framer-v-1l9bb3k .framer-vhnb57, .framer-LaQ5I.framer-v-dafxmb .framer-vhnb57, .framer-LaQ5I.framer-v-4kr172 .framer-vhnb57 { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 260px); }\",\".framer-LaQ5I.framer-v-1oq8r3 .framer-1e27hq0, .framer-LaQ5I.framer-v-4kr172 .framer-1e27hq0 { gap: 8px; }\",\".framer-LaQ5I.framer-v-1oq8r3 .framer-1ouqr28-container, .framer-LaQ5I.framer-v-4kr172 .framer-1ouqr28-container { width: 90%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LaQ5I.framer-v-1oq8r3 .framer-1e27hq0 { gap: 0px; } .framer-LaQ5I.framer-v-1oq8r3 .framer-1e27hq0 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-LaQ5I.framer-v-1oq8r3 .framer-1e27hq0 > :first-child { margin-top: 0px; } .framer-LaQ5I.framer-v-1oq8r3 .framer-1e27hq0 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LaQ5I.framer-v-4kr172 .framer-1e27hq0 { gap: 0px; } .framer-LaQ5I.framer-v-4kr172 .framer-1e27hq0 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-LaQ5I.framer-v-4kr172 .framer-1e27hq0 > :first-child { margin-top: 0px; } .framer-LaQ5I.framer-v-4kr172 .framer-1e27hq0 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 482.5\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"thAKnAyWa\":{\"layout\":[\"fixed\",\"auto\"]},\"avFDvCRtQ\":{\"layout\":[\"fixed\",\"auto\"]},\"AuYWJD_yp\":{\"layout\":[\"fixed\",\"auto\"]},\"rKVRDhJBF\":{\"layout\":[\"fixed\",\"auto\"]},\"BOoZpp7OK\":{\"layout\":[\"fixed\",\"auto\"]},\"OQfD1a2J4\":{\"layout\":[\"fixed\",\"auto\"]},\"plJryGGGN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ZYZ194zvr\":\"image\",\"GdNar7EyN\":\"title\",\"Omtc4De91\":\"previewText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerrbn6MRyRS=withCSS(Component,css,\"framer-LaQ5I\");export default Framerrbn6MRyRS;Framerrbn6MRyRS.displayName=\"News / News Article\";Framerrbn6MRyRS.defaultProps={height:482.5,width:390};addPropertyControls(Framerrbn6MRyRS,{variant:{options:[\"ek9MYVdoz\",\"thAKnAyWa\",\"avFDvCRtQ\",\"AuYWJD_yp\",\"rKVRDhJBF\",\"BOoZpp7OK\",\"OQfD1a2J4\",\"plJryGGGN\"],optionTitles:[\"Article Card 1x1\",\"Article Card 1x1 Hover\",\"Article Card Hover Out\",\"Article Card - Wide\",\"Article Card Wide - Hover\",\"Article Card - Hover Out\",\"Tablet/Mobile - 1x1\",\"Tablet/Mobile - Wide\"],title:\"Variant\",type:ControlType.Enum},ZYZ194zvr:{__defaultAssetReference:\"data:framer/asset-reference,nxFofrYSdyDPjS3Q1fnAXJx90Q.jpg?originalFilename=photo-1711976972831-d81e4a3c9d33%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfGFsbHw0fHx8fHx8Mnx8MTcxMjIyODQzNXw%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},GdNar7EyN:{defaultValue:\"A Letter From the Founders\",displayTextArea:false,title:\"Title\",type:ControlType.String},Omtc4De91:{defaultValue:\"Join us on a journey through the digital landscape as we explore the transformative power of technology in today's interconnected world.\",displayTextArea:false,title:\"Preview Text\",type:ControlType.String}});addFonts(Framerrbn6MRyRS,[{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\"}]},...AnimatorFonts,...TextClipFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerrbn6MRyRS\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"thAKnAyWa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"avFDvCRtQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AuYWJD_yp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rKVRDhJBF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BOoZpp7OK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OQfD1a2J4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"plJryGGGN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"ZYZ194zvr\\\":\\\"image\\\",\\\"GdNar7EyN\\\":\\\"title\\\",\\\"Omtc4De91\\\":\\\"previewText\\\"}\",\"framerIntrinsicWidth\":\"390\",\"framerIntrinsicHeight\":\"482.5\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rbn6MRyRS.map"],
  "mappings": "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",
  "names": ["Animator", "props", "pathAnimation", "from", "to", "animate", "shouldLoop", "loopOptions", "slots", "endCircle", "hasChildren", "customShape", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "firstChild", "getFirstChild", "svgChild", "isSpring", "shapeTransition", "pathLength", "useMotionValue", "opacity", "useTransform", "shapeProps", "isCanvas", "RenderTarget", "attributes", "pathD", "stroke", "strokeWidth", "strokeLinecap", "strokeLinejoin", "element", "splitAndReplace", "svgViewbox", "motion", "addPropertyControls", "ControlType", "string", "child", "TextClip", "props", "text", "lineCount", "textStyle", "letterMode", "maxCharacters", "lineClampStyle", "transformStyle", "containerStyle", "getJustifyContent", "getAlignItems", "textAlign", "p", "motion", "addPropertyControls", "ControlType", "Test_default", "fontStore", "fonts", "css", "className", "AnimatorFonts", "getFonts", "Animator", "TextClipFonts", "Test_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "previewText", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ZYZ194zvr", "GdNar7EyN", "Omtc4De91", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterz8ts5e", "args", "onMouseLeavejdk6wy", "onAppear1dfv9eg", "onMouseEnter1jyosp4", "onMouseEnterqtpg1t", "onMouseLeave1jlj7ph", "onAppear6i0h3w", "onMouseEnter198phqx", "useOnVariantChange", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "SVG", "ComponentViewportProvider", "css", "Framerrbn6MRyRS", "withCSS", "rbn6MRyRS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
