{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/g8A5I3vQZWZOpcBX1QoU/9LlbYUuXYYt2NjX5RPBD/Institutional.js", "ssg:https://framer.com/m/News-Post-Thumbnail-oUia.js@jPv2UgI9Hd1ubKg5CVUj", "ssg:https://framerusercontent.com/modules/NbwXtPyEeRmp5zG44E82/J7mcribOH2B3DXVxajwt/DN3Gn8k0g.js", "ssg:https://framer.com/m/Button-Tag-CsYo.js@8EqX8fAAcN9kPX0wOGgv"],
  "sourcesContent": ["import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{createElement as _createElement}from\"react\";import{useEffect,useState,useCallback}from\"react\";import{truncateText,isTextOverLimit}from\"https://framerusercontent.com/modules/wKV5Ej9FgciEYk1Ktkvz/2EcXUoPOeCcc1RHa4qI4/Utils.js\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import NewsPostThumbnail from\"https://framer.com/m/News-Post-Thumbnail-oUia.js@jPv2UgI9Hd1ubKg5CVUj\";import ButtonTag from\"https://framer.com/m/Button-Tag-CsYo.js@8EqX8fAAcN9kPX0wOGgv\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withPostSlider(Component){return props=>{const[slots,setSlots]=useState([]);useEffect(()=>{fetch(\"https://mundo-mkt.vercel.app/api/institutional-posts?limit=12\").then(o=>o.json()).then(({data})=>{setSlots(data.map(o=>({key:o.id,image:o.imageUrl,category:\"\",text:o.title,link:\"https://mundodomarketing.com.br/institucional?slug=\"+o.slug,highlight:false,member:false})));});},[]);if(!slots.length){return null;}return /*#__PURE__*/_jsx(Component,{...props,slots:slots.map(o=>/*#__PURE__*/_jsx(NewsPostThumbnail,{...o,variant:\"Api\"}))});};}const usePageState=createStore({loading:true,hasMore:true,nextPage:1,loadPage:null});export function withPaginationButton(Component){return props=>{const[pageState,setPageState]=usePageState();if(!pageState.hasMore){return false;}return /*#__PURE__*/_jsx(Component,{onClick:()=>{var _pageState_loadPage;return(_pageState_loadPage=pageState.loadPage)===null||_pageState_loadPage===void 0?void 0:_pageState_loadPage.call(pageState,pageState.nextPage);},variant:pageState.loading?\"Loading\":\"Default\"});};}export function withPostListWithPagination(Component){return props=>{const[posts,setPosts]=useState([]);const[metadata,setMetadata]=useState({limit:10,offset:0,nextPage:0,page:0,hasNextPage:true,total:0});const[pageState,setPageState]=usePageState();const loadPage=useCallback((page,{limit=10}={})=>{setPageState(o=>({...o,loading:true}));fetch(\"https://mundo-mkt.vercel.app/api/institutional-posts?limit=\"+limit+\"&page=\"+page).then(o=>o.json()).then(result=>{setPosts(posts=>{return[...posts,...result.data.map(o=>({key:o.id,image:o.imageUrl,category:\"\",text:truncateText(o.title,90),tooltip:isTextOverLimit(o.title,90)?o.title:undefined,link:\"https://mundodomarketing.com.br/institucional?slug=\"+o.slug,highlight:false,member:false}))];});setMetadata(result.metadata);setPageState(o=>({...o,nextPage:result.metadata.nextPage,hasMore:result.metadata.hasNextPage}));}).finally(()=>{setPageState(o=>({...o,loading:false}));});},[]);useEffect(()=>{loadPage(1);setPageState(o=>({...o,loadPage}));},[]);if(!posts.length){return null;}return /*#__PURE__*/_jsx(Component,{...props,children:posts.map(o=>/*#__PURE__*/_jsx(NewsPostThumbnail,{...o,style:{maxWidth:\"100%\"},variant:\"Medium\"}))});};}const useReleaseId=()=>{const[releaseId,setReleaseId]=useState(null);useEffect(()=>{const search=new URLSearchParams(window.location.search);const releaseid=search.get(\"releaseid\");console.log(\"releaseid\",releaseid);if(releaseid){setReleaseId(releaseId);}else{setReleaseId(null);}},[]);return{releaseId,setReleaseId};};export function withReleaseIdRedirect(Component){return props=>{const{releaseId,setReleaseId}=useReleaseId();useEffect(()=>{if(releaseId){console.log(\"try redirect to releaseId\",releaseId);fetch(\"https://mundo-mkt.vercel.app/api/institutional-posts/releaseId/\"+releaseId).then(o=>o.json()).then(o=>{if(window.location.hostname===\"mundodomarketing.com.br\"&&o.slug){window.location.href=\"/institutional?slug=\"+o.slug;}}).catch(()=>{setReleaseId(null);});}},[releaseId]);if(!releaseId){return /*#__PURE__*/_jsx(Component,{...props});}return null;};}const useSlug=()=>{const[slug,setSlug]=useState();useEffect(()=>{const search=new URLSearchParams(window.location.search);const _slug=search.get(\"slug\");if(!_slug){if(window.location.hostname===\"mundodomarketing.com.br\"){window.location.href=\"/404\";}}else{setSlug(_slug);}},[]);return slug;};export function withPostSlug(Component){return props=>{const slug=useSlug();if(!slug){return null;}return /*#__PURE__*/_jsx(Component,{...props,slug:slug});};}export function withPost(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props});};}const cache={};const useCurrentPost=()=>{const[post,setPost]=useState();const[loading,setLoading]=useState(true);const[error,setError]=useState(false);const slug=useSlug();useEffect(()=>{if(!slug)return;setLoading(true);const LoadPost=Data=>{Data.then(o=>{setPost(o);setLoading(false);setError(false);if(o.error){throw new Error(o.error);}}).catch(o=>{setLoading(false);setError(true);if(window.location.hostname===\"mundodomarketing.com.br\"){window.location.href=\"/404\";}cache[slug]=null;});};if(cache[slug]){const o=cache[slug];if(new Date().getTime()<o.date){LoadPost(o.post);return;}}cache[slug]={date:new Date().getTime()+5*60*1e3,post:fetch(\"https://mundo-mkt.vercel.app/api/institutional-posts/slug/\"+slug).then(o=>o.json())};LoadPost(cache[slug].post);},[slug]);return{post,error,loading};};export function withContent(Component){return props=>{const{post,loading}=useCurrentPost();if(loading||!post){return null;}return /*#__PURE__*/_jsx(Component,{...props,style:{...props===null||props===void 0?void 0:props.style},content:post.content});};}export function withTags(Component){return props=>{var _post_tags;const{post,loading}=useCurrentPost();if(loading||!post){return null;}return /*#__PURE__*/_jsx(_Fragment,{children:(_post_tags=post.tags)===null||_post_tags===void 0?void 0:_post_tags.map(tag=>/*#__PURE__*/_createElement(Component,{...props,key:tag,title:tag}))});};}export function withTagsContainer(Component){return props=>{var _post_tags;const{post,loading}=useCurrentPost();console.log(\"withTagsContainer\",post,loading);if(loading||!post){return null;}return /*#__PURE__*/_jsx(Component,{...props,children:(_post_tags=post.tags)===null||_post_tags===void 0?void 0:_post_tags.map(tag=>/*#__PURE__*/_createElement(ButtonTag,{...props,key:tag,title:tag}))});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withTags\":{\"type\":\"reactHoc\",\"name\":\"withTags\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withContent\":{\"type\":\"reactHoc\",\"name\":\"withContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withPaginationButton\":{\"type\":\"reactHoc\",\"name\":\"withPaginationButton\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withPostSlug\":{\"type\":\"reactHoc\",\"name\":\"withPostSlug\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withPostListWithPagination\":{\"type\":\"reactHoc\",\"name\":\"withPostListWithPagination\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withReleaseIdRedirect\":{\"type\":\"reactHoc\",\"name\":\"withReleaseIdRedirect\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withPostSlider\":{\"type\":\"reactHoc\",\"name\":\"withPostSlider\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withPost\":{\"type\":\"reactHoc\",\"name\":\"withPost\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTagsContainer\":{\"type\":\"reactHoc\",\"name\":\"withTagsContainer\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Institutional.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleCode,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/mCjXm4Y3VRj2Tf2AuGUP/hWQBdLJJeX1vbno26ont/EqOYf8o8x.js\";import Tooltip from\"https://framerusercontent.com/modules/NbwXtPyEeRmp5zG44E82/J7mcribOH2B3DXVxajwt/DN3Gn8k0g.js\";import ComponentHiglightBadge from\"https://framerusercontent.com/modules/1B4cXoYKFlqd0Wkowki0/zNewP4L0TrQag42wN4K6/lUWIrFJBV.js\";import ComponentMemberBadge from\"https://framerusercontent.com/modules/2G3RAPksdaHdqybSHjbV/qdiGv6II8a2YutGl1TEb/s1txPIPfG.js\";const ComponentHiglightBadgeFonts=getFonts(ComponentHiglightBadge);const ComponentMemberBadgeFonts=getFonts(ComponentMemberBadge);const TooltipFonts=getFonts(Tooltip);const enabledGestures={EOVpP_m8A:{hover:true},f9UqWTs_B:{hover:true},fvBx5xJOn:{hover:true},hvt5wkKQ2:{hover:true},LpbAryPm9:{hover:true}};const cycleOrder=[\"fvBx5xJOn\",\"EOVpP_m8A\",\"LpbAryPm9\",\"hvt5wkKQ2\",\"KAX08oCAb\",\"f9UqWTs_B\"];const serializationHash=\"framer-jSBeZ\";const variantClassNames={EOVpP_m8A:\"framer-v-ril0ua\",f9UqWTs_B:\"framer-v-11b1dmg\",fvBx5xJOn:\"framer-v-1wh61m0\",hvt5wkKQ2:\"framer-v-1azgqfn\",KAX08oCAb:\"framer-v-p24llu\",LpbAryPm9:\"framer-v-5lrm5y\"};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={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 isAfter=(dateString,minDateString)=>{if(typeof dateString!==\"string\"||typeof minDateString!==\"string\")return false;const date=new Date(dateString);if(isNaN(date.getTime()))return false;const minDate=new Date(minDateString);if(isNaN(minDate.getTime()))return false;return date>=minDate;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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={\"Desktop 1200\":\"KAX08oCAb\",Api:\"f9UqWTs_B\",Horizontal:\"hvt5wkKQ2\",Large:\"LpbAryPm9\",Medium:\"EOVpP_m8A\",Small:\"fvBx5xJOn\"};const getProps=({category,color,date,height,higlight,id,image,link,member,text,tooltip,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5,_ref6;return{...props,boNz7lta6:higlight!==null&&higlight!==void 0?higlight:props.boNz7lta6,EBJPZmjzZ:(_ref=color!==null&&color!==void 0?color:props.EBJPZmjzZ)!==null&&_ref!==void 0?_ref:\"var(--token-b8a014a3-b50e-4d07-bcb0-b21769eb2d11, rgb(255, 46, 46))\",NOwE5_VNu:(_ref1=category!==null&&category!==void 0?category:props.NOwE5_VNu)!==null&&_ref1!==void 0?_ref1:\"TECHNOLOGY\",OptZdl9pm:tooltip!==null&&tooltip!==void 0?tooltip:props.OptZdl9pm,szVefUqiW:(_ref2=date!==null&&date!==void 0?date:props.szVefUqiW)!==null&&_ref2!==void 0?_ref2:\"1970-01-01T00:00:00.000Z\",Te5pVtH3O:(_ref3=image!==null&&image!==void 0?image:props.Te5pVtH3O)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/3gk3PmSaf4mqen4D5txuA8UGgQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/3gk3PmSaf4mqen4D5txuA8UGgQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/3gk3PmSaf4mqen4D5txuA8UGgQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3gk3PmSaf4mqen4D5txuA8UGgQ.png 1920w\"},uJKivkmLD:(_ref4=text!==null&&text!==void 0?text:props.uJKivkmLD)!==null&&_ref4!==void 0?_ref4:\"Tech Titans Collide: The Race for Quantum Supremacy Intensifies\",variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"fvBx5xJOn\",wJ0cKNslu:link!==null&&link!==void 0?link:props.wJ0cKNslu,ZVE7TMSJu:(_ref6=member!==null&&member!==void 0?member:props.ZVE7TMSJu)!==null&&_ref6!==void 0?_ref6:true};};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,Te5pVtH3O,NOwE5_VNu,uJKivkmLD,OptZdl9pm,wJ0cKNslu,boNz7lta6,ZVE7TMSJu,EBJPZmjzZ,szVefUqiW,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fvBx5xJOn\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=value=>{if(gestureVariant===\"f9UqWTs_B-hover\")return false;if(baseVariant===\"f9UqWTs_B\")return false;return value;};const visible=isSet(NOwE5_VNu);const visible1=isAfter(szVefUqiW,\"2015-01-01T00:00:00.000Z\");const visible2=isAfter(szVefUqiW,\"2000-11-27T00:00:00.000Z\");const isDisplayed1=(value,value1)=>{if(gestureVariant===\"EOVpP_m8A-hover\")return value1;if(baseVariant===\"EOVpP_m8A\")return value1;return value;};const activeLocaleCode=useLocaleCode();const textContent=toDateString(szVefUqiW,{dateStyle:\"short\",display:\"date\",locale:\"pt-BR\"},activeLocaleCode);const textContent1=toDateString(szVefUqiW,{dateStyle:\"short\",display:\"date\",locale:\"en\"},activeLocaleCode);const visible3=isSet(OptZdl9pm);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,children:/*#__PURE__*/_jsx(Link,{href:wJ0cKNslu,openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1wh61m0\",className,classNames)} framer-16tfkin`,\"data-framer-name\":\"Small\",layoutDependency:layoutDependency,layoutId:\"fvBx5xJOn\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-f31f1ce1-16c9-4281-87ba-360912934036, rgb(255, 255, 255))\",...style},...addPropertyOverrides({\"EOVpP_m8A-hover\":{\"data-framer-name\":undefined},\"f9UqWTs_B-hover\":{\"data-framer-name\":undefined},\"fvBx5xJOn-hover\":{\"data-framer-name\":undefined},\"hvt5wkKQ2-hover\":{\"data-framer-name\":undefined},\"LpbAryPm9-hover\":{\"data-framer-name\":undefined},EOVpP_m8A:{\"data-framer-name\":\"Medium\"},f9UqWTs_B:{\"data-framer-name\":\"Api\"},hvt5wkKQ2:{\"data-framer-name\":\"Horizontal\"},KAX08oCAb:{\"data-framer-name\":\"Desktop 1200\"},LpbAryPm9:{\"data-framer-name\":\"Large\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(Te5pVtH3O),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-d28k8c\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ztgBsXpuH\",...addPropertyOverrides({f9UqWTs_B:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 2, 1px)`,...toResponsiveImage(Te5pVtH3O),...{positionX:\"center\",positionY:\"center\"}}},hvt5wkKQ2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 2, 1px)`,...toResponsiveImage(Te5pVtH3O),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q1vikn\",layoutDependency:layoutDependency,layoutId:\"OXv6iR2Bl\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{\"EOVpP_m8A-hover\":{backgroundColor:\"rgba(0, 0, 0, 0.25)\"},\"fvBx5xJOn-hover\":{backgroundColor:\"rgba(0, 0, 0, 0.25)\"},\"hvt5wkKQ2-hover\":{backgroundColor:\"rgba(0, 0, 0, 0.25)\"},\"LpbAryPm9-hover\":{backgroundColor:\"rgba(0, 0, 0, 0.25)\"}}}),boNz7lta6&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"50px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0,...addPropertyOverrides({f9UqWTs_B:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0},hvt5wkKQ2:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fwy0ds-container\",layoutDependency:layoutDependency,layoutId:\"amgXjvOS_-container\",children:/*#__PURE__*/_jsx(ComponentHiglightBadge,{height:\"100%\",id:\"amgXjvOS_\",layoutId:\"amgXjvOS_\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed(ZVE7TMSJu)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+184-39,...addPropertyOverrides({hvt5wkKQ2:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+184-39}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pn41ko-container\",layoutDependency:layoutDependency,layoutId:\"K1UVxer1x-container\",children:/*#__PURE__*/_jsx(ComponentMemberBadge,{height:\"100%\",id:\"K1UVxer1x\",layoutId:\"K1UVxer1x\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r5yzu2\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"vqlkiHHMA\",children:[isDisplayed(visible)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16q2sre\",\"data-styles-preset\":\"EqOYf8o8x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-EBJPZmjzZ-tz09UMJZ7))\"},children:\"TECHNOLOGY\"})}),className:\"framer-s74hbb\",\"data-framer-name\":\"Subcategory\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MgpW6JVqu\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-EBJPZmjzZ-tz09UMJZ7)\",\"--variable-reference-EBJPZmjzZ-tz09UMJZ7\":EBJPZmjzZ},text:NOwE5_VNu,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1(visible1,visible2)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-16q2sre\",\"data-styles-preset\":\"EqOYf8o8x\",children:\"1 de jan. de 1970\"})}),className:\"framer-4pnjgi\",\"data-framer-name\":\"DATE\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rm9Hdbe31\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EOVpP_m8A:{text:textContent1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-228b5fa0-96b3-4b15-8bc3-528c090ea1ba, rgb(21, 21, 21)))\"},children:\"Tech Titans Collide: The Race for Quantum Supremacy Intensifies\"})}),className:\"framer-179e59x\",\"data-framer-name\":\"Title\",fonts:[\"GF;Inter Tight-700\"],layoutDependency:layoutDependency,layoutId:\"q80KXeZvV\",style:{\"--extracted-1of0zx5\":\"var(--token-228b5fa0-96b3-4b15-8bc3-528c090ea1ba, rgb(21, 21, 21))\"},text:uJKivkmLD,variants:{\"EOVpP_m8A-hover\":{\"--extracted-1of0zx5\":\"var(--token-9065ca1f-1dfb-4011-af90-7c0570697ffc, rgb(111, 68, 255))\"},\"f9UqWTs_B-hover\":{\"--extracted-1of0zx5\":\"var(--token-9065ca1f-1dfb-4011-af90-7c0570697ffc, rgb(111, 68, 255))\"},\"fvBx5xJOn-hover\":{\"--extracted-1of0zx5\":\"var(--token-9065ca1f-1dfb-4011-af90-7c0570697ffc, rgb(111, 68, 255))\"},\"hvt5wkKQ2-hover\":{\"--extracted-1of0zx5\":\"var(--token-9065ca1f-1dfb-4011-af90-7c0570697ffc, rgb(111, 68, 255))\"},\"LpbAryPm9-hover\":{\"--extracted-1of0zx5\":\"var(--token-9065ca1f-1dfb-4011-af90-7c0570697ffc, rgb(111, 68, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"EOVpP_m8A-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-9065ca1f-1dfb-4011-af90-7c0570697ffc, rgb(111, 68, 255)))\"},children:\"Tech Titans Collide: The Race for Quantum Supremacy Intensifies\"})})},\"f9UqWTs_B-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-9065ca1f-1dfb-4011-af90-7c0570697ffc, rgb(111, 68, 255)))\"},children:\"Tech Titans Collide: The Race for Quantum Supremacy Intensifies\"})})},\"fvBx5xJOn-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-9065ca1f-1dfb-4011-af90-7c0570697ffc, rgb(111, 68, 255)))\"},children:\"Tech Titans Collide: The Race for Quantum Supremacy Intensifies\"})})},\"hvt5wkKQ2-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-9065ca1f-1dfb-4011-af90-7c0570697ffc, rgb(111, 68, 255)))\"},children:\"Tech Titans Collide: The Race for Quantum Supremacy Intensifies\"})})},\"LpbAryPm9-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-9065ca1f-1dfb-4011-af90-7c0570697ffc, rgb(111, 68, 255)))\"},children:\"Tech Titans Collide: The Race for Quantum Supremacy Intensifies\"})})},EOVpP_m8A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-228b5fa0-96b3-4b15-8bc3-528c090ea1ba, rgb(21, 21, 21)))\"},children:\"Tech Titans Collide: The Race for Quantum Supremacy Intensifies\"})})},f9UqWTs_B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-228b5fa0-96b3-4b15-8bc3-528c090ea1ba, rgb(21, 21, 21)))\"},children:\"Tech Titans Collide: The Race for Quantum Supremacy Intensifies\"})})},hvt5wkKQ2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-228b5fa0-96b3-4b15-8bc3-528c090ea1ba, rgb(21, 21, 21)))\"},children:\"Tech Titans Collide: The Race for Quantum Supremacy Intensifies\"})})},KAX08oCAb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-228b5fa0-96b3-4b15-8bc3-528c090ea1ba, rgb(21, 21, 21)))\"},children:\"Tech Titans Collide: The Race for Quantum Supremacy Intensifies\"})})},LpbAryPm9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-228b5fa0-96b3-4b15-8bc3-528c090ea1ba, rgb(21, 21, 21)))\"},children:\"Tech Titans Collide: The Race for Quantum Supremacy Intensifies\"})})}},baseVariant,gestureVariant)}),visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:`min(280px, ${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"})`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+204+108.5-154,...addPropertyOverrides({\"EOVpP_m8A-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+204+102.25-130},\"fvBx5xJOn-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+204+108.5-160},\"LpbAryPm9-hover\":{width:\"500px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+204+121-166},EOVpP_m8A:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+204+102.25-154},f9UqWTs_B:{width:`min(280px, max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 2, 1px))`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+70-154},hvt5wkKQ2:{width:`min(280px, max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 2, 1px))`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+106-154},KAX08oCAb:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+204+102.25-154},LpbAryPm9:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+204+121-154}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-aafd51-container\",layoutDependency:layoutDependency,layoutId:\"oRwQTIrvf-container\",style:{opacity:0},transformTemplate:transformTemplate1,variants:{\"EOVpP_m8A-hover\":{opacity:1},\"f9UqWTs_B-hover\":{opacity:1},\"fvBx5xJOn-hover\":{opacity:1},\"hvt5wkKQ2-hover\":{opacity:1},\"LpbAryPm9-hover\":{opacity:1},KAX08oCAb:{opacity:1}},children:/*#__PURE__*/_jsx(Tooltip,{height:\"100%\",id:\"oRwQTIrvf\",kP8E5T51o:16,layoutId:\"oRwQTIrvf\",mZc3lL8Qd:OptZdl9pm,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"winHtVo1H\",width:\"100%\",...addPropertyOverrides({\"LpbAryPm9-hover\":{kP8E5T51o:27,style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jSBeZ.framer-16tfkin, .framer-jSBeZ .framer-16tfkin { display: block; }\",\".framer-jSBeZ.framer-1wh61m0 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 280px; }\",\".framer-jSBeZ .framer-d28k8c { aspect-ratio: 1.4891304347826086 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 188px); overflow: visible; position: relative; width: 100%; }\",\".framer-jSBeZ .framer-1q1vikn { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-jSBeZ .framer-1fwy0ds-container { flex: none; height: 50px; left: 0px; position: absolute; top: 0px; width: 50px; }\",\".framer-jSBeZ .framer-pn41ko-container { bottom: 15px; flex: none; height: auto; position: absolute; right: 15px; width: auto; }\",\".framer-jSBeZ .framer-1r5yzu2 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-jSBeZ .framer-s74hbb, .framer-jSBeZ .framer-4pnjgi, .framer-jSBeZ .framer-179e59x { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jSBeZ .framer-aafd51-container { bottom: 86px; flex: none; height: auto; left: 50%; max-width: 100%; pointer-events: none; position: absolute; width: 280px; z-index: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jSBeZ.framer-1wh61m0, .framer-jSBeZ .framer-1r5yzu2 { gap: 0px; } .framer-jSBeZ.framer-1wh61m0 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-jSBeZ.framer-1wh61m0 > :first-child, .framer-jSBeZ .framer-1r5yzu2 > :first-child { margin-top: 0px; } .framer-jSBeZ.framer-1wh61m0 > :last-child, .framer-jSBeZ .framer-1r5yzu2 > :last-child { margin-bottom: 0px; } .framer-jSBeZ .framer-1r5yzu2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-jSBeZ.framer-v-ril0ua.framer-1wh61m0 { width: 370px; }\",\".framer-jSBeZ.framer-v-ril0ua .framer-d28k8c { height: var(--framer-aspect-ratio-supported, 248px); }\",\".framer-jSBeZ.framer-v-ril0ua .framer-1r5yzu2, .framer-jSBeZ.framer-v-p24llu .framer-1r5yzu2 { padding: 0px; }\",\".framer-jSBeZ.framer-v-5lrm5y.framer-1wh61m0 { width: 785px; }\",\".framer-jSBeZ.framer-v-5lrm5y .framer-d28k8c { height: var(--framer-aspect-ratio-supported, 527px); order: 0; }\",\".framer-jSBeZ.framer-v-5lrm5y .framer-1r5yzu2 { order: 1; padding: 0px; }\",\".framer-jSBeZ.framer-v-1azgqfn.framer-1wh61m0, .framer-jSBeZ.framer-v-11b1dmg.framer-1wh61m0 { flex-direction: row; width: 380px; }\",\".framer-jSBeZ.framer-v-1azgqfn .framer-d28k8c, .framer-jSBeZ.framer-v-11b1dmg .framer-d28k8c { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 134px); width: 1px; }\",\".framer-jSBeZ.framer-v-1azgqfn .framer-1r5yzu2 { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jSBeZ.framer-v-1azgqfn.framer-1wh61m0 { gap: 0px; } .framer-jSBeZ.framer-v-1azgqfn.framer-1wh61m0 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-jSBeZ.framer-v-1azgqfn.framer-1wh61m0 > :first-child { margin-left: 0px; } .framer-jSBeZ.framer-v-1azgqfn.framer-1wh61m0 > :last-child { margin-right: 0px; } }\",\".framer-jSBeZ.framer-v-p24llu.framer-1wh61m0 { cursor: unset; width: 348px; }\",\".framer-jSBeZ.framer-v-p24llu .framer-d28k8c { height: var(--framer-aspect-ratio-supported, 134px); }\",\".framer-jSBeZ.framer-v-11b1dmg .framer-1r5yzu2 { flex: 1 0 0px; height: 70px; width: 1px; }\",\".framer-jSBeZ.framer-v-11b1dmg .framer-179e59x { max-height: 120px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jSBeZ.framer-v-11b1dmg.framer-1wh61m0 { gap: 0px; } .framer-jSBeZ.framer-v-11b1dmg.framer-1wh61m0 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-jSBeZ.framer-v-11b1dmg.framer-1wh61m0 > :first-child { margin-left: 0px; } .framer-jSBeZ.framer-v-11b1dmg.framer-1wh61m0 > :last-child { margin-right: 0px; } }\",\".framer-jSBeZ.framer-v-1wh61m0.hover .framer-aafd51-container { bottom: 92px; }\",\".framer-jSBeZ.framer-v-ril0ua.hover .framer-aafd51-container { bottom: 62px; }\",\".framer-jSBeZ.framer-v-5lrm5y.hover .framer-aafd51-container { bottom: 98px; left: 50%; max-width: unset; width: 500px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 309\n * @framerIntrinsicWidth 280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EOVpP_m8A\":{\"layout\":[\"fixed\",\"auto\"]},\"LpbAryPm9\":{\"layout\":[\"fixed\",\"auto\"]},\"hvt5wkKQ2\":{\"layout\":[\"fixed\",\"auto\"]},\"KAX08oCAb\":{\"layout\":[\"fixed\",\"auto\"]},\"f9UqWTs_B\":{\"layout\":[\"fixed\",\"auto\"]},\"DHYDZmNVJ\":{\"layout\":[\"fixed\",\"auto\"]},\"wrIoYFLOk\":{\"layout\":[\"fixed\",\"auto\"]},\"YUwXfnoGy\":{\"layout\":[\"fixed\",\"auto\"]},\"lkidIBxRH\":{\"layout\":[\"fixed\",\"auto\"]},\"ifiKz4OKA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Te5pVtH3O\":\"image\",\"NOwE5_VNu\":\"category\",\"uJKivkmLD\":\"text\",\"OptZdl9pm\":\"tooltip\",\"wJ0cKNslu\":\"link\",\"boNz7lta6\":\"higlight\",\"ZVE7TMSJu\":\"member\",\"EBJPZmjzZ\":\"color\",\"szVefUqiW\":\"date\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framertz09UMJZ7=withCSS(Component,css,\"framer-jSBeZ\");export default Framertz09UMJZ7;Framertz09UMJZ7.displayName=\"News/Post Thumbnail\";Framertz09UMJZ7.defaultProps={height:309,width:280};addPropertyControls(Framertz09UMJZ7,{variant:{options:[\"fvBx5xJOn\",\"EOVpP_m8A\",\"LpbAryPm9\",\"hvt5wkKQ2\",\"KAX08oCAb\",\"f9UqWTs_B\"],optionTitles:[\"Small\",\"Medium\",\"Large\",\"Horizontal\",\"Desktop 1200\",\"Api\"],title:\"Variant\",type:ControlType.Enum},Te5pVtH3O:{__defaultAssetReference:\"data:framer/asset-reference,3gk3PmSaf4mqen4D5txuA8UGgQ.png?originalFilename=1728590408736%5B1%5D.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},NOwE5_VNu:{defaultValue:\"TECHNOLOGY\",displayTextArea:false,title:\"Category\",type:ControlType.String},uJKivkmLD:{defaultValue:\"Tech Titans Collide: The Race for Quantum Supremacy Intensifies\",displayTextArea:false,title:\"Text\",type:ControlType.String},OptZdl9pm:{defaultValue:\"\",displayTextArea:false,title:\"Tooltip\",type:ControlType.String},wJ0cKNslu:{title:\"Link\",type:ControlType.Link},boNz7lta6:{defaultValue:false,title:\"Higlight\",type:ControlType.Boolean},ZVE7TMSJu:{defaultValue:true,title:\"Member\",type:ControlType.Boolean},EBJPZmjzZ:{defaultValue:\"var(--token-b8a014a3-b50e-4d07-bcb0-b21769eb2d11, rgb(255, 46, 46))\",title:\"Color\",type:ControlType.Color},szVefUqiW:{defaultValue:\"1970-01-01T00:00:00.000Z\",description:\"\",title:\"Date\",type:ControlType.Date}});addFonts(Framertz09UMJZ7,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqWSRToK8EPg.woff2\",weight:\"700\"}]},...ComponentHiglightBadgeFonts,...ComponentMemberBadgeFonts,...TooltipFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framertz09UMJZ7\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EOVpP_m8A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LpbAryPm9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hvt5wkKQ2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KAX08oCAb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f9UqWTs_B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DHYDZmNVJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wrIoYFLOk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YUwXfnoGy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lkidIBxRH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ifiKz4OKA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"309\",\"framerIntrinsicWidth\":\"280\",\"framerVariables\":\"{\\\"Te5pVtH3O\\\":\\\"image\\\",\\\"NOwE5_VNu\\\":\\\"category\\\",\\\"uJKivkmLD\\\":\\\"text\\\",\\\"OptZdl9pm\\\":\\\"tooltip\\\",\\\"wJ0cKNslu\\\":\\\"link\\\",\\\"boNz7lta6\\\":\\\"higlight\\\",\\\"ZVE7TMSJu\\\":\\\"member\\\",\\\"EBJPZmjzZ\\\":\\\"color\\\",\\\"szVefUqiW\\\":\\\"date\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/g1d4GraMT7Ug0LwVOUmF/OanmSLZtSTSAdKfruYbq/yTihmWQ5a.js\";const cycleOrder=[\"cTpaaQg7z\",\"TwMUxgZep\",\"winHtVo1H\",\"wzx_NtMmE\"];const serializationHash=\"framer-uhOAP\";const variantClassNames={cTpaaQg7z:\"framer-v-1flcuc3\",TwMUxgZep:\"framer-v-1ys4h2k\",winHtVo1H:\"framer-v-or4l84\",wzx_NtMmE:\"framer-v-yeamnb\"};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={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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={Bottom:\"winHtVo1H\",Left:\"wzx_NtMmE\",Right:\"TwMUxgZep\",Top:\"cTpaaQg7z\"};const getProps=({height,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,mZc3lL8Qd:(_ref=title!==null&&title!==void 0?title:props.mZc3lL8Qd)!==null&&_ref!==void 0?_ref:\"Lorem Ipsum is simply dummy text of the printing and typesetting industry.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"cTpaaQg7z\"};};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,mZc3lL8Qd,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cTpaaQg7z\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1flcuc3\",className,classNames),\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"cTpaaQg7z\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({TwMUxgZep:{\"data-framer-name\":\"Right\"},winHtVo1H:{\"data-framer-name\":\"Bottom\"},wzx_NtMmE:{\"data-framer-name\":\"Left\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iilhfu\",\"data-framer-name\":\"Tooltip\",layoutDependency:layoutDependency,layoutId:\"L4w6X4xht\",style:{backgroundColor:\"var(--token-8c2e2696-2294-47af-a0cd-8fd8990b2d78, rgb(17, 17, 17))\",borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ngz5dp\",layoutDependency:layoutDependency,layoutId:\"EHxpVZTrH\",style:{backgroundColor:\"var(--token-8c2e2696-2294-47af-a0cd-8fd8990b2d78, rgb(17, 17, 17))\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2,rotate:45},transformTemplate:transformTemplate1,...addPropertyOverrides({TwMUxgZep:{transformTemplate:undefined},wzx_NtMmE:{transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1d2x1xe\",\"data-styles-preset\":\"yTihmWQ5a\",children:\"Lorem Ipsum is simply dummy text of the printing and typesetting industry.\"})}),className:\"framer-us9whs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JxyuPVODn\",style:{\"--framer-link-current-text-color\":'var(--token-bd71055c-0a2c-4476-8cc9-4310acba652d, rgb(0, 136, 255)) /* {\"name\":\"Blue\"} */',\"--framer-paragraph-spacing\":\"0px\"},text:mZc3lL8Qd,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({wzx_NtMmE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1d2x1xe\",\"data-styles-preset\":\"yTihmWQ5a\",style:{\"--framer-text-alignment\":\"left\"},children:\"Lorem Ipsum is simply dummy text of the printing and typesetting industry.\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uhOAP.framer-b4o0jq, .framer-uhOAP .framer-b4o0jq { display: block; }\",\".framer-uhOAP.framer-1flcuc3 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 250px; }\",\".framer-uhOAP .framer-1iilhfu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 16px 10px 16px; position: relative; width: 100%; }\",\".framer-uhOAP .framer-1ngz5dp { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 13px); left: 50%; overflow: hidden; position: absolute; top: -6px; width: 13px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-uhOAP .framer-us9whs { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uhOAP.framer-1flcuc3, .framer-uhOAP .framer-1iilhfu { gap: 0px; } .framer-uhOAP.framer-1flcuc3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-uhOAP.framer-1flcuc3 > :first-child { margin-top: 0px; } .framer-uhOAP.framer-1flcuc3 > :last-child { margin-bottom: 0px; } .framer-uhOAP .framer-1iilhfu > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-uhOAP .framer-1iilhfu > :first-child { margin-left: 0px; } .framer-uhOAP .framer-1iilhfu > :last-child { margin-right: 0px; } }\",\".framer-uhOAP.framer-v-1ys4h2k .framer-1ngz5dp { left: unset; right: -7px; top: 22px; }\",\".framer-uhOAP.framer-v-or4l84 .framer-1ngz5dp { bottom: -6px; left: 49%; top: unset; }\",\".framer-uhOAP.framer-v-yeamnb .framer-1ngz5dp { left: -7px; top: 13px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 87\n * @framerIntrinsicWidth 250\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TwMUxgZep\":{\"layout\":[\"fixed\",\"auto\"]},\"winHtVo1H\":{\"layout\":[\"fixed\",\"auto\"]},\"wzx_NtMmE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"mZc3lL8Qd\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDN3Gn8k0g=withCSS(Component,css,\"framer-uhOAP\");export default FramerDN3Gn8k0g;FramerDN3Gn8k0g.displayName=\"Tooltip\";FramerDN3Gn8k0g.defaultProps={height:87,width:250};addPropertyControls(FramerDN3Gn8k0g,{variant:{options:[\"cTpaaQg7z\",\"TwMUxgZep\",\"winHtVo1H\",\"wzx_NtMmE\"],optionTitles:[\"Top\",\"Right\",\"Bottom\",\"Left\"],title:\"Variant\",type:ControlType.Enum},mZc3lL8Qd:{defaultValue:\"Lorem Ipsum is simply dummy text of the printing and typesetting industry.\",title:\"Title\",type:ControlType.String}});addFonts(FramerDN3Gn8k0g,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDN3Gn8k0g\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TwMUxgZep\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"winHtVo1H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wzx_NtMmE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"250\",\"framerIntrinsicHeight\":\"87\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"mZc3lL8Qd\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DN3Gn8k0g.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={yW42EcVz3:{hover:true}};const cycleOrder=[\"yW42EcVz3\",\"ZMRldAQpl\",\"MHHkcdNEs\"];const serializationHash=\"framer-SLR1a\";const variantClassNames={MHHkcdNEs:\"framer-v-145fred\",yW42EcVz3:\"framer-v-1acjhsq\",ZMRldAQpl:\"framer-v-117a26l\"};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={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"yW42EcVz3\",\"Variant 2\":\"ZMRldAQpl\",Innactive:\"MHHkcdNEs\"};const getProps=({height,id,title,visible,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,OCMPu_CFs:(_ref=title!==null&&title!==void 0?title:props.OCMPu_CFs)!==null&&_ref!==void 0?_ref:\"Lorem Ipsum\",sgNRthb7Q:(_ref1=visible!==null&&visible!==void 0?visible:props.sgNRthb7Q)!==null&&_ref1!==void 0?_ref1:true,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"yW42EcVz3\"};};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,OCMPu_CFs,sgNRthb7Q,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yW42EcVz3\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isDisplayed=value=>{if(baseVariant===\"ZMRldAQpl\")return value;if(baseVariant===\"MHHkcdNEs\")return false;return true;};const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed(sgNRthb7Q)&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1acjhsq\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"yW42EcVz3\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d7e9fe68-6107-46b3-8847-b0f76d6c94b4, rgb(224, 228, 255))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{\"yW42EcVz3-hover\":{backgroundColor:\"rgba(111, 68, 255, 0.2)\"},ZMRldAQpl:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({\"yW42EcVz3-hover\":{\"data-framer-name\":undefined},ZMRldAQpl:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9065ca1f-1dfb-4011-af90-7c0570697ffc, rgb(111, 68, 255)))\"},children:\"Lorem Ipsum\"})}),className:\"framer-1gdwhyq\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"t2666ICjq\",style:{\"--extracted-r6o4lv\":\"var(--token-9065ca1f-1dfb-4011-af90-7c0570697ffc, rgb(111, 68, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OCMPu_CFs,verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SLR1a.framer-1ta5tig, .framer-SLR1a .framer-1ta5tig { display: block; }\",\".framer-SLR1a.framer-1acjhsq { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 2px 8px 2px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-SLR1a .framer-1gdwhyq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SLR1a.framer-1acjhsq { gap: 0px; } .framer-SLR1a.framer-1acjhsq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SLR1a.framer-1acjhsq > :first-child { margin-left: 0px; } .framer-SLR1a.framer-1acjhsq > :last-child { margin-right: 0px; } }\",\".framer-SLR1a.framer-v-117a26l.framer-1acjhsq { cursor: unset; }\",'.framer-SLR1a[data-border=\"true\"]::after, .framer-SLR1a [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21\n * @framerIntrinsicWidth 84\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ZMRldAQpl\":{\"layout\":[\"auto\",\"auto\"]},\"MHHkcdNEs\":{\"layout\":[\"auto\",\"auto\"]},\"G1bnHS_iF\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"OCMPu_CFs\":\"title\",\"sgNRthb7Q\":\"visible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerf1aYccPQi=withCSS(Component,css,\"framer-SLR1a\");export default Framerf1aYccPQi;Framerf1aYccPQi.displayName=\"Button/Tag\";Framerf1aYccPQi.defaultProps={height:21,width:84};addPropertyControls(Framerf1aYccPQi,{variant:{options:[\"yW42EcVz3\",\"ZMRldAQpl\",\"MHHkcdNEs\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Innactive\"],title:\"Variant\",type:ControlType.Enum},OCMPu_CFs:{defaultValue:\"Lorem Ipsum\",displayTextArea:false,title:\"Title\",type:ControlType.String},sgNRthb7Q:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean}});addFonts(Framerf1aYccPQi,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerf1aYccPQi\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZMRldAQpl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"MHHkcdNEs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"G1bnHS_iF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"OCMPu_CFs\\\":\\\"title\\\",\\\"sgNRthb7Q\\\":\\\"visible\\\"}\",\"framerIntrinsicWidth\":\"84\",\"framerIntrinsicHeight\":\"21\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./f1aYccPQi.map"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "mZc3lL8Qd", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "css", "FramerDN3Gn8k0g", "withCSS", "DN3Gn8k0g_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ComponentHiglightBadgeFonts", "getFonts", "lUWIrFJBV_default", "ComponentMemberBadgeFonts", "s1txPIPfG_default", "TooltipFonts", "DN3Gn8k0g_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "isSet", "isAfter", "dateString", "minDateString", "date", "minDate", "toDateString", "options", "activeLocale", "display", "dateOptions", "fallbackLocale", "locale", "transformTemplate1", "_", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "category", "color", "height", "higlight", "id", "image", "link", "member", "text", "tooltip", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Te5pVtH3O", "NOwE5_VNu", "uJKivkmLD", "OptZdl9pm", "wJ0cKNslu", "boNz7lta6", "ZVE7TMSJu", "EBJPZmjzZ", "szVefUqiW", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "visible", "visible1", "visible2", "isDisplayed1", "value1", "activeLocaleCode", "useLocaleCode", "textContent", "textContent1", "visible3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "RichText2", "css", "Framertz09UMJZ7", "withCSS", "News_Post_Thumbnail_oUia_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "init_ssg_sandbox_shims", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "visible", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "OCMPu_CFs", "sgNRthb7Q", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "isDisplayed", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "Framerf1aYccPQi", "withCSS", "Button_Tag_CsYo_default", "addPropertyControls", "ControlType", "addFonts", "useStore", "createStore", "withPostSlider", "Component", "props", "slots", "setSlots", "ye", "ue", "o", "data", "p", "News_Post_Thumbnail_oUia_default", "usePageState", "withPaginationButton", "pageState", "setPageState", "_pageState_loadPage", "withPostListWithPagination", "posts", "setPosts", "metadata", "setMetadata", "loadPage", "te", "page", "limit", "result", "truncateText", "isTextOverLimit", "useReleaseId", "releaseId", "setReleaseId", "releaseid", "withReleaseIdRedirect", "useSlug", "slug", "setSlug", "_slug", "withPostSlug", "cache", "useCurrentPost", "post", "setPost", "ye", "loading", "setLoading", "error", "setError", "slug", "useSlug", "ue", "LoadPost", "Data", "o", "withContent", "Component", "props", "p", "withTagsContainer", "Component", "props", "_post_tags", "post", "loading", "useCurrentPost", "p", "tag", "B", "Button_Tag_CsYo_default"]
}
