{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/t8Qr6L6FYBKrlEUWDdZt/FZWC9nUSzGqTV910KYCC/RelativeDateLabel.js", "ssg:https://framerusercontent.com/modules/xom04q54siTMKJ0mS31E/FIYcJmi8bOb6RCp4kood/DIpQg_4AY.js", "ssg:https://framerusercontent.com/modules/8Pz9l9SyXY2hf5QBI343/ga3dprvWn7IS7cgDeOM3/Limit_1Line.js", "ssg:https://framerusercontent.com/modules/SbPxcrip147Nq5qgDXc3/kVyrYScUapaoEvwSrQD7/DIpQg_4AY.js", "ssg:https://framerusercontent.com/modules/SbPxcrip147Nq5qgDXc3/kVyrYScUapaoEvwSrQD7/DIpQg_4AY-0.js", "ssg:https://framerusercontent.com/modules/SbPxcrip147Nq5qgDXc3/kVyrYScUapaoEvwSrQD7/DIpQg_4AY-1.js", "ssg:https://framerusercontent.com/modules/SbPxcrip147Nq5qgDXc3/kVyrYScUapaoEvwSrQD7/DIpQg_4AY-2.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState,useEffect}from\"react\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n */export default function RelativeDateLabel(props){const{date,locale,format,textCase,transform}=props;const[isPast,setIsPast]=useState(true);const[relativeTitle,setRelativeTitle]=useState(\"\");useEffect(()=>{if(!date){return;}const compareDate=new Date(date);const now=new Date;now.setHours(0,0,0,0)// Reset time to 12 AM\n;setIsPast(now>compareDate);const formatter=new Intl.RelativeTimeFormat(locale.length>0?locale:undefined,{numeric:format.numeric,style:format.showLabel?format.style:\"narrow\"});const DIVISIONS=[{amount:60,name:\"seconds\"},{amount:60,name:\"minutes\"},{amount:24,name:\"hours\"},{amount:7,name:\"days\"},{amount:4.34524,name:\"weeks\"},{amount:12,name:\"months\"},{amount:Number.POSITIVE_INFINITY,name:\"years\"}];function formatTimeAgo(date){let duration=(date-now)/1e3;const autoUnit=props.unit==\"auto\";let unit=\"\";for(let i=0;i<DIVISIONS.length;i++){const division=DIVISIONS[i];if(autoUnit?Math.abs(duration)<division.amount:division.name==props.unit){unit=division.name;break;}duration/=division.amount;}let result=formatter.format(Math.round(duration),unit).replace(/^in\\s+/,\"\").replace(/\\s+ago$/,\"\");if(!format.showLabel){result=result.replace(/[a-zA-Z]/g,\"\");}if(!format.commas){result=result.replace(/,/g,\"\");}return result;}setRelativeTitle(formatTimeAgo(compareDate));},[date,format,props.unit,format.commas]);return /*#__PURE__*/_jsx(\"p\",{style:{color:props.fontColor,userSelect:props.textSelect?\"auto\":\"none\",whiteSpace:\"pre\",margin:0,...props.font},children:date?/*#__PURE__*/_jsxs(_Fragment,{children:[isPast?transform.pastPrefix:transform.futurePrefix,/*#__PURE__*/_jsx(\"span\",{style:{textTransform:textCase},children:relativeTitle}),isPast?transform.pastSuffix:transform.futureSuffix]}):\"Set a date value.\"});}RelativeDateLabel.displayName=\"Relative Date Label\";addPropertyControls(RelativeDateLabel,{date:{type:ControlType.Date},unit:{type:ControlType.Enum,defaultValue:\"auto\",options:[\"auto\",\"years\",\"months\",\"weeks\",\"days\",\"hours\",\"minutes\",\"seconds\"],optionTitles:[\"Auto\",\"Years\",\"Months\",\"Weeks\",\"Days\",\"Hours\",\"Minutes\",\"Seconds\"]},locale:{type:ControlType.String,placeholder:`Auto (${typeof navigator!==\"undefined\"?navigator.language:\"\"})`},format:{type:ControlType.Object,buttonTitle:\"Options\",controls:{numeric:{type:ControlType.Enum,defaultValue:\"always\",options:[\"always\",\"auto\"],optionTitles:[\"Always\",\"Auto\"],displaySegmentedControl:true,description:\"When set to *Auto*, some values are converted:\\n\\n1 day ago \u2192 yesterday\\nin 0 days \u2192 today\\n in 1 day \u2192 tomorrow\"},showLabel:{type:ControlType.Boolean,defaultValue:true},style:{type:ControlType.Enum,defaultValue:\"long\",options:[\"long\",\"short\",\"narrow\"],optionTitles:[\"Long\",\"Short\",\"Narrow\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\",hidden:props=>!props.showLabel},commas:{type:ControlType.Boolean,defaultValue:true}}},transform:{type:ControlType.Object,buttonTitle:\"Prefix & Suffix\",controls:{pastPrefix:{type:ControlType.String,defaultValue:\"\"},pastSuffix:{type:ControlType.String,defaultValue:\" ago\"},futurePrefix:{type:ControlType.String,defaultValue:\"\"},futureSuffix:{type:ControlType.String,defaultValue:\" from now\"}}},fontColor:{type:ControlType.Color,defaultValue:\"#000\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:16,lineHeight:1}},textCase:{type:ControlType.Enum,defaultValue:\"lowercase\",options:[\"capitalize\",\"uppercase\",\"lowercase\"],optionTitles:[\"Capitalized\",\"UPPERCASE\",\"lowercase\"]},textSelect:{type:ControlType.Boolean,defaultValue:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RelativeDateLabel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RelativeDateLabel.map", "// Generated by Framer (a793b9c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import RelativeDateLabel from\"https://framerusercontent.com/modules/t8Qr6L6FYBKrlEUWDdZt/FZWC9nUSzGqTV910KYCC/RelativeDateLabel.js\";import FavouriteButton from\"https://framerusercontent.com/modules/Y1ZXBoo8yVz7K3MPQoYE/uswne52PdDbnKkJi1SD6/FavouriteButton.js\";import{TruncatedText as TruncatedText1}from\"https://framerusercontent.com/modules/8Pz9l9SyXY2hf5QBI343/ga3dprvWn7IS7cgDeOM3/Limit_1Line.js\";import{TruncatedText}from\"https://framerusercontent.com/modules/cjxe2A1yuemZPMEHBEH3/Z8rtsR2GAecKIZosb1Yj/TextLineLimit.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/1q8a7h5ps86ynwAJDGFO/y7nv0FBFqTcEl9APN9y4/AJ7O_cpVH.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/5QWdrUItdz3Apzjl2ZDv/AR8xtEICnYwG0dQQaGOI/OAsJyVAtA.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/t23CduwW7bYOCMoZyDJK/pFlSvjJpZDx2pypisslF/RbFFv5sEP.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/524izVVceAeknhs06Npx/0nAxK4YHuCknysZcE07P/WoEp7uPTV.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/SbPxcrip147Nq5qgDXc3/kVyrYScUapaoEvwSrQD7/DIpQg_4AY.js\";import BtnMain from\"https://framerusercontent.com/modules/uPQ8cIvtNICtGHL0hbTL/ZLpf4smjO9YByWpIrJ21/C2yugTBjc.js\";const RelativeDateLabelFonts=getFonts(RelativeDateLabel);const RichTextTruncatedTexty8at4d=withCodeBoundaryForOverrides(RichText,{nodeId:\"fuqX4XiBC\",override:TruncatedText,scopeId:\"DIpQg_4AY\"});const RichTextTruncatedText1gycmfe=withCodeBoundaryForOverrides(RichText,{nodeId:\"gKCXbYa6y\",override:TruncatedText1,scopeId:\"DIpQg_4AY\"});const FavouriteButtonFonts=getFonts(FavouriteButton);const RichTextTruncatedTextir2arx=withCodeBoundaryForOverrides(RichText,{nodeId:\"japARFEJDsb6BJPERC\",override:TruncatedText,scopeId:\"DIpQg_4AY\"});const RichTextTruncatedText11jn0k5o=withCodeBoundaryForOverrides(RichText,{nodeId:\"n8EiodVez\",override:TruncatedText1,scopeId:\"DIpQg_4AY\"});const BtnMainFonts=getFonts(BtnMain);const BtnMainControls=getPropertyControls(BtnMain);const cycleOrder=[\"japARFEJDDX0fLkjFu\",\"RYOmmNrfJ\",\"fvm43XWG7\",\"ByFOfmZdc\",\"S_MJ8GOQX\",\"r2_WlRdMS\",\"b4eCcYeO_\",\"tfUmsGb_D\"];const serializationHash=\"framer-W5RWz\";const variantClassNames={b4eCcYeO_:\"framer-v-1a0msxf\",ByFOfmZdc:\"framer-v-1j9nbk3\",fvm43XWG7:\"framer-v-6l7hje\",japARFEJDDX0fLkjFu:\"framer-v-1mxvtm1\",r2_WlRdMS:\"framer-v-1m4v23j\",RYOmmNrfJ:\"framer-v-gfp8ug\",S_MJ8GOQX:\"framer-v-1k3965h\",tfUmsGb_D:\"framer-v-mq9h5b\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};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 humanReadableEnumMap={\"link_arrow Active\":\"DDSdEJ85C\",\"link_external Active\":\"JBDHINcaV\",\"link_search Active\":\"ciqbNN2gR\",\"link_solo Active\":\"EWdJipBMQ\",btn_arrow:\"w4uazZEnU\",btn_back:\"FNqDXW9Ip\",btn_biography:\"bNmlVT3Gs\",btn_close:\"ocpPlyTgH\",btn_external:\"H5pcJqjGG\",btn_search:\"n387S3L6w\",btn_solo:\"LKs4H5Oki\",link_arrow_BLUE:\"gbMqBTjSS\",link_arrow:\"dzkX4d6Md\",link_external_BLUE:\"xMeHf_tK3\",link_external:\"KVZrBWyo_\",link_search:\"bIN2fpJlv\",link_solo:\"hP6qK3IAj\",link_tiny_external:\"qIrxJX4Z4\",link_tiny_hold:\"J2bpyOQlM\",shdw_arrow:\"Y1CJFYIsh\",shdw_back:\"FmX8uqIC0\",shdw_external:\"AmGuKtOU5\",shdw_search:\"NlLFXy67G\",shdw_solo:\"id_qumWxU\"};const humanReadableVariantMap={\"Horizontal Large - L\":\"r2_WlRdMS\",\"Horizontal Large - R\":\"b4eCcYeO_\",\"Vertical Desktop\":\"japARFEJDDX0fLkjFu\",Horizontal:\"fvm43XWG7\",HorizontalMobile:\"S_MJ8GOQX\",HorizontalTablet:\"ByFOfmZdc\",OneSentence:\"tfUmsGb_D\",VerticalMobile:\"RYOmmNrfJ\"};const getProps=({buttonExt,buttonInt,cMSCollectionName,cursor,date,dateFromNowAgo,dateFromNowYN,favorite,height,id,image,linkExt,llnkInt,textExt,textInt,textPreview,textTitle,width,yNBtnExt,yNBtnInt,yNPreviewText,...props})=>{return{...props,aH_4DM1cU:humanReadableEnumMap[buttonExt]??buttonExt??props.aH_4DM1cU??\"KVZrBWyo_\",bi64NSM2M:humanReadableEnumMap[buttonInt]??buttonInt??props.bi64NSM2M??\"Y1CJFYIsh\",ENotc_C3s:textTitle??props.ENotc_C3s??\"Basic Title\",FoXNS1Tb1:yNBtnInt??props.FoXNS1Tb1??true,GQuTh9IEm:textExt??props.GQuTh9IEm??\"Learn More\",H7grRfvAG:favorite??props.H7grRfvAG,nruKWOIgP:cursor??props.nruKWOIgP,QSFlnvNXM:llnkInt??props.QSFlnvNXM,SNF5Wssrh:cMSCollectionName??props.SNF5Wssrh??\"Articles\",SXjqV7i2V:dateFromNowAgo??props.SXjqV7i2V,tO6KS_5iA:yNPreviewText??props.tO6KS_5iA??true,uSmqLGuW4:textInt??props.uSmqLGuW4??\"Learn More\",variant:humanReadableVariantMap[props.variant]??props.variant??\"japARFEJDDX0fLkjFu\",VtUGvu66Z:dateFromNowYN??props.VtUGvu66Z??true,w6yaeVPBQ:yNBtnExt??props.w6yaeVPBQ??true,wWPDyjp9I:linkExt??props.wWPDyjp9I,xvES4Zz3o:image??props.xvES4Zz3o,yZyBMfjIm:date??props.yZyBMfjIm??\"2024\",zAVSLWrkh:textPreview??props.zAVSLWrkh??\"Lorem ipsum amet, consectetur adipiscing elit. In pellentesque tellus lacinia, imperdiet\u2026\"};};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,xvES4Zz3o,yZyBMfjIm,VtUGvu66Z,SXjqV7i2V,ENotc_C3s,tO6KS_5iA,zAVSLWrkh,FoXNS1Tb1,bi64NSM2M,uSmqLGuW4,QSFlnvNXM,w6yaeVPBQ,aH_4DM1cU,GQuTh9IEm,wWPDyjp9I,nruKWOIgP,SNF5Wssrh,H7grRfvAG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"japARFEJDDX0fLkjFu\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"tfUmsGb_D\")return false;return true;};const visible=isSet(yZyBMfjIm);const isDisplayed1=value=>{if(baseVariant===\"S_MJ8GOQX\")return false;return value;};const isDisplayed2=()=>{if(baseVariant===\"tfUmsGb_D\")return true;return false;};const visible1=isSet(zAVSLWrkh);const isDisplayed3=(value,value1)=>{if(baseVariant===\"fvm43XWG7\")return value1;if(baseVariant===\"tfUmsGb_D\")return false;return value;};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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1mxvtm1\",className,classNames),\"data-framer-name\":\"Vertical Desktop\",layoutDependency:layoutDependency,layoutId:\"japARFEJDDX0fLkjFu\",ref:refBinding,style:{...style},...addPropertyOverrides({b4eCcYeO_:{\"data-framer-name\":\"Horizontal Large - R\"},ByFOfmZdc:{\"data-framer-name\":\"HorizontalTablet\"},fvm43XWG7:{\"data-framer-name\":\"Horizontal\"},r2_WlRdMS:{\"data-framer-name\":\"Horizontal Large - L\"},RYOmmNrfJ:{\"data-framer-name\":\"VerticalMobile\"},S_MJ8GOQX:{\"data-framer-name\":\"HorizontalMobile\"},tfUmsGb_D:{\"data-framer-name\":\"OneSentence\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-1jeus7z\",\"data-framer-name\":\"Image Container\",layoutDependency:layoutDependency,layoutId:\"japARFEJDCM58xGTMt\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},variants:{ByFOfmZdc:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},S_MJ8GOQX:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(xvES4Zz3o)},className:\"framer-6zt562\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"TntS3YV73\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},...addPropertyOverrides({b4eCcYeO_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.48)`,...toResponsiveImage(xvES4Zz3o)}},ByFOfmZdc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:\"70px\",...toResponsiveImage(xvES4Zz3o)}},fvm43XWG7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:\"100px\",...toResponsiveImage(xvES4Zz3o)}},r2_WlRdMS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} / 2)`,...toResponsiveImage(xvES4Zz3o)}},S_MJ8GOQX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:\"50px\",...toResponsiveImage(xvES4Zz3o)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-duuaos\",\"data-framer-name\":\"content\",layoutDependency:layoutDependency,layoutId:\"japARFEJDWaxIUEx00\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e6al71\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"L9TnOSL9l\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hxvugx\",layoutDependency:layoutDependency,layoutId:\"K_5WwRehh\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d32joc\",layoutDependency:layoutDependency,layoutId:\"A4GEZW3Hw\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16dbvf0\",layoutDependency:layoutDependency,layoutId:\"PlhZgC9eB\",children:[visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z6zar6\",\"data-styles-preset\":\"WoEp7uPTV\",children:\"2024\"})}),className:\"framer-9sjaqt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"japARFEJDxJALR0MtG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yZyBMfjIm,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1(VtUGvu66Z)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z6zar6\",\"data-styles-preset\":\"WoEp7uPTV\",children:\"|\"})}),className:\"framer-18ng34o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I01GUWCsi\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),VtUGvu66Z&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qqpr18-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"LoW100Zug-container\",nodeId:\"LoW100Zug\",rendersWithMotion:true,scopeId:\"DIpQg_4AY\",children:/*#__PURE__*/_jsx(RelativeDateLabel,{date:SXjqV7i2V,font:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\",format:{commas:true,numeric:\"always\",showLabel:true,style:\"long\"},height:\"100%\",id:\"LoW100Zug\",layoutId:\"LoW100Zug\",locale:\"\",textCase:\"uppercase\",textSelect:true,transform:{futurePrefix:\"\",futureSuffix:getLocalizedValue(\"v2\",activeLocale)??\" FROM NOW\",pastPrefix:\"\",pastSuffix:getLocalizedValue(\"v1\",activeLocale)??\" AGO\"},unit:\"auto\",width:\"100%\",...addPropertyOverrides({ByFOfmZdc:{font:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"10px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},style:{width:\"100%\"}},fvm43XWG7:{style:{width:\"100%\"}},RYOmmNrfJ:{font:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"10px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"}},S_MJ8GOQX:{font:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"10px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextTruncatedTexty8at4d,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-nyzh0h\",\"data-styles-preset\":\"AJ7O_cpVH\",children:\"Basic Title\"})}),className:\"framer-y8at4d\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fuqX4XiBC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ENotc_C3s,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichTextTruncatedText1gycmfe,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-25voyt\",\"data-styles-preset\":\"OAsJyVAtA\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-902520ce-0fa5-4df9-bd02-ff752e3098dd, rgb(0, 10, 35)))\"},children:\"Basic Title\"})}),className:\"framer-gycmfe\",\"data-framer-name\":\"one sentente\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gKCXbYa6y\",style:{\"--extracted-gdpscs\":\"var(--token-902520ce-0fa5-4df9-bd02-ff752e3098dd, rgb(0, 10, 35))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ENotc_C3s,verticalAlignment:\"top\",withExternalLayout:true})]}),H7grRfvAG&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1am7hrs-container\",\"data-framer-cursor\":nruKWOIgP,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"GwunZLbBv-container\",nodeId:\"GwunZLbBv\",rendersWithMotion:true,scopeId:\"DIpQg_4AY\",children:/*#__PURE__*/_jsx(FavouriteButton,{cmsCollectionName:SNF5Wssrh,colors:{iconOff:\"var(--token-220bcfc6-3a61-4cc3-a25e-916f28596927, rgb(184, 184, 184))\",iconOn:\"var(--token-971188d2-41b4-4af0-af64-2d33ba84a44c, rgb(250, 30, 75))\",shadowOff:\"\",shadowOn:\"\"},height:\"100%\",iconSize:24,id:\"GwunZLbBv\",layoutId:\"GwunZLbBv\",padding:12,paddingBottom:12,paddingIsMixed:false,paddingLeft:12,paddingRight:12,paddingTop:12,radius:0,radiusBottomLeft:0,radiusBottomRight:0,radiusIsMixed:false,radiusTopLeft:0,radiusTopRight:0,transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},width:\"100%\",...addPropertyOverrides({RYOmmNrfJ:{iconSize:18,padding:6,paddingBottom:6,paddingLeft:6,paddingRight:6,paddingTop:6},S_MJ8GOQX:{iconSize:18,padding:6,paddingBottom:6,paddingLeft:6,paddingRight:6,paddingTop:6},tfUmsGb_D:{iconSize:18,padding:6,paddingBottom:6,paddingLeft:6,paddingRight:6,paddingTop:6}},baseVariant,gestureVariant)})})})]}),isDisplayed3(visible1,tO6KS_5iA)&&/*#__PURE__*/_jsx(RichTextTruncatedTextir2arx,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lt7lly\",\"data-styles-preset\":\"RbFFv5sEP\",children:\"Lorem ipsum amet, consectetur adipiscing elit. In pellentesque tellus lacinia, imperdiet\u2026\"})}),className:\"framer-ir2arx\",\"data-framer-name\":\"two sentences\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"japARFEJDsb6BJPERC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zAVSLWrkh,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichTextTruncatedText11jn0k5o,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lt7lly\",\"data-styles-preset\":\"RbFFv5sEP\",children:\"Lorem ipsum amet, consectetur adipiscing elit. In pellentesque tellus lacinia, imperdiet\u2026\"})}),className:\"framer-1jn0k5o\",\"data-framer-name\":\"one sentence\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"n8EiodVez\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zAVSLWrkh,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f9y0kb\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"japARFEJDFGlUwzgTK\",children:[FoXNS1Tb1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+200+0+381.6+6.5,...addPropertyOverrides({b4eCcYeO_:{y:(componentViewport?.y||0)+0+0+381.6+6.5},ByFOfmZdc:{y:(componentViewport?.y||0)+0+0+375.6+6.5},fvm43XWG7:{y:(componentViewport?.y||0)+0+0+375.6+6.5},r2_WlRdMS:{y:(componentViewport?.y||0)+0+0+(0+365.6+(((componentViewport?.height||257)-0)*1-0-423.6)/1*1)+6.5},RYOmmNrfJ:{y:(componentViewport?.y||0)+0+170+0+389.6+6.5},S_MJ8GOQX:{y:(componentViewport?.y||0)+0+0+395+6.5},tfUmsGb_D:{y:(componentViewport?.y||0)+0+110+0+150.4+6.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-d73jtu-container\",layoutDependency:layoutDependency,layoutId:\"IPOig6NLG-container\",nodeId:\"IPOig6NLG\",rendersWithMotion:true,scopeId:\"DIpQg_4AY\",children:/*#__PURE__*/_jsx(BtnMain,{dljOPmJc4:false,eB0wE2ydn:\"var(--token-c08fff5b-c0a6-41dd-960f-4be87691ddef, rgb(85, 10, 195))\",height:\"100%\",id:\"IPOig6NLG\",JCxSmKyws:\"var(--token-6f5830f5-03af-4810-acf1-da0fd5d1efa6, rgb(255, 255, 255))\",jmLNA2lPB:QSFlnvNXM,layoutId:\"IPOig6NLG\",nTbpwY4Kp:false,oSo44Pfbb:nruKWOIgP,s9JYkVhh8:uSmqLGuW4,variant:bi64NSM2M,width:\"100%\",ZM1mAU9FT:\"7px 8px 7px 8px\",...addPropertyOverrides({ByFOfmZdc:{ZM1mAU9FT:\"3px 4px 3px 4px\"},S_MJ8GOQX:{ZM1mAU9FT:\"3px 4px 3px 4px\"}},baseVariant,gestureVariant)})})}),w6yaeVPBQ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+200+0+381.6+6.5,...addPropertyOverrides({b4eCcYeO_:{y:(componentViewport?.y||0)+0+0+381.6+6.5},ByFOfmZdc:{y:(componentViewport?.y||0)+0+0+375.6+6.5},fvm43XWG7:{y:(componentViewport?.y||0)+0+0+375.6+6.5},r2_WlRdMS:{y:(componentViewport?.y||0)+0+0+(0+365.6+(((componentViewport?.height||257)-0)*1-0-423.6)/1*1)+6.5},RYOmmNrfJ:{y:(componentViewport?.y||0)+0+170+0+389.6+6.5},S_MJ8GOQX:{y:(componentViewport?.y||0)+0+0+395+6.5},tfUmsGb_D:{y:(componentViewport?.y||0)+0+110+0+150.4+6.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pmtcjx-container\",layoutDependency:layoutDependency,layoutId:\"ts7Oru6yd-container\",nodeId:\"ts7Oru6yd\",rendersWithMotion:true,scopeId:\"DIpQg_4AY\",children:/*#__PURE__*/_jsx(BtnMain,{dljOPmJc4:true,eB0wE2ydn:\"var(--token-c08fff5b-c0a6-41dd-960f-4be87691ddef, rgb(85, 10, 195))\",height:\"100%\",id:\"ts7Oru6yd\",JCxSmKyws:\"var(--token-6f5830f5-03af-4810-acf1-da0fd5d1efa6, rgb(255, 255, 255))\",jmLNA2lPB:wWPDyjp9I,layoutId:\"ts7Oru6yd\",nTbpwY4Kp:false,oSo44Pfbb:nruKWOIgP,s9JYkVhh8:GQuTh9IEm,variant:aH_4DM1cU,width:\"100%\",ZM1mAU9FT:\"7px 8px 7px 8px\",...addPropertyOverrides({ByFOfmZdc:{ZM1mAU9FT:\"3px 4px 3px 4px\"},S_MJ8GOQX:{ZM1mAU9FT:\"3px 4px 3px 4px\"}},baseVariant,gestureVariant)})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-W5RWz.framer-moz5id, .framer-W5RWz .framer-moz5id { display: block; }\",\".framer-W5RWz.framer-1mxvtm1 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 262px; }\",\".framer-W5RWz .framer-1jeus7z { flex: none; height: 180px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-W5RWz .framer-6zt562 { -webkit-user-select: none; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; user-select: none; will-change: var(--framer-will-change-override, transform); }\",\".framer-W5RWz .framer-duuaos { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5RWz .framer-e6al71 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5RWz .framer-1hxvugx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5RWz .framer-1d32joc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-W5RWz .framer-16dbvf0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5RWz .framer-9sjaqt, .framer-W5RWz .framer-18ng34o { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-W5RWz .framer-1qqpr18-container, .framer-W5RWz .framer-1am7hrs-container, .framer-W5RWz .framer-d73jtu-container, .framer-W5RWz .framer-1pmtcjx-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-W5RWz .framer-y8at4d, .framer-W5RWz .framer-gycmfe, .framer-W5RWz .framer-ir2arx, .framer-W5RWz .framer-1jn0k5o { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-W5RWz .framer-f9y0kb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: 58px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W5RWz.framer-1mxvtm1, .framer-W5RWz .framer-duuaos, .framer-W5RWz .framer-e6al71, .framer-W5RWz .framer-1hxvugx, .framer-W5RWz .framer-1d32joc, .framer-W5RWz .framer-16dbvf0, .framer-W5RWz .framer-f9y0kb { gap: 0px; } .framer-W5RWz.framer-1mxvtm1 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-W5RWz.framer-1mxvtm1 > :first-child, .framer-W5RWz .framer-duuaos > :first-child, .framer-W5RWz .framer-e6al71 > :first-child, .framer-W5RWz .framer-1d32joc > :first-child { margin-top: 0px; } .framer-W5RWz.framer-1mxvtm1 > :last-child, .framer-W5RWz .framer-duuaos > :last-child, .framer-W5RWz .framer-e6al71 > :last-child, .framer-W5RWz .framer-1d32joc > :last-child { margin-bottom: 0px; } .framer-W5RWz .framer-duuaos > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-W5RWz .framer-e6al71 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-W5RWz .framer-1hxvugx > *, .framer-W5RWz .framer-f9y0kb > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-W5RWz .framer-1hxvugx > :first-child, .framer-W5RWz .framer-16dbvf0 > :first-child, .framer-W5RWz .framer-f9y0kb > :first-child { margin-left: 0px; } .framer-W5RWz .framer-1hxvugx > :last-child, .framer-W5RWz .framer-16dbvf0 > :last-child, .framer-W5RWz .framer-f9y0kb > :last-child { margin-right: 0px; } .framer-W5RWz .framer-1d32joc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-W5RWz .framer-16dbvf0 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-W5RWz.framer-v-gfp8ug.framer-1mxvtm1, .framer-W5RWz.framer-v-mq9h5b.framer-1mxvtm1 { gap: 10px; }\",\".framer-W5RWz.framer-v-gfp8ug .framer-1jeus7z { height: 160px; }\",\".framer-W5RWz.framer-v-gfp8ug .framer-e6al71 { gap: 12px; }\",\".framer-W5RWz.framer-v-gfp8ug .framer-1d32joc, .framer-W5RWz.framer-v-mq9h5b .framer-1d32joc { justify-content: flex-start; }\",\".framer-W5RWz.framer-v-gfp8ug .framer-16dbvf0 { gap: 4px; }\",\".framer-W5RWz.framer-v-gfp8ug .framer-f9y0kb, .framer-W5RWz.framer-v-mq9h5b .framer-f9y0kb { gap: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W5RWz.framer-v-gfp8ug.framer-1mxvtm1, .framer-W5RWz.framer-v-gfp8ug .framer-e6al71, .framer-W5RWz.framer-v-gfp8ug .framer-16dbvf0, .framer-W5RWz.framer-v-gfp8ug .framer-f9y0kb { gap: 0px; } .framer-W5RWz.framer-v-gfp8ug.framer-1mxvtm1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-W5RWz.framer-v-gfp8ug.framer-1mxvtm1 > :first-child, .framer-W5RWz.framer-v-gfp8ug .framer-e6al71 > :first-child { margin-top: 0px; } .framer-W5RWz.framer-v-gfp8ug.framer-1mxvtm1 > :last-child, .framer-W5RWz.framer-v-gfp8ug .framer-e6al71 > :last-child { margin-bottom: 0px; } .framer-W5RWz.framer-v-gfp8ug .framer-e6al71 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-W5RWz.framer-v-gfp8ug .framer-16dbvf0 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-W5RWz.framer-v-gfp8ug .framer-16dbvf0 > :first-child, .framer-W5RWz.framer-v-gfp8ug .framer-f9y0kb > :first-child { margin-left: 0px; } .framer-W5RWz.framer-v-gfp8ug .framer-16dbvf0 > :last-child, .framer-W5RWz.framer-v-gfp8ug .framer-f9y0kb > :last-child { margin-right: 0px; } .framer-W5RWz.framer-v-gfp8ug .framer-f9y0kb > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",\".framer-W5RWz.framer-v-6l7hje.framer-1mxvtm1 { flex-direction: row; width: 613px; }\",\".framer-W5RWz.framer-v-6l7hje .framer-1jeus7z { height: 70px; order: 0; width: 100px; }\",\".framer-W5RWz.framer-v-6l7hje .framer-duuaos, .framer-W5RWz.framer-v-1j9nbk3 .framer-duuaos, .framer-W5RWz.framer-v-1k3965h .framer-duuaos { flex: 1 0 0px; gap: 10px; order: 1; width: 1px; }\",\".framer-W5RWz.framer-v-6l7hje .framer-e6al71 { overflow: hidden; }\",\".framer-W5RWz.framer-v-6l7hje .framer-1hxvugx, .framer-W5RWz.framer-v-6l7hje .framer-9sjaqt, .framer-W5RWz.framer-v-1j9nbk3 .framer-9sjaqt, .framer-W5RWz.framer-v-1k3965h .framer-1hxvugx, .framer-W5RWz.framer-v-1k3965h .framer-9sjaqt { order: 0; }\",\".framer-W5RWz.framer-v-6l7hje .framer-18ng34o, .framer-W5RWz.framer-v-6l7hje .framer-ir2arx, .framer-W5RWz.framer-v-1j9nbk3 .framer-18ng34o, .framer-W5RWz.framer-v-1k3965h .framer-ir2arx { order: 1; }\",\".framer-W5RWz.framer-v-6l7hje .framer-1qqpr18-container, .framer-W5RWz.framer-v-1j9nbk3 .framer-1qqpr18-container { flex: 1 0 0px; order: 2; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W5RWz.framer-v-6l7hje.framer-1mxvtm1, .framer-W5RWz.framer-v-6l7hje .framer-duuaos { gap: 0px; } .framer-W5RWz.framer-v-6l7hje.framer-1mxvtm1 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-W5RWz.framer-v-6l7hje.framer-1mxvtm1 > :first-child { margin-left: 0px; } .framer-W5RWz.framer-v-6l7hje.framer-1mxvtm1 > :last-child { margin-right: 0px; } .framer-W5RWz.framer-v-6l7hje .framer-duuaos > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-W5RWz.framer-v-6l7hje .framer-duuaos > :first-child { margin-top: 0px; } .framer-W5RWz.framer-v-6l7hje .framer-duuaos > :last-child { margin-bottom: 0px; } }\",\".framer-W5RWz.framer-v-1j9nbk3.framer-1mxvtm1 { flex-direction: row; gap: 15px; width: 613px; }\",\".framer-W5RWz.framer-v-1j9nbk3 .framer-1jeus7z { height: 50px; order: 0; width: 70px; }\",\".framer-W5RWz.framer-v-1j9nbk3 .framer-16dbvf0 { gap: 5px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W5RWz.framer-v-1j9nbk3.framer-1mxvtm1, .framer-W5RWz.framer-v-1j9nbk3 .framer-duuaos, .framer-W5RWz.framer-v-1j9nbk3 .framer-16dbvf0 { gap: 0px; } .framer-W5RWz.framer-v-1j9nbk3.framer-1mxvtm1 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-W5RWz.framer-v-1j9nbk3.framer-1mxvtm1 > :first-child, .framer-W5RWz.framer-v-1j9nbk3 .framer-16dbvf0 > :first-child { margin-left: 0px; } .framer-W5RWz.framer-v-1j9nbk3.framer-1mxvtm1 > :last-child, .framer-W5RWz.framer-v-1j9nbk3 .framer-16dbvf0 > :last-child { margin-right: 0px; } .framer-W5RWz.framer-v-1j9nbk3 .framer-duuaos > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-W5RWz.framer-v-1j9nbk3 .framer-duuaos > :first-child { margin-top: 0px; } .framer-W5RWz.framer-v-1j9nbk3 .framer-duuaos > :last-child { margin-bottom: 0px; } .framer-W5RWz.framer-v-1j9nbk3 .framer-16dbvf0 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-W5RWz.framer-v-1k3965h.framer-1mxvtm1 { flex-direction: row; gap: 10px; width: 613px; }\",\".framer-W5RWz.framer-v-1k3965h .framer-1jeus7z { height: 50px; order: 0; width: 50px; }\",\".framer-W5RWz.framer-v-1k3965h .framer-16dbvf0 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 5px; }\",\".framer-W5RWz.framer-v-1k3965h .framer-1qqpr18-container { order: 2; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W5RWz.framer-v-1k3965h.framer-1mxvtm1, .framer-W5RWz.framer-v-1k3965h .framer-duuaos, .framer-W5RWz.framer-v-1k3965h .framer-16dbvf0 { gap: 0px; } .framer-W5RWz.framer-v-1k3965h.framer-1mxvtm1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-W5RWz.framer-v-1k3965h.framer-1mxvtm1 > :first-child { margin-left: 0px; } .framer-W5RWz.framer-v-1k3965h.framer-1mxvtm1 > :last-child { margin-right: 0px; } .framer-W5RWz.framer-v-1k3965h .framer-duuaos > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-W5RWz.framer-v-1k3965h .framer-duuaos > :first-child, .framer-W5RWz.framer-v-1k3965h .framer-16dbvf0 > :first-child { margin-top: 0px; } .framer-W5RWz.framer-v-1k3965h .framer-duuaos > :last-child, .framer-W5RWz.framer-v-1k3965h .framer-16dbvf0 > :last-child { margin-bottom: 0px; } .framer-W5RWz.framer-v-1k3965h .framer-16dbvf0 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",\".framer-W5RWz.framer-v-1m4v23j.framer-1mxvtm1 { flex-direction: row; height: 257px; width: 645px; }\",\".framer-W5RWz.framer-v-1m4v23j .framer-1jeus7z { height: 100%; width: 50%; }\",\".framer-W5RWz.framer-v-1m4v23j .framer-duuaos { flex: 1 0 0px; gap: unset; height: 100%; justify-content: space-between; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W5RWz.framer-v-1m4v23j.framer-1mxvtm1, .framer-W5RWz.framer-v-1m4v23j .framer-duuaos { gap: 0px; } .framer-W5RWz.framer-v-1m4v23j.framer-1mxvtm1 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-W5RWz.framer-v-1m4v23j.framer-1mxvtm1 > :first-child { margin-left: 0px; } .framer-W5RWz.framer-v-1m4v23j.framer-1mxvtm1 > :last-child { margin-right: 0px; } .framer-W5RWz.framer-v-1m4v23j .framer-duuaos > *, .framer-W5RWz.framer-v-1m4v23j .framer-duuaos > :first-child, .framer-W5RWz.framer-v-1m4v23j .framer-duuaos > :last-child { margin: 0px; } }\",\".framer-W5RWz.framer-v-1a0msxf.framer-1mxvtm1 { flex-direction: row; height: 210px; width: 645px; }\",\".framer-W5RWz.framer-v-1a0msxf .framer-1jeus7z { height: 100%; order: 1; width: 48%; }\",\".framer-W5RWz.framer-v-1a0msxf .framer-duuaos { flex: 1 0 0px; order: 0; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W5RWz.framer-v-1a0msxf.framer-1mxvtm1 { gap: 0px; } .framer-W5RWz.framer-v-1a0msxf.framer-1mxvtm1 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-W5RWz.framer-v-1a0msxf.framer-1mxvtm1 > :first-child { margin-left: 0px; } .framer-W5RWz.framer-v-1a0msxf.framer-1mxvtm1 > :last-child { margin-right: 0px; } }\",\".framer-W5RWz.framer-v-mq9h5b .framer-1jeus7z { height: 100px; }\",\".framer-W5RWz.framer-v-mq9h5b .framer-duuaos, .framer-W5RWz.framer-v-mq9h5b .framer-e6al71 { gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W5RWz.framer-v-mq9h5b.framer-1mxvtm1, .framer-W5RWz.framer-v-mq9h5b .framer-duuaos, .framer-W5RWz.framer-v-mq9h5b .framer-e6al71, .framer-W5RWz.framer-v-mq9h5b .framer-f9y0kb { gap: 0px; } .framer-W5RWz.framer-v-mq9h5b.framer-1mxvtm1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-W5RWz.framer-v-mq9h5b.framer-1mxvtm1 > :first-child, .framer-W5RWz.framer-v-mq9h5b .framer-duuaos > :first-child, .framer-W5RWz.framer-v-mq9h5b .framer-e6al71 > :first-child { margin-top: 0px; } .framer-W5RWz.framer-v-mq9h5b.framer-1mxvtm1 > :last-child, .framer-W5RWz.framer-v-mq9h5b .framer-duuaos > :last-child, .framer-W5RWz.framer-v-mq9h5b .framer-e6al71 > :last-child { margin-bottom: 0px; } .framer-W5RWz.framer-v-mq9h5b .framer-duuaos > *, .framer-W5RWz.framer-v-mq9h5b .framer-e6al71 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-W5RWz.framer-v-mq9h5b .framer-f9y0kb > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-W5RWz.framer-v-mq9h5b .framer-f9y0kb > :first-child { margin-left: 0px; } .framer-W5RWz.framer-v-mq9h5b .framer-f9y0kb > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 408\n * @framerIntrinsicWidth 262\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RYOmmNrfJ\":{\"layout\":[\"fixed\",\"auto\"]},\"fvm43XWG7\":{\"layout\":[\"fixed\",\"auto\"]},\"ByFOfmZdc\":{\"layout\":[\"fixed\",\"auto\"]},\"S_MJ8GOQX\":{\"layout\":[\"fixed\",\"auto\"]},\"r2_WlRdMS\":{\"layout\":[\"fixed\",\"fixed\"]},\"b4eCcYeO_\":{\"layout\":[\"fixed\",\"fixed\"]},\"tfUmsGb_D\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"xvES4Zz3o\":\"image\",\"yZyBMfjIm\":\"date\",\"VtUGvu66Z\":\"dateFromNowYN\",\"SXjqV7i2V\":\"dateFromNowAgo\",\"ENotc_C3s\":\"textTitle\",\"tO6KS_5iA\":\"yNPreviewText\",\"zAVSLWrkh\":\"textPreview\",\"FoXNS1Tb1\":\"yNBtnInt\",\"bi64NSM2M\":\"buttonInt\",\"uSmqLGuW4\":\"textInt\",\"QSFlnvNXM\":\"llnkInt\",\"w6yaeVPBQ\":\"yNBtnExt\",\"aH_4DM1cU\":\"buttonExt\",\"GQuTh9IEm\":\"textExt\",\"wWPDyjp9I\":\"linkExt\",\"nruKWOIgP\":\"cursor\",\"SNF5Wssrh\":\"cMSCollectionName\",\"H7grRfvAG\":\"favorite\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDIpQg_4AY=withCSS(Component,css,\"framer-W5RWz\");export default FramerDIpQg_4AY;FramerDIpQg_4AY.displayName=\"Main Card\";FramerDIpQg_4AY.defaultProps={height:408,width:262};addPropertyControls(FramerDIpQg_4AY,{variant:{options:[\"japARFEJDDX0fLkjFu\",\"RYOmmNrfJ\",\"fvm43XWG7\",\"ByFOfmZdc\",\"S_MJ8GOQX\",\"r2_WlRdMS\",\"b4eCcYeO_\",\"tfUmsGb_D\"],optionTitles:[\"Vertical Desktop\",\"VerticalMobile\",\"Horizontal\",\"HorizontalTablet\",\"HorizontalMobile\",\"Horizontal Large - L\",\"Horizontal Large - R\",\"OneSentence\"],title:\"Variant\",type:ControlType.Enum},xvES4Zz3o:{title:\"Image\",type:ControlType.ResponsiveImage},yZyBMfjIm:{defaultValue:\"2024\",displayTextArea:false,title:\"Date\",type:ControlType.String},VtUGvu66Z:{defaultValue:true,title:\"Date from Now Y/N\",type:ControlType.Boolean},SXjqV7i2V:{title:\"Date From Now / Ago\",type:ControlType.Date},ENotc_C3s:{defaultValue:\"Basic Title\",displayTextArea:false,title:\"Text Title\",type:ControlType.String},tO6KS_5iA:{defaultValue:true,title:\"Y/N Preview Text\",type:ControlType.Boolean},zAVSLWrkh:{defaultValue:\"Lorem ipsum amet, consectetur adipiscing elit. In pellentesque tellus lacinia, imperdiet\u2026\",displayTextArea:false,title:\"Text Preview\",type:ControlType.String},FoXNS1Tb1:{defaultValue:true,title:\"Y/N Btn Int\",type:ControlType.Boolean},bi64NSM2M:BtnMainControls?.[\"variant\"]&&{...BtnMainControls[\"variant\"],defaultValue:\"Y1CJFYIsh\",description:undefined,hidden:undefined,title:\"Button Int\"},uSmqLGuW4:{defaultValue:\"Learn More\",displayTextArea:false,title:\"Text Int\",type:ControlType.String},QSFlnvNXM:{title:\"Llnk Int\",type:ControlType.Link},w6yaeVPBQ:{defaultValue:true,title:\"Y/N Btn Ext\",type:ControlType.Boolean},aH_4DM1cU:BtnMainControls?.[\"variant\"]&&{...BtnMainControls[\"variant\"],defaultValue:\"KVZrBWyo_\",description:undefined,hidden:undefined,title:\"Button Ext\"},GQuTh9IEm:{defaultValue:\"Learn More\",displayTextArea:false,title:\"Text Ext\",type:ControlType.String},wWPDyjp9I:{title:\"Link Ext\",type:ControlType.Link},nruKWOIgP:{title:\"Cursor\",type:ControlType.CustomCursor},SNF5Wssrh:{defaultValue:\"Articles\",placeholder:\"\",title:\"CMS Collection Name\",type:ControlType.String},H7grRfvAG:{defaultValue:false,title:\"Favorite\",type:ControlType.Boolean}});addFonts(FramerDIpQg_4AY,[{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:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXGKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1swZSAXcomDVmadSD2FlzBaI5loa26g.woff2\",weight:\"500\"}]},...RelativeDateLabelFonts,...FavouriteButtonFonts,...BtnMainFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDIpQg_4AY\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"262\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RYOmmNrfJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fvm43XWG7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ByFOfmZdc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"S_MJ8GOQX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r2_WlRdMS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"b4eCcYeO_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tfUmsGb_D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"408\",\"framerVariables\":\"{\\\"xvES4Zz3o\\\":\\\"image\\\",\\\"yZyBMfjIm\\\":\\\"date\\\",\\\"VtUGvu66Z\\\":\\\"dateFromNowYN\\\",\\\"SXjqV7i2V\\\":\\\"dateFromNowAgo\\\",\\\"ENotc_C3s\\\":\\\"textTitle\\\",\\\"tO6KS_5iA\\\":\\\"yNPreviewText\\\",\\\"zAVSLWrkh\\\":\\\"textPreview\\\",\\\"FoXNS1Tb1\\\":\\\"yNBtnInt\\\",\\\"bi64NSM2M\\\":\\\"buttonInt\\\",\\\"uSmqLGuW4\\\":\\\"textInt\\\",\\\"QSFlnvNXM\\\":\\\"llnkInt\\\",\\\"w6yaeVPBQ\\\":\\\"yNBtnExt\\\",\\\"aH_4DM1cU\\\":\\\"buttonExt\\\",\\\"GQuTh9IEm\\\":\\\"textExt\\\",\\\"wWPDyjp9I\\\":\\\"linkExt\\\",\\\"nruKWOIgP\\\":\\\"cursor\\\",\\\"SNF5Wssrh\\\":\\\"cMSCollectionName\\\",\\\"H7grRfvAG\\\":\\\"favorite\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";const lineCount=1// The number of lines to limit the text layer to.\n;export function TruncatedText(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{...props.style,display:\"-webkit-box\",WebkitLineClamp:lineCount,WebkitBoxOrient:\"vertical\",overflow:\"hidden\",textOverflow:\"ellipsis\"}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"TruncatedText\":{\"type\":\"reactHoc\",\"name\":\"TruncatedText\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Limit_1Line.map", "// Generated by Framer (a793b9c)\nimport*as localizedValues from\"./DIpQg_4AY-0.js\";import*as localizedValues1 from\"./DIpQg_4AY-1.js\";import*as localizedValues2 from\"./DIpQg_4AY-2.js\";const valuesByLocaleId={bs3EH3LTi:localizedValues,J2GUZckMJ:localizedValues2,NrJvIVnaW:localizedValues1};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\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z6zar6\",\"data-styles-preset\":\"WoEp7uPTV\",children:\"|\"})});export const v1=\"AGO\";export const v2=\"DESDE AHORA\";\nexport const __FramerMetadata__ = {\"exports\":{\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z6zar6\",\"data-styles-preset\":\"WoEp7uPTV\",children:\"|\"})});export const v1=\"AGO\";export const v2=\"A PARTIR DE AGORA\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z6zar6\",\"data-styles-preset\":\"WoEp7uPTV\",children:\"|\"})});export const v1=\"AGO\";export const v2=\"\\xc0 PARTIR DE MAINTENANT\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "RelativeDateLabel", "props", "date", "locale", "format", "textCase", "transform", "isPast", "setIsPast", "ye", "relativeTitle", "setRelativeTitle", "ue", "compareDate", "now", "formatter", "DIVISIONS", "formatTimeAgo", "duration", "autoUnit", "unit", "i", "division", "result", "p", "u", "l", "addPropertyControls", "ControlType", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "lineCount", "TruncatedText", "Component", "props", "p", "init_ssg_sandbox_shims", "DIpQg_4AY_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "init_ssg_sandbox_shims", "v0", "p", "x", "motion", "v1", "v2", "__FramerMetadata__", "DIpQg_4AY_1_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "init_ssg_sandbox_shims", "v0", "p", "x", "motion", "v1", "v2", "__FramerMetadata__", "DIpQg_4AY_2_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "init_ssg_sandbox_shims", "v0", "p", "x", "motion", "v1", "v2", "__FramerMetadata__", "valuesByLocaleId", "DIpQg_4AY_0_exports", "DIpQg_4AY_2_exports", "DIpQg_4AY_1_exports", "getLocalizedValue", "key", "locale", "values", "value", "RelativeDateLabelFonts", "getFonts", "RelativeDateLabel", "RichTextTruncatedTexty8at4d", "withCodeBoundaryForOverrides", "RichText2", "TruncatedText", "RichTextTruncatedText1gycmfe", "FavouriteButtonFonts", "FavouriteButton", "RichTextTruncatedTextir2arx", "RichTextTruncatedText11jn0k5o", "BtnMainFonts", "C2yugTBjc_default", "BtnMainControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "buttonExt", "buttonInt", "cMSCollectionName", "cursor", "date", "dateFromNowAgo", "dateFromNowYN", "favorite", "height", "id", "image", "linkExt", "llnkInt", "textExt", "textInt", "textPreview", "textTitle", "width", "yNBtnExt", "yNBtnInt", "yNPreviewText", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "xvES4Zz3o", "yZyBMfjIm", "VtUGvu66Z", "SXjqV7i2V", "ENotc_C3s", "tO6KS_5iA", "zAVSLWrkh", "FoXNS1Tb1", "bi64NSM2M", "uSmqLGuW4", "QSFlnvNXM", "w6yaeVPBQ", "aH_4DM1cU", "GQuTh9IEm", "wWPDyjp9I", "nruKWOIgP", "SNF5Wssrh", "H7grRfvAG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "visible", "isDisplayed1", "isDisplayed2", "visible1", "isDisplayed3", "value1", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "getLocalizedValue", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerDIpQg_4AY", "withCSS", "DIpQg_4AY_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
