{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js", "ssg:https://framerusercontent.com/modules/cRK5N7PJ8cPiFyqYycEE/Hfinp4bR4n8MTWZm4jKe/FP95AICZ2.js", "ssg:https://framerusercontent.com/modules/bCssN5wDLh0uJEdVFXoJ/2sknmVSnALlUM88mcD4i/h17XaN2js.js", "ssg:https://framerusercontent.com/modules/8c2fcmi9wCct35Qo6L3m/TjZ5dvTssP8B4MwinA7E/ad5gLOIn8.js", "ssg:https://framerusercontent.com/modules/HrhHdxHcukIljRaBS2dq/eugkt1QPOkrelt5UhSbm/B_AbXyhLc.js", "ssg:https://framerusercontent.com/modules/5IKbfn8bw5CbgkfgNmGq/OS1VJRfZJ7kdKHAqVjGE/cvBLDx_ff.js", "ssg:https://framerusercontent.com/modules/tDvwHTEsFQPdfArE8CNp/rH8MW8XTtO1tudbSwakl/iw_bSNG5Z.js", "ssg:https://framerusercontent.com/modules/Gj1kpIuVMa5skQNTzqQX/6EVIvs08Y3Lfg4SCKmOX/JuyYeEj5K.js", "ssg:https://framerusercontent.com/modules/ec5fhtjS5V1AgQqP5pqA/h2bQ5hmfhzvrcExfoEVr/qTbMOsIW4.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js", "ssg:https://framerusercontent.com/modules/wYbvBxYbCiVzNatPcIOZ/7zCgjxAepnszGnRTPKG7/GyHpqTzQT.js", "ssg:https://framerusercontent.com/modules/0ZUq5YMDtY3LqxQ9ZABm/KPQP07GQQNQvNplKLYtj/tIjQbQAYo.js", "ssg:https://framerusercontent.com/modules/7lVr11lTCTdheWYU5loR/ys9O0zHs3ECBoCaE7etI/v5Ua4OmU3.js", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.57", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js", "ssg:https://framerusercontent.com/modules/kQV7OJwHiXjw4eS0mEvJ/forXmMbBXVvGiaI1JoTb/O7NusQOCg.js", "ssg:https://framerusercontent.com/modules/YvXJ0ViAUOSS36PdKIyc/gVN20beTX0BLCq15844j/Ydrt0kReC.js", "ssg:https://framerusercontent.com/modules/jC9SuRQIfBht403b4PuR/GTesb1roydS2SLI6psTV/WyeTZ0F8x.js", "ssg:https://framerusercontent.com/modules/ph8iBEXb9eU6V791hcCu/iJwsk4iiRZUaUczbTjQ2/ysaQdmCgY.js", "ssg:https://framerusercontent.com/modules/0cHzmy0Mh52C7d2X8QO2/cZp5btSE22VgrJcI1avt/zqFjTTcgn.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,zoom,radius,border,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,zoom:zoom,radius:radius,border:border,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}},border:{title:\"Border\",type:ControlType.Border,optional:true,hidden(props){return props.type!==\"url\";}},radius:{type:ControlType.BorderRadius,title:\"Radius\",hidden(props){return props.type!==\"url\";}},zoom:{title:\"Zoom\",defaultValue:1,type:ControlType.Number,hidden(props){return props.type!==\"url\";},min:.1,max:1,step:.1,displayStepper:true}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,zoom,radius,border,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style,...border,zoom:zoom,borderRadius:radius,transformOrigin:\"top center\"},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{const iframeWindow=ref.current?.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow?.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-TMkzy .framer-styles-preset-1rbm6jn:not(.rich-text-wrapper), .framer-TMkzy .framer-styles-preset-1rbm6jn.rich-text-wrapper a { --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, #f65936); --framer-link-text-decoration: none; }\"];export const className=\"framer-TMkzy\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SF Compact Display Semibold\"]);export const fonts=[{family:\"SF Compact Display Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZPX5QyU8gHyYADt5u1je3kqbnvc.otf\"}];export const css=['.framer-WgQqi .framer-styles-preset-1htihd5:not(.rich-text-wrapper), .framer-WgQqi .framer-styles-preset-1htihd5.rich-text-wrapper p { --framer-font-family: \"SF Compact Display Semibold\", \"SF Compact Display Semibold Placeholder\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.1em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, #adadad); --framer-text-decoration: none; --framer-text-transform: uppercase; }'];export const className=\"framer-WgQqi\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import MagText from\"https://framerusercontent.com/modules/W5DPKEeQuqeSZmy9NBRc/J9eQVqcHHoC6JaHQquqb/Text_5.js\";import Articles,{enumToDisplayNameFunctions}from\"https://framerusercontent.com/modules/cvfF8Zfj3hk6PrJQYRM6/hcrITb9eKaCb892HmIEb/kFZ9bhFxc.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/cRK5N7PJ8cPiFyqYycEE/Hfinp4bR4n8MTWZm4jKe/FP95AICZ2.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/bCssN5wDLh0uJEdVFXoJ/2sknmVSnALlUM88mcD4i/h17XaN2js.js\";import CardBrand from\"https://framerusercontent.com/modules/0CUZsI5ihdpjttz9nftx/yFSKdTwgSitriAQKzoAi/rWlPZbm7N.js\";const MagTextFonts=getFonts(MagText);const CardBrandFonts=getFonts(CardBrand);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const enabledGestures={FEuEuzd0V:{hover:true},nIw4kAFUi:{hover:true},Sbzfvoz5l:{hover:true}};const cycleOrder=[\"Sbzfvoz5l\",\"N0ntemCyn\",\"FEuEuzd0V\",\"q35F6swP6\",\"nIw4kAFUi\",\"s36fSJVHN\"];const serializationHash=\"framer-4ZedM\";const variantClassNames={FEuEuzd0V:\"framer-v-qoe3gh\",N0ntemCyn:\"framer-v-1curaf7\",nIw4kAFUi:\"framer-v-n051sc\",q35F6swP6:\"framer-v-189nrlc\",s36fSJVHN:\"framer-v-1vugws2\",Sbzfvoz5l:\"framer-v-16ralp1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:150};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"eiHTFbV65\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"eiHTFbV65\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"eiHTFbV65\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"eiHTFbV65\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"yjTLUhgD7\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query1=prequery=>prequery({from:{alias:\"eiHTFbV65\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"eiHTFbV65\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"eiHTFbV65\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"hLQmVXDJp\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"eiHTFbV65\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"eiHTFbV65\",name:\"U_fqU98P9\",type:\"Identifier\"},type:\"BinaryOperation\"}});const query2=prequery=>prequery({from:{alias:\"eiHTFbV65\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"eiHTFbV65\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"eiHTFbV65\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"hLQmVXDJp\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Open\":\"N0ntemCyn\",\"Mobile Open\":\"q35F6swP6\",\"Tablet Open\":\"s36fSJVHN\",Desktop:\"Sbzfvoz5l\",Mobile:\"FEuEuzd0V\",Tablet:\"nIw4kAFUi\"};const getProps=({border,height,id,link,text,width,...props})=>{return{...props,KT211s3sR:text??props.KT211s3sR??\"BRAND\",NHgyWC94N:border??props.NHgyWC94N??{borderBottomWidth:1,borderColor:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51)) /* {\"name\":\"Black\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},variant:humanReadableVariantMap[props.variant]??props.variant??\"Sbzfvoz5l\",wNjwE3uYr:link??props.wNjwE3uYr};};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,KT211s3sR,wNjwE3uYr,NHgyWC94N,uulcserP6eiHTFbV65,GSEMEwnpzeiHTFbV65,SNzXc9qW1eiHTFbV65,vaSY19i4PeiHTFbV65,ideiHTFbV65,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Sbzfvoz5l\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1an0gkc=activeVariantCallback(async(...args)=>{setVariant(\"N0ntemCyn\");});const onTap1snozca=activeVariantCallback(async(...args)=>{setVariant(\"Sbzfvoz5l\");});const onTap24eljh=activeVariantCallback(async(...args)=>{setVariant(\"q35F6swP6\");});const onTapfbv9ab=activeVariantCallback(async(...args)=>{setVariant(\"FEuEuzd0V\");});const onTapvdlj9s=activeVariantCallback(async(...args)=>{setVariant(\"s36fSJVHN\");});const onTapw999yy=activeVariantCallback(async(...args)=>{setVariant(\"nIw4kAFUi\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"N0ntemCyn\",\"s36fSJVHN\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"N0ntemCyn\",\"q35F6swP6\",\"s36fSJVHN\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"q35F6swP6\")return true;return false;};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-16ralp1\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Sbzfvoz5l\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{\"Sbzfvoz5l-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},FEuEuzd0V:{backgroundColor:\"rgba(0, 0, 0, 0)\"},N0ntemCyn:{backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\"},nIw4kAFUi:{backgroundColor:\"rgba(0, 0, 0, 0)\"},q35F6swP6:{backgroundColor:\"rgba(0, 0, 0, 0)\"},s36fSJVHN:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"FEuEuzd0V-hover\":{\"data-framer-name\":undefined},\"nIw4kAFUi-hover\":{\"data-framer-name\":undefined},\"Sbzfvoz5l-hover\":{\"data-framer-name\":undefined},FEuEuzd0V:{\"data-framer-name\":\"Mobile\"},N0ntemCyn:{\"data-framer-name\":\"Desktop Open\"},nIw4kAFUi:{\"data-framer-name\":\"Tablet\"},q35F6swP6:{\"data-framer-name\":\"Mobile Open\"},s36fSJVHN:{\"data-framer-name\":\"Tablet Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-c5drmj\",\"data-framer-name\":\"Brand Line\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"oaEbIXZMS\",onTap:onTap1an0gkc,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\"},variants:{\"Sbzfvoz5l-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},FEuEuzd0V:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},N0ntemCyn:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},nIw4kAFUi:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},q35F6swP6:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},s36fSJVHN:{\"--border-bottom-width\":(NHgyWC94N.borderBottomWidth??NHgyWC94N.borderWidth)+\"px\",\"--border-color\":NHgyWC94N.borderColor,\"--border-left-width\":(NHgyWC94N.borderLeftWidth??NHgyWC94N.borderWidth)+\"px\",\"--border-right-width\":(NHgyWC94N.borderRightWidth??NHgyWC94N.borderWidth)+\"px\",\"--border-style\":NHgyWC94N.borderStyle,\"--border-top-width\":(NHgyWC94N.borderTopWidth??NHgyWC94N.borderWidth)+\"px\"}},...addPropertyOverrides({FEuEuzd0V:{onTap:onTap24eljh},N0ntemCyn:{\"data-border\":true,onTap:onTap1snozca},nIw4kAFUi:{onTap:onTapvdlj9s},q35F6swP6:{\"data-border\":true,onTap:onTapfbv9ab},s36fSJVHN:{\"data-border\":true,onTap:onTapw999yy}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d9k437\",\"data-framer-name\":\"Strokes Headline Copy\",layoutDependency:layoutDependency,layoutId:\"fDlls5J6O\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{\"Sbzfvoz5l-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},FEuEuzd0V:{backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\"},nIw4kAFUi:{backgroundColor:\"rgba(0, 0, 0, 0)\"},q35F6swP6:{backgroundColor:\"rgba(0, 0, 0, 0)\"},s36fSJVHN:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q4n25x-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"sw5iHiDyM-container\",nodeId:\"sw5iHiDyM\",rendersWithMotion:true,scopeId:\"ad5gLOIn8\",children:/*#__PURE__*/_jsx(MagText,{color:\"rgba(51, 51, 51, 0)\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"100px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"sw5iHiDyM\",layoutId:\"sw5iHiDyM\",outlineColor:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",outlineWidth:1,style:{width:\"100%\"},text:KT211s3sR,width:\"100%\",...addPropertyOverrides({\"FEuEuzd0V-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},\"nIw4kAFUi-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},\"Sbzfvoz5l-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},FEuEuzd0V:{font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"72px\",letterSpacing:\"0em\",lineHeight:\"1em\"}},N0ntemCyn:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},nIw4kAFUi:{font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\"}},q35F6swP6:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"72px\",letterSpacing:\"0em\",lineHeight:\"1em\"}},s36fSJVHN:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-sxv1a5\",\"data-framer-name\":\"Alles Anzeigen Desktop\",layoutDependency:layoutDependency,layoutId:\"Xg6wbBXcW\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1htihd5\",\"data-styles-preset\":\"h17XaN2js\",children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"C1DG4PP88\",openInNewTab:false,scopeId:\"ad5gLOIn8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Mehr anzeigen\"})})})}),className:\"framer-bpnp1q\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C1DG4PP88\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gvzaig\",\"data-border\":true,\"data-framer-name\":\"Collection\",layoutDependency:layoutDependency,layoutId:\"eiHTFbV65\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{N0ntemCyn:{\"--border-bottom-width\":\"0px\"},s36fSJVHN:{\"--border-bottom-width\":\"0px\"}},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"eiHTFbV65\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"eiHTFbV65\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"eiHTFbV65\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"eiHTFbV65\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"yjTLUhgD7\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},...addPropertyOverrides({N0ntemCyn:{query:{from:{alias:\"eiHTFbV65\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"eiHTFbV65\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"eiHTFbV65\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"hLQmVXDJp\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"eiHTFbV65\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"eiHTFbV65\",name:\"U_fqU98P9\",type:\"Identifier\"},type:\"BinaryOperation\"}}},q35F6swP6:{query:{from:{alias:\"eiHTFbV65\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"eiHTFbV65\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"eiHTFbV65\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"hLQmVXDJp\"},type:\"BinaryOperation\"}}},s36fSJVHN:{query:{from:{alias:\"eiHTFbV65\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"eiHTFbV65\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"eiHTFbV65\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"eiHTFbV65\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"hLQmVXDJp\"},type:\"BinaryOperation\"}}}},baseVariant,gestureVariant),children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({GSEMEwnpz:GSEMEwnpzeiHTFbV65,id:ideiHTFbV65,SNzXc9qW1:SNzXc9qW1eiHTFbV65,uulcserP6:uulcserP6eiHTFbV65,vaSY19i4P:vaSY19i4PeiHTFbV65},index)=>{uulcserP6eiHTFbV65??=\"\";vaSY19i4PeiHTFbV65??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`eiHTFbV65-${ideiHTFbV65}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6eiHTFbV65},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-l8j5yw\",layoutDependency:layoutDependency,layoutId:\"D0GJRo62q\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6eiHTFbV65},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6eiHTFbV65},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6eiHTFbV65},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6eiHTFbV65},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,...addPropertyOverrides({N0ntemCyn:{width:`max((${componentViewport?.width||\"100vw\"} - 25px) / 2, 200px)`},q35F6swP6:{width:`max(${componentViewport?.width||\"100vw\"}, 200px)`},s36fSJVHN:{width:`max((${componentViewport?.width||\"100vw\"} - 25px) / 2, 200px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-hi22yu-container\",layoutDependency:layoutDependency,layoutId:\"ApKjEnajD-container\",nodeId:\"ApKjEnajD\",rendersWithMotion:true,scopeId:\"ad5gLOIn8\",style:{transformPerspective:1200},variants:{N0ntemCyn:{transformPerspective:undefined},q35F6swP6:{transformPerspective:undefined},s36fSJVHN:{transformPerspective:undefined}},...addPropertyOverrides({N0ntemCyn:{__framer__styleAppearEffectEnabled:undefined},q35F6swP6:{__framer__styleAppearEffectEnabled:undefined},s36fSJVHN:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(CardBrand,{FGBLuU585:resolvedLinks[0],G6l67NRzN:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1eiHTFbV65,activeLocale),height:\"100%\",id:\"ApKjEnajD\",layoutId:\"ApKjEnajD\",LRL_mvDaJ:vaSY19i4PeiHTFbV65,style:{width:\"100%\"},variant:\"Jhx9P6akf\",width:\"100%\",xuMNzM7cK:toResponsiveImage(GSEMEwnpzeiHTFbV65),...addPropertyOverrides({N0ntemCyn:{FGBLuU585:resolvedLinks[1]},q35F6swP6:{FGBLuU585:resolvedLinks[2]},s36fSJVHN:{FGBLuU585:resolvedLinks[3]}},baseVariant,gestureVariant)})})})})})})},ideiHTFbV65);})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c02phf\",\"data-framer-name\":\"Alles Anzeigen Mobile\",layoutDependency:layoutDependency,layoutId:\"doD92WlIU\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIENvbXBhY3QgRGlzcGxheSBTZW1pYm9sZA==\",\"--framer-font-family\":'\"SF Compact Display Semibold\", \"SF Compact Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"avn2ANkcr\",openInNewTab:false,scopeId:\"ad5gLOIn8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Mehr anzeigen\"})})})}),className:\"framer-ec3uvt\",fonts:[\"CUSTOM;SF Compact Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"avn2ANkcr\",style:{\"--extracted-r6o4lv\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4ZedM.framer-195t40, .framer-4ZedM .framer-195t40 { display: block; }\",\".framer-4ZedM.framer-16ralp1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1140px; }\",\".framer-4ZedM .framer-c5drmj { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4ZedM .framer-d9k437 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-4ZedM .framer-q4n25x-container { cursor: pointer; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-4ZedM .framer-sxv1a5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-4ZedM .framer-bpnp1q, .framer-4ZedM .framer-ec3uvt { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-4ZedM .framer-1gvzaig { display: grid; flex: none; gap: 25px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: start; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-4ZedM .framer-l8j5yw { align-self: start; display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: auto; justify-content: center; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-4ZedM .framer-hi22yu-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 1fr; }\",\".framer-4ZedM .framer-1c02phf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 35px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4ZedM.framer-16ralp1, .framer-4ZedM .framer-c5drmj, .framer-4ZedM .framer-d9k437, .framer-4ZedM .framer-sxv1a5, .framer-4ZedM .framer-1c02phf { gap: 0px; } .framer-4ZedM.framer-16ralp1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-4ZedM.framer-16ralp1 > :first-child { margin-top: 0px; } .framer-4ZedM.framer-16ralp1 > :last-child { margin-bottom: 0px; } .framer-4ZedM .framer-c5drmj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4ZedM .framer-c5drmj > :first-child, .framer-4ZedM .framer-d9k437 > :first-child, .framer-4ZedM .framer-sxv1a5 > :first-child, .framer-4ZedM .framer-1c02phf > :first-child { margin-left: 0px; } .framer-4ZedM .framer-c5drmj > :last-child, .framer-4ZedM .framer-d9k437 > :last-child, .framer-4ZedM .framer-sxv1a5 > :last-child, .framer-4ZedM .framer-1c02phf > :last-child { margin-right: 0px; } .framer-4ZedM .framer-d9k437 > *, .framer-4ZedM .framer-sxv1a5 > *, .framer-4ZedM .framer-1c02phf > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-4ZedM.framer-v-1curaf7.framer-16ralp1 { cursor: unset; gap: 25px; overflow: visible; }\",\".framer-4ZedM.framer-v-1curaf7 .framer-c5drmj { position: sticky; top: 68px; z-index: 1; }\",\".framer-4ZedM.framer-v-1curaf7 .framer-bpnp1q { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4ZedM.framer-v-1curaf7.framer-16ralp1 { gap: 0px; } .framer-4ZedM.framer-v-1curaf7.framer-16ralp1 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-4ZedM.framer-v-1curaf7.framer-16ralp1 > :first-child { margin-top: 0px; } .framer-4ZedM.framer-v-1curaf7.framer-16ralp1 > :last-child { margin-bottom: 0px; } }\",\".framer-4ZedM.framer-v-qoe3gh.framer-16ralp1 { width: 380px; }\",\".framer-4ZedM.framer-v-qoe3gh .framer-d9k437, .framer-4ZedM.framer-v-189nrlc .framer-d9k437 { padding: 15px 0px 15px 0px; }\",\".framer-4ZedM.framer-v-189nrlc.framer-16ralp1 { align-content: flex-end; align-items: flex-end; cursor: unset; gap: 0px; overflow: visible; width: 380px; }\",\".framer-4ZedM.framer-v-189nrlc .framer-c5drmj { position: sticky; top: 69px; z-index: 1; }\",\".framer-4ZedM.framer-v-189nrlc .framer-1gvzaig { gap: 0px; grid-template-columns: repeat(1, minmax(200px, 1fr)); }\",\".framer-4ZedM.framer-v-189nrlc .framer-l8j5yw { gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4ZedM.framer-v-189nrlc.framer-16ralp1, .framer-4ZedM.framer-v-189nrlc .framer-1gvzaig, .framer-4ZedM.framer-v-189nrlc .framer-l8j5yw { gap: 0px; } .framer-4ZedM.framer-v-189nrlc.framer-16ralp1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4ZedM.framer-v-189nrlc.framer-16ralp1 > :first-child { margin-top: 0px; } .framer-4ZedM.framer-v-189nrlc.framer-16ralp1 > :last-child { margin-bottom: 0px; } .framer-4ZedM.framer-v-189nrlc .framer-1gvzaig > *, .framer-4ZedM.framer-v-189nrlc .framer-1gvzaig > :first-child, .framer-4ZedM.framer-v-189nrlc .framer-1gvzaig > :last-child, .framer-4ZedM.framer-v-189nrlc .framer-l8j5yw > *, .framer-4ZedM.framer-v-189nrlc .framer-l8j5yw > :first-child, .framer-4ZedM.framer-v-189nrlc .framer-l8j5yw > :last-child { margin: 0px; } }\",\".framer-4ZedM.framer-v-1vugws2.framer-16ralp1 { cursor: unset; gap: 25px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4ZedM.framer-v-1vugws2.framer-16ralp1 { gap: 0px; } .framer-4ZedM.framer-v-1vugws2.framer-16ralp1 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-4ZedM.framer-v-1vugws2.framer-16ralp1 > :first-child { margin-top: 0px; } .framer-4ZedM.framer-v-1vugws2.framer-16ralp1 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-4ZedM[data-border=\"true\"]::after, .framer-4ZedM [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 140\n * @framerIntrinsicWidth 1140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"N0ntemCyn\":{\"layout\":[\"fixed\",\"auto\"]},\"FEuEuzd0V\":{\"layout\":[\"fixed\",\"auto\"]},\"q35F6swP6\":{\"layout\":[\"fixed\",\"auto\"]},\"nIw4kAFUi\":{\"layout\":[\"fixed\",\"auto\"]},\"s36fSJVHN\":{\"layout\":[\"fixed\",\"auto\"]},\"RWWfFSe2L\":{\"layout\":[\"fixed\",\"auto\"]},\"dzwVNu2IF\":{\"layout\":[\"fixed\",\"auto\"]},\"RjmlSkNNh\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"KT211s3sR\":\"text\",\"wNjwE3uYr\":\"link\",\"NHgyWC94N\":\"border\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerad5gLOIn8=withCSS(Component,css,\"framer-4ZedM\");export default Framerad5gLOIn8;Framerad5gLOIn8.displayName=\"Brand Row Herm\\xe8s\";Framerad5gLOIn8.defaultProps={height:140,width:1140};addPropertyControls(Framerad5gLOIn8,{variant:{options:[\"Sbzfvoz5l\",\"N0ntemCyn\",\"FEuEuzd0V\",\"q35F6swP6\",\"nIw4kAFUi\",\"s36fSJVHN\"],optionTitles:[\"Desktop\",\"Desktop Open\",\"Mobile\",\"Mobile Open\",\"Tablet\",\"Tablet Open\"],title:\"Variant\",type:ControlType.Enum},KT211s3sR:{defaultValue:\"BRAND\",displayTextArea:true,title:\"Text\",type:ControlType.String},wNjwE3uYr:{title:\"Link\",type:ControlType.Link},NHgyWC94N:{defaultValue:{borderBottomWidth:1,borderColor:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51)) /* {\"name\":\"Black\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},title:\"Border\",type:ControlType.Border}});addFonts(Framerad5gLOIn8,[{explicitInter:true,fonts:[{family:\"Helvetica Neue Condensed Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/m51RfBUZWFtucHm4D3e07GJwU.otf\"},{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:\"SF Compact Display Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZPX5QyU8gHyYADt5u1je3kqbnvc.otf\"}]},...MagTextFonts,...CardBrandFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerad5gLOIn8\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"N0ntemCyn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FEuEuzd0V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"q35F6swP6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nIw4kAFUi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s36fSJVHN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RWWfFSe2L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dzwVNu2IF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RjmlSkNNh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"KT211s3sR\\\":\\\"text\\\",\\\"wNjwE3uYr\\\":\\\"link\\\",\\\"NHgyWC94N\\\":\\\"border\\\"}\",\"framerIntrinsicWidth\":\"1140\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"140\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import MagText from\"https://framerusercontent.com/modules/W5DPKEeQuqeSZmy9NBRc/J9eQVqcHHoC6JaHQquqb/Text_5.js\";import Articles,{enumToDisplayNameFunctions}from\"https://framerusercontent.com/modules/cvfF8Zfj3hk6PrJQYRM6/hcrITb9eKaCb892HmIEb/kFZ9bhFxc.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/cRK5N7PJ8cPiFyqYycEE/Hfinp4bR4n8MTWZm4jKe/FP95AICZ2.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/bCssN5wDLh0uJEdVFXoJ/2sknmVSnALlUM88mcD4i/h17XaN2js.js\";import CardBrand from\"https://framerusercontent.com/modules/0CUZsI5ihdpjttz9nftx/yFSKdTwgSitriAQKzoAi/rWlPZbm7N.js\";const MagTextFonts=getFonts(MagText);const CardBrandFonts=getFonts(CardBrand);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const enabledGestures={hMoU2I3SC:{hover:true},pgQXqYpUD:{hover:true},XOWyjUGcj:{hover:true}};const cycleOrder=[\"pgQXqYpUD\",\"mvVUgp9lY\",\"hMoU2I3SC\",\"icMM31Om6\",\"XOWyjUGcj\",\"Fm1MLW3V_\"];const serializationHash=\"framer-9BTb6\";const variantClassNames={Fm1MLW3V_:\"framer-v-cpbaez\",hMoU2I3SC:\"framer-v-16k09zp\",icMM31Om6:\"framer-v-u8bz43\",mvVUgp9lY:\"framer-v-n6cikd\",pgQXqYpUD:\"framer-v-ln21yr\",XOWyjUGcj:\"framer-v-1txoui7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:150};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"IrdGA1w5l\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"IrdGA1w5l\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"IrdGA1w5l\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"IrdGA1w5l\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"MMdffsQ3w\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query1=prequery=>prequery({from:{alias:\"IrdGA1w5l\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"IrdGA1w5l\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"IrdGA1w5l\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"ezJs2nMW_\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"IrdGA1w5l\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"IrdGA1w5l\",name:\"U_fqU98P9\",type:\"Identifier\"},type:\"BinaryOperation\"}});const query2=prequery=>prequery({from:{alias:\"IrdGA1w5l\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"IrdGA1w5l\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"IrdGA1w5l\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"ezJs2nMW_\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Open\":\"mvVUgp9lY\",\"Mobile Open\":\"icMM31Om6\",\"Tablet Open\":\"Fm1MLW3V_\",Desktop:\"pgQXqYpUD\",Mobile:\"hMoU2I3SC\",Tablet:\"XOWyjUGcj\"};const getProps=({height,id,link,text,width,...props})=>{return{...props,KT211s3sR:text??props.KT211s3sR??\"BRAND\",variant:humanReadableVariantMap[props.variant]??props.variant??\"pgQXqYpUD\",wNjwE3uYr:link??props.wNjwE3uYr};};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,KT211s3sR,wNjwE3uYr,uulcserP6IrdGA1w5l,GSEMEwnpzIrdGA1w5l,SNzXc9qW1IrdGA1w5l,vaSY19i4PIrdGA1w5l,idIrdGA1w5l,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pgQXqYpUD\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapbvguzu=activeVariantCallback(async(...args)=>{setVariant(\"mvVUgp9lY\");});const onTapeqlstq=activeVariantCallback(async(...args)=>{setVariant(\"pgQXqYpUD\");});const onTapi7cp9v=activeVariantCallback(async(...args)=>{setVariant(\"icMM31Om6\");});const onTap1p3tim7=activeVariantCallback(async(...args)=>{setVariant(\"hMoU2I3SC\");});const onTap1tex4nq=activeVariantCallback(async(...args)=>{setVariant(\"Fm1MLW3V_\");});const onTapiydisv=activeVariantCallback(async(...args)=>{setVariant(\"XOWyjUGcj\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"mvVUgp9lY\",\"Fm1MLW3V_\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"mvVUgp9lY\",\"icMM31Om6\",\"Fm1MLW3V_\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"icMM31Om6\")return true;return false;};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-ln21yr\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"pgQXqYpUD\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\",...style},...addPropertyOverrides({\"hMoU2I3SC-hover\":{\"data-framer-name\":undefined},\"pgQXqYpUD-hover\":{\"data-framer-name\":undefined},\"XOWyjUGcj-hover\":{\"data-framer-name\":undefined},Fm1MLW3V_:{\"data-framer-name\":\"Tablet Open\"},hMoU2I3SC:{\"data-framer-name\":\"Mobile\"},icMM31Om6:{\"data-framer-name\":\"Mobile Open\"},mvVUgp9lY:{\"data-framer-name\":\"Desktop Open\"},XOWyjUGcj:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yzrj9o\",\"data-framer-name\":\"Brand Line\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qV5sLTAeB\",onTap:onTapbvguzu,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\"},variants:{\"pgQXqYpUD-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},Fm1MLW3V_:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},hMoU2I3SC:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},icMM31Om6:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},mvVUgp9lY:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},XOWyjUGcj:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({Fm1MLW3V_:{\"data-border\":true,onTap:onTapiydisv},hMoU2I3SC:{onTap:onTapi7cp9v},icMM31Om6:{\"data-border\":true,onTap:onTap1p3tim7},mvVUgp9lY:{\"data-border\":true,onTap:onTapeqlstq},XOWyjUGcj:{onTap:onTap1tex4nq}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x9f6qc\",\"data-framer-name\":\"Strokes Headline Copy\",layoutDependency:layoutDependency,layoutId:\"GTVogICLP\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1by27rs-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"hAg4IGbtq-container\",nodeId:\"hAg4IGbtq\",rendersWithMotion:true,scopeId:\"B_AbXyhLc\",children:/*#__PURE__*/_jsx(MagText,{color:\"rgba(209, 209, 209, 0)\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"100px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"},height:\"100%\",id:\"hAg4IGbtq\",layoutId:\"hAg4IGbtq\",outlineColor:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",outlineWidth:1,style:{width:\"100%\"},text:KT211s3sR,width:\"100%\",...addPropertyOverrides({\"hMoU2I3SC-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},\"pgQXqYpUD-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},\"XOWyjUGcj-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},Fm1MLW3V_:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},hMoU2I3SC:{font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"74px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},icMM31Om6:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"74px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},mvVUgp9lY:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},XOWyjUGcj:{font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gpfv9q\",\"data-framer-name\":\"Alles Anzeigen Desktop\",layoutDependency:layoutDependency,layoutId:\"xMtKFTLKu\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1htihd5\",\"data-styles-preset\":\"h17XaN2js\",children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"afkxW3bti\",openInNewTab:false,scopeId:\"B_AbXyhLc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Mehr anzeigen\"})})})}),className:\"framer-1huk0mg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"afkxW3bti\",variants:{mvVUgp9lY:{\"--extracted-r6o4lv\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Fm1MLW3V_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1htihd5\",\"data-styles-preset\":\"h17XaN2js\",children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"afkxW3bti\",openInNewTab:false,scopeId:\"B_AbXyhLc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Weitere Themen\"})})})})},mvVUgp9lY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIENvbXBhY3QgRGlzcGxheSBTZW1pYm9sZA==\",\"--framer-font-family\":'\"SF Compact Display Semibold\", \"SF Compact Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"afkxW3bti\",openInNewTab:false,scopeId:\"B_AbXyhLc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Weitere Themen\"})})})}),fonts:[\"CUSTOM;SF Compact Display Semibold\"]}},baseVariant,gestureVariant)})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-prffi1\",\"data-border\":true,\"data-framer-name\":\"Collection\",layoutDependency:layoutDependency,layoutId:\"IrdGA1w5l\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{Fm1MLW3V_:{\"--border-bottom-width\":\"0px\"},mvVUgp9lY:{\"--border-bottom-width\":\"0px\"}},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"IrdGA1w5l\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"IrdGA1w5l\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"IrdGA1w5l\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"IrdGA1w5l\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"MMdffsQ3w\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},...addPropertyOverrides({Fm1MLW3V_:{query:{from:{alias:\"IrdGA1w5l\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"IrdGA1w5l\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"IrdGA1w5l\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"ezJs2nMW_\"},type:\"BinaryOperation\"}}},icMM31Om6:{query:{from:{alias:\"IrdGA1w5l\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"IrdGA1w5l\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"IrdGA1w5l\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"ezJs2nMW_\"},type:\"BinaryOperation\"}}},mvVUgp9lY:{query:{from:{alias:\"IrdGA1w5l\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"IrdGA1w5l\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"IrdGA1w5l\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"IrdGA1w5l\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"ezJs2nMW_\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"IrdGA1w5l\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"IrdGA1w5l\",name:\"U_fqU98P9\",type:\"Identifier\"},type:\"BinaryOperation\"}}}},baseVariant,gestureVariant),children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({GSEMEwnpz:GSEMEwnpzIrdGA1w5l,id:idIrdGA1w5l,SNzXc9qW1:SNzXc9qW1IrdGA1w5l,uulcserP6:uulcserP6IrdGA1w5l,vaSY19i4P:vaSY19i4PIrdGA1w5l},index)=>{uulcserP6IrdGA1w5l??=\"\";vaSY19i4PIrdGA1w5l??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`IrdGA1w5l-${idIrdGA1w5l}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6IrdGA1w5l},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12e9rqg\",layoutDependency:layoutDependency,layoutId:\"grTwL44jq\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6IrdGA1w5l},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6IrdGA1w5l},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6IrdGA1w5l},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6IrdGA1w5l},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,...addPropertyOverrides({Fm1MLW3V_:{width:`max((${componentViewport?.width||\"100vw\"} - 25px) / 2, 200px)`},icMM31Om6:{width:`max(${componentViewport?.width||\"100vw\"}, 200px)`},mvVUgp9lY:{width:`max((${componentViewport?.width||\"100vw\"} - 25px) / 2, 200px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1dq8ahl-container\",layoutDependency:layoutDependency,layoutId:\"yMt1dhqMO-container\",nodeId:\"yMt1dhqMO\",rendersWithMotion:true,scopeId:\"B_AbXyhLc\",style:{transformPerspective:1200},variants:{Fm1MLW3V_:{transformPerspective:undefined},icMM31Om6:{transformPerspective:undefined},mvVUgp9lY:{transformPerspective:undefined}},...addPropertyOverrides({Fm1MLW3V_:{__framer__styleAppearEffectEnabled:undefined},icMM31Om6:{__framer__styleAppearEffectEnabled:undefined},mvVUgp9lY:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(CardBrand,{FGBLuU585:resolvedLinks[0],G6l67NRzN:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1IrdGA1w5l,activeLocale),height:\"100%\",id:\"yMt1dhqMO\",layoutId:\"yMt1dhqMO\",LRL_mvDaJ:vaSY19i4PIrdGA1w5l,style:{width:\"100%\"},variant:\"Jhx9P6akf\",width:\"100%\",xuMNzM7cK:toResponsiveImage(GSEMEwnpzIrdGA1w5l),...addPropertyOverrides({Fm1MLW3V_:{FGBLuU585:resolvedLinks[3]},icMM31Om6:{FGBLuU585:resolvedLinks[2]},mvVUgp9lY:{FGBLuU585:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})})})},idIrdGA1w5l);})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12h6n6b\",\"data-framer-name\":\"Alles Anzeigen Mobile\",layoutDependency:layoutDependency,layoutId:\"HtY_z_z1X\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIENvbXBhY3QgRGlzcGxheSBTZW1pYm9sZA==\",\"--framer-font-family\":'\"SF Compact Display Semibold\", \"SF Compact Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"iowhg9YS3\",openInNewTab:false,scopeId:\"B_AbXyhLc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Weitere Themen\"})})})}),className:\"framer-1eovz6c\",fonts:[\"CUSTOM;SF Compact Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"iowhg9YS3\",style:{\"--extracted-r6o4lv\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9BTb6.framer-13wrvr4, .framer-9BTb6 .framer-13wrvr4 { display: block; }\",\".framer-9BTb6.framer-ln21yr { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1140px; }\",\".framer-9BTb6 .framer-1yzrj9o { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9BTb6 .framer-1x9f6qc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-9BTb6 .framer-1by27rs-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-9BTb6 .framer-1gpfv9q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9BTb6 .framer-1huk0mg, .framer-9BTb6 .framer-1eovz6c { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9BTb6 .framer-prffi1 { display: grid; flex: none; gap: 25px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: start; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-9BTb6 .framer-12e9rqg { align-self: start; display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: auto; justify-content: center; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-9BTb6 .framer-1dq8ahl-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 1fr; }\",\".framer-9BTb6 .framer-12h6n6b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 35px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9BTb6.framer-ln21yr, .framer-9BTb6 .framer-1yzrj9o, .framer-9BTb6 .framer-1x9f6qc, .framer-9BTb6 .framer-1gpfv9q, .framer-9BTb6 .framer-12h6n6b { gap: 0px; } .framer-9BTb6.framer-ln21yr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9BTb6.framer-ln21yr > :first-child { margin-top: 0px; } .framer-9BTb6.framer-ln21yr > :last-child { margin-bottom: 0px; } .framer-9BTb6 .framer-1yzrj9o > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9BTb6 .framer-1yzrj9o > :first-child, .framer-9BTb6 .framer-1x9f6qc > :first-child, .framer-9BTb6 .framer-1gpfv9q > :first-child, .framer-9BTb6 .framer-12h6n6b > :first-child { margin-left: 0px; } .framer-9BTb6 .framer-1yzrj9o > :last-child, .framer-9BTb6 .framer-1x9f6qc > :last-child, .framer-9BTb6 .framer-1gpfv9q > :last-child, .framer-9BTb6 .framer-12h6n6b > :last-child { margin-right: 0px; } .framer-9BTb6 .framer-1x9f6qc > *, .framer-9BTb6 .framer-1gpfv9q > *, .framer-9BTb6 .framer-12h6n6b > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-9BTb6.framer-v-n6cikd.framer-ln21yr { cursor: unset; gap: 25px; overflow: visible; }\",\".framer-9BTb6.framer-v-n6cikd .framer-1yzrj9o { position: sticky; top: 68px; z-index: 1; }\",\".framer-9BTb6.framer-v-n6cikd .framer-1huk0mg { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9BTb6.framer-v-n6cikd.framer-ln21yr { gap: 0px; } .framer-9BTb6.framer-v-n6cikd.framer-ln21yr > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-9BTb6.framer-v-n6cikd.framer-ln21yr > :first-child { margin-top: 0px; } .framer-9BTb6.framer-v-n6cikd.framer-ln21yr > :last-child { margin-bottom: 0px; } }\",\".framer-9BTb6.framer-v-16k09zp.framer-ln21yr { width: 380px; }\",\".framer-9BTb6.framer-v-16k09zp .framer-1x9f6qc, .framer-9BTb6.framer-v-u8bz43 .framer-1x9f6qc { padding: 15px 0px 15px 0px; }\",\".framer-9BTb6.framer-v-u8bz43.framer-ln21yr { align-content: flex-end; align-items: flex-end; cursor: unset; gap: 0px; overflow: visible; width: 380px; }\",\".framer-9BTb6.framer-v-u8bz43 .framer-1yzrj9o { position: sticky; top: 69px; z-index: 1; }\",\".framer-9BTb6.framer-v-u8bz43 .framer-prffi1 { gap: 0px; grid-template-columns: repeat(1, minmax(200px, 1fr)); }\",\".framer-9BTb6.framer-v-u8bz43 .framer-12e9rqg { gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9BTb6.framer-v-u8bz43.framer-ln21yr, .framer-9BTb6.framer-v-u8bz43 .framer-prffi1, .framer-9BTb6.framer-v-u8bz43 .framer-12e9rqg { gap: 0px; } .framer-9BTb6.framer-v-u8bz43.framer-ln21yr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9BTb6.framer-v-u8bz43.framer-ln21yr > :first-child { margin-top: 0px; } .framer-9BTb6.framer-v-u8bz43.framer-ln21yr > :last-child { margin-bottom: 0px; } .framer-9BTb6.framer-v-u8bz43 .framer-prffi1 > *, .framer-9BTb6.framer-v-u8bz43 .framer-prffi1 > :first-child, .framer-9BTb6.framer-v-u8bz43 .framer-prffi1 > :last-child, .framer-9BTb6.framer-v-u8bz43 .framer-12e9rqg > *, .framer-9BTb6.framer-v-u8bz43 .framer-12e9rqg > :first-child, .framer-9BTb6.framer-v-u8bz43 .framer-12e9rqg > :last-child { margin: 0px; } }\",\".framer-9BTb6.framer-v-cpbaez.framer-ln21yr { cursor: unset; gap: 25px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9BTb6.framer-v-cpbaez.framer-ln21yr { gap: 0px; } .framer-9BTb6.framer-v-cpbaez.framer-ln21yr > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-9BTb6.framer-v-cpbaez.framer-ln21yr > :first-child { margin-top: 0px; } .framer-9BTb6.framer-v-cpbaez.framer-ln21yr > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-9BTb6[data-border=\"true\"]::after, .framer-9BTb6 [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 140\n * @framerIntrinsicWidth 1140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mvVUgp9lY\":{\"layout\":[\"fixed\",\"auto\"]},\"hMoU2I3SC\":{\"layout\":[\"fixed\",\"auto\"]},\"icMM31Om6\":{\"layout\":[\"fixed\",\"auto\"]},\"XOWyjUGcj\":{\"layout\":[\"fixed\",\"auto\"]},\"Fm1MLW3V_\":{\"layout\":[\"fixed\",\"auto\"]},\"YP_hvPakx\":{\"layout\":[\"fixed\",\"auto\"]},\"TWHdoyzvu\":{\"layout\":[\"fixed\",\"auto\"]},\"QaYn81x50\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"KT211s3sR\":\"text\",\"wNjwE3uYr\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerB_AbXyhLc=withCSS(Component,css,\"framer-9BTb6\");export default FramerB_AbXyhLc;FramerB_AbXyhLc.displayName=\"Brand Row Canali\";FramerB_AbXyhLc.defaultProps={height:140,width:1140};addPropertyControls(FramerB_AbXyhLc,{variant:{options:[\"pgQXqYpUD\",\"mvVUgp9lY\",\"hMoU2I3SC\",\"icMM31Om6\",\"XOWyjUGcj\",\"Fm1MLW3V_\"],optionTitles:[\"Desktop\",\"Desktop Open\",\"Mobile\",\"Mobile Open\",\"Tablet\",\"Tablet Open\"],title:\"Variant\",type:ControlType.Enum},KT211s3sR:{defaultValue:\"BRAND\",displayTextArea:true,title:\"Text\",type:ControlType.String},wNjwE3uYr:{title:\"Link\",type:ControlType.Link}});addFonts(FramerB_AbXyhLc,[{explicitInter:true,fonts:[{family:\"Helvetica Neue Condensed Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/m51RfBUZWFtucHm4D3e07GJwU.otf\"},{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:\"SF Compact Display Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZPX5QyU8gHyYADt5u1je3kqbnvc.otf\"}]},...MagTextFonts,...CardBrandFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerB_AbXyhLc\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"140\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mvVUgp9lY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hMoU2I3SC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"icMM31Om6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XOWyjUGcj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Fm1MLW3V_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YP_hvPakx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TWHdoyzvu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QaYn81x50\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1140\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"KT211s3sR\\\":\\\"text\\\",\\\"wNjwE3uYr\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import MagText from\"https://framerusercontent.com/modules/W5DPKEeQuqeSZmy9NBRc/J9eQVqcHHoC6JaHQquqb/Text_5.js\";import Articles,{enumToDisplayNameFunctions}from\"https://framerusercontent.com/modules/cvfF8Zfj3hk6PrJQYRM6/hcrITb9eKaCb892HmIEb/kFZ9bhFxc.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/cRK5N7PJ8cPiFyqYycEE/Hfinp4bR4n8MTWZm4jKe/FP95AICZ2.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/bCssN5wDLh0uJEdVFXoJ/2sknmVSnALlUM88mcD4i/h17XaN2js.js\";import CardBrand from\"https://framerusercontent.com/modules/0CUZsI5ihdpjttz9nftx/yFSKdTwgSitriAQKzoAi/rWlPZbm7N.js\";const MagTextFonts=getFonts(MagText);const CardBrandFonts=getFonts(CardBrand);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const enabledGestures={fuCZBUM7b:{hover:true},igE7n9VMw:{hover:true},IgI0U1RqS:{hover:true}};const cycleOrder=[\"fuCZBUM7b\",\"z9FLf1sT6\",\"igE7n9VMw\",\"fYXQksv2e\",\"IgI0U1RqS\",\"s_m2Rjon1\"];const serializationHash=\"framer-seI7r\";const variantClassNames={fuCZBUM7b:\"framer-v-azdxsp\",fYXQksv2e:\"framer-v-1otvufc\",igE7n9VMw:\"framer-v-13t0r0a\",IgI0U1RqS:\"framer-v-bcjhyg\",s_m2Rjon1:\"framer-v-29wvu6\",z9FLf1sT6:\"framer-v-xionqd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:150};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"R_39g8bLo\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"R_39g8bLo\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"R_39g8bLo\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"R_39g8bLo\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"MMdffsQ3w\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query1=prequery=>prequery({from:{alias:\"R_39g8bLo\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"R_39g8bLo\",direction:\"desc\",name:\"mz9kVlpKW\",type:\"Identifier\"}],select:[{collection:\"R_39g8bLo\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"R_39g8bLo\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"MMdffsQ3w\"},type:\"BinaryOperation\"}});const query2=prequery=>prequery({from:{alias:\"R_39g8bLo\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"R_39g8bLo\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"R_39g8bLo\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"MMdffsQ3w\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Open\":\"z9FLf1sT6\",\"Mobile Open\":\"fYXQksv2e\",\"Tablet Open\":\"s_m2Rjon1\",Desktop:\"fuCZBUM7b\",Mobile:\"igE7n9VMw\",Tablet:\"IgI0U1RqS\"};const getProps=({height,id,link,text,width,...props})=>{return{...props,KT211s3sR:text??props.KT211s3sR??\"BRAND\",variant:humanReadableVariantMap[props.variant]??props.variant??\"fuCZBUM7b\",wNjwE3uYr:link??props.wNjwE3uYr};};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,KT211s3sR,wNjwE3uYr,uulcserP6R_39g8bLo,GSEMEwnpzR_39g8bLo,SNzXc9qW1R_39g8bLo,vaSY19i4PR_39g8bLo,idR_39g8bLo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fuCZBUM7b\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap12qd78i=activeVariantCallback(async(...args)=>{setVariant(\"z9FLf1sT6\");});const onTap1bwvr91=activeVariantCallback(async(...args)=>{setVariant(\"fuCZBUM7b\");});const onTapucjuh5=activeVariantCallback(async(...args)=>{setVariant(\"fYXQksv2e\");});const onTapnkgz5w=activeVariantCallback(async(...args)=>{setVariant(\"igE7n9VMw\");});const onTapw4z9uc=activeVariantCallback(async(...args)=>{setVariant(\"s_m2Rjon1\");});const onTap9ntk16=activeVariantCallback(async(...args)=>{setVariant(\"IgI0U1RqS\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"z9FLf1sT6\",\"s_m2Rjon1\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"z9FLf1sT6\",\"fYXQksv2e\",\"s_m2Rjon1\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"fYXQksv2e\")return true;return false;};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-azdxsp\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"fuCZBUM7b\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\",...style},...addPropertyOverrides({\"fuCZBUM7b-hover\":{\"data-framer-name\":undefined},\"igE7n9VMw-hover\":{\"data-framer-name\":undefined},\"IgI0U1RqS-hover\":{\"data-framer-name\":undefined},fYXQksv2e:{\"data-framer-name\":\"Mobile Open\"},igE7n9VMw:{\"data-framer-name\":\"Mobile\"},IgI0U1RqS:{\"data-framer-name\":\"Tablet\"},s_m2Rjon1:{\"data-framer-name\":\"Tablet Open\"},z9FLf1sT6:{\"data-framer-name\":\"Desktop Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j1drn9\",\"data-framer-name\":\"Brand Line\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KEHYXaJ5R\",onTap:onTap12qd78i,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\"},variants:{\"fuCZBUM7b-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},fYXQksv2e:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},igE7n9VMw:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},IgI0U1RqS:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},s_m2Rjon1:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},z9FLf1sT6:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({fYXQksv2e:{\"data-border\":true,onTap:onTapnkgz5w},igE7n9VMw:{onTap:onTapucjuh5},IgI0U1RqS:{onTap:onTapw4z9uc},s_m2Rjon1:{\"data-border\":true,onTap:onTap9ntk16},z9FLf1sT6:{\"data-border\":true,onTap:onTap1bwvr91}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v2thj0\",\"data-framer-name\":\"Strokes Headline Copy\",layoutDependency:layoutDependency,layoutId:\"YEDZOHao0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-166ldtq-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"axLUv2yWg-container\",nodeId:\"axLUv2yWg\",rendersWithMotion:true,scopeId:\"cvBLDx_ff\",children:/*#__PURE__*/_jsx(MagText,{color:\"rgba(209, 209, 209, 0)\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"100px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"},height:\"100%\",id:\"axLUv2yWg\",layoutId:\"axLUv2yWg\",outlineColor:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",outlineWidth:1,style:{width:\"100%\"},text:KT211s3sR,width:\"100%\",...addPropertyOverrides({\"fuCZBUM7b-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},\"igE7n9VMw-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},\"IgI0U1RqS-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},fYXQksv2e:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"74px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},igE7n9VMw:{font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"74px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},IgI0U1RqS:{font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},s_m2Rjon1:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},z9FLf1sT6:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-5t8p5e\",\"data-framer-name\":\"Alles Anzeigen Desktop\",layoutDependency:layoutDependency,layoutId:\"W1466UWK9\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1htihd5\",\"data-styles-preset\":\"h17XaN2js\",children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"HsxUqPwuL\",openInNewTab:false,scopeId:\"cvBLDx_ff\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Mehr anzeigen\"})})})}),className:\"framer-3l722y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HsxUqPwuL\",variants:{z9FLf1sT6:{\"--extracted-r6o4lv\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({z9FLf1sT6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIENvbXBhY3QgRGlzcGxheSBTZW1pYm9sZA==\",\"--framer-font-family\":'\"SF Compact Display Semibold\", \"SF Compact Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"HsxUqPwuL\",openInNewTab:false,scopeId:\"cvBLDx_ff\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Mehr anzeigen\"})})})}),fonts:[\"CUSTOM;SF Compact Display Semibold\"]}},baseVariant,gestureVariant)})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-xk894e\",\"data-border\":true,\"data-framer-name\":\"Collection\",layoutDependency:layoutDependency,layoutId:\"R_39g8bLo\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{s_m2Rjon1:{\"--border-bottom-width\":\"0px\"},z9FLf1sT6:{\"--border-bottom-width\":\"0px\"}},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"R_39g8bLo\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"R_39g8bLo\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"R_39g8bLo\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"R_39g8bLo\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"MMdffsQ3w\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},...addPropertyOverrides({fYXQksv2e:{query:{from:{alias:\"R_39g8bLo\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"R_39g8bLo\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"R_39g8bLo\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"MMdffsQ3w\"},type:\"BinaryOperation\"}}},s_m2Rjon1:{query:{from:{alias:\"R_39g8bLo\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"R_39g8bLo\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"R_39g8bLo\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"MMdffsQ3w\"},type:\"BinaryOperation\"}}},z9FLf1sT6:{query:{from:{alias:\"R_39g8bLo\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"R_39g8bLo\",direction:\"desc\",name:\"mz9kVlpKW\",type:\"Identifier\"}],select:[{collection:\"R_39g8bLo\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"R_39g8bLo\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"R_39g8bLo\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"MMdffsQ3w\"},type:\"BinaryOperation\"}}}},baseVariant,gestureVariant),children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({GSEMEwnpz:GSEMEwnpzR_39g8bLo,id:idR_39g8bLo,SNzXc9qW1:SNzXc9qW1R_39g8bLo,uulcserP6:uulcserP6R_39g8bLo,vaSY19i4P:vaSY19i4PR_39g8bLo},index)=>{uulcserP6R_39g8bLo??=\"\";vaSY19i4PR_39g8bLo??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`R_39g8bLo-${idR_39g8bLo}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6R_39g8bLo},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1px6naq\",layoutDependency:layoutDependency,layoutId:\"cbBu9fRWs\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6R_39g8bLo},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6R_39g8bLo},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6R_39g8bLo},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6R_39g8bLo},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,...addPropertyOverrides({fYXQksv2e:{width:`max(${componentViewport?.width||\"100vw\"}, 200px)`},s_m2Rjon1:{width:`max((${componentViewport?.width||\"100vw\"} - 25px) / 2, 200px)`},z9FLf1sT6:{width:`max((${componentViewport?.width||\"100vw\"} - 25px) / 2, 200px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ts880r-container\",layoutDependency:layoutDependency,layoutId:\"KGS2c2nO9-container\",nodeId:\"KGS2c2nO9\",rendersWithMotion:true,scopeId:\"cvBLDx_ff\",style:{transformPerspective:1200},variants:{fYXQksv2e:{transformPerspective:undefined},s_m2Rjon1:{transformPerspective:undefined},z9FLf1sT6:{transformPerspective:undefined}},...addPropertyOverrides({fYXQksv2e:{__framer__styleAppearEffectEnabled:undefined},s_m2Rjon1:{__framer__styleAppearEffectEnabled:undefined},z9FLf1sT6:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(CardBrand,{FGBLuU585:resolvedLinks[0],G6l67NRzN:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1R_39g8bLo,activeLocale),height:\"100%\",id:\"KGS2c2nO9\",layoutId:\"KGS2c2nO9\",LRL_mvDaJ:vaSY19i4PR_39g8bLo,style:{width:\"100%\"},variant:\"Jhx9P6akf\",width:\"100%\",xuMNzM7cK:toResponsiveImage(GSEMEwnpzR_39g8bLo),...addPropertyOverrides({fYXQksv2e:{FGBLuU585:resolvedLinks[2]},s_m2Rjon1:{FGBLuU585:resolvedLinks[3]},z9FLf1sT6:{FGBLuU585:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})})})},idR_39g8bLo);})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-p7dfm0\",\"data-framer-name\":\"Alles Anzeigen Mobile\",layoutDependency:layoutDependency,layoutId:\"wSxDqQLHf\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIENvbXBhY3QgRGlzcGxheSBTZW1pYm9sZA==\",\"--framer-font-family\":'\"SF Compact Display Semibold\", \"SF Compact Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"wmRRAI_lc\",openInNewTab:false,scopeId:\"cvBLDx_ff\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Mehr anzeigen\"})})})}),className:\"framer-1mv0p9f\",fonts:[\"CUSTOM;SF Compact Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"wmRRAI_lc\",style:{\"--extracted-r6o4lv\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-seI7r.framer-1ivgvpe, .framer-seI7r .framer-1ivgvpe { display: block; }\",\".framer-seI7r.framer-azdxsp { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1140px; }\",\".framer-seI7r .framer-1j1drn9 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-seI7r .framer-1v2thj0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-seI7r .framer-166ldtq-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-seI7r .framer-5t8p5e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-seI7r .framer-3l722y, .framer-seI7r .framer-1mv0p9f { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-seI7r .framer-xk894e { display: grid; flex: none; gap: 25px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: start; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-seI7r .framer-1px6naq { align-self: start; display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: auto; justify-content: center; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-seI7r .framer-ts880r-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 1fr; }\",\".framer-seI7r .framer-p7dfm0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 35px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-seI7r.framer-azdxsp, .framer-seI7r .framer-1j1drn9, .framer-seI7r .framer-1v2thj0, .framer-seI7r .framer-5t8p5e, .framer-seI7r .framer-p7dfm0 { gap: 0px; } .framer-seI7r.framer-azdxsp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-seI7r.framer-azdxsp > :first-child { margin-top: 0px; } .framer-seI7r.framer-azdxsp > :last-child { margin-bottom: 0px; } .framer-seI7r .framer-1j1drn9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-seI7r .framer-1j1drn9 > :first-child, .framer-seI7r .framer-1v2thj0 > :first-child, .framer-seI7r .framer-5t8p5e > :first-child, .framer-seI7r .framer-p7dfm0 > :first-child { margin-left: 0px; } .framer-seI7r .framer-1j1drn9 > :last-child, .framer-seI7r .framer-1v2thj0 > :last-child, .framer-seI7r .framer-5t8p5e > :last-child, .framer-seI7r .framer-p7dfm0 > :last-child { margin-right: 0px; } .framer-seI7r .framer-1v2thj0 > *, .framer-seI7r .framer-5t8p5e > *, .framer-seI7r .framer-p7dfm0 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-seI7r.framer-v-xionqd.framer-azdxsp { cursor: unset; gap: 25px; overflow: visible; }\",\".framer-seI7r.framer-v-xionqd .framer-1j1drn9 { position: sticky; top: 68px; z-index: 1; }\",\".framer-seI7r.framer-v-xionqd .framer-3l722y { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-seI7r.framer-v-xionqd.framer-azdxsp { gap: 0px; } .framer-seI7r.framer-v-xionqd.framer-azdxsp > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-seI7r.framer-v-xionqd.framer-azdxsp > :first-child { margin-top: 0px; } .framer-seI7r.framer-v-xionqd.framer-azdxsp > :last-child { margin-bottom: 0px; } }\",\".framer-seI7r.framer-v-13t0r0a.framer-azdxsp { width: 380px; }\",\".framer-seI7r.framer-v-13t0r0a .framer-1v2thj0, .framer-seI7r.framer-v-1otvufc .framer-1v2thj0 { padding: 15px 0px 15px 0px; }\",\".framer-seI7r.framer-v-1otvufc.framer-azdxsp { align-content: flex-end; align-items: flex-end; cursor: unset; gap: 0px; overflow: visible; width: 380px; }\",\".framer-seI7r.framer-v-1otvufc .framer-1j1drn9 { position: sticky; top: 69px; z-index: 1; }\",\".framer-seI7r.framer-v-1otvufc .framer-xk894e { gap: 0px; grid-template-columns: repeat(1, minmax(200px, 1fr)); }\",\".framer-seI7r.framer-v-1otvufc .framer-1px6naq { gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-seI7r.framer-v-1otvufc.framer-azdxsp, .framer-seI7r.framer-v-1otvufc .framer-xk894e, .framer-seI7r.framer-v-1otvufc .framer-1px6naq { gap: 0px; } .framer-seI7r.framer-v-1otvufc.framer-azdxsp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-seI7r.framer-v-1otvufc.framer-azdxsp > :first-child { margin-top: 0px; } .framer-seI7r.framer-v-1otvufc.framer-azdxsp > :last-child { margin-bottom: 0px; } .framer-seI7r.framer-v-1otvufc .framer-xk894e > *, .framer-seI7r.framer-v-1otvufc .framer-xk894e > :first-child, .framer-seI7r.framer-v-1otvufc .framer-xk894e > :last-child, .framer-seI7r.framer-v-1otvufc .framer-1px6naq > *, .framer-seI7r.framer-v-1otvufc .framer-1px6naq > :first-child, .framer-seI7r.framer-v-1otvufc .framer-1px6naq > :last-child { margin: 0px; } }\",\".framer-seI7r.framer-v-29wvu6.framer-azdxsp { cursor: unset; gap: 25px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-seI7r.framer-v-29wvu6.framer-azdxsp { gap: 0px; } .framer-seI7r.framer-v-29wvu6.framer-azdxsp > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-seI7r.framer-v-29wvu6.framer-azdxsp > :first-child { margin-top: 0px; } .framer-seI7r.framer-v-29wvu6.framer-azdxsp > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-seI7r[data-border=\"true\"]::after, .framer-seI7r [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 140\n * @framerIntrinsicWidth 1140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"z9FLf1sT6\":{\"layout\":[\"fixed\",\"auto\"]},\"igE7n9VMw\":{\"layout\":[\"fixed\",\"auto\"]},\"fYXQksv2e\":{\"layout\":[\"fixed\",\"auto\"]},\"IgI0U1RqS\":{\"layout\":[\"fixed\",\"auto\"]},\"s_m2Rjon1\":{\"layout\":[\"fixed\",\"auto\"]},\"gfBDPv0TQ\":{\"layout\":[\"fixed\",\"auto\"]},\"X1pgjnDAR\":{\"layout\":[\"fixed\",\"auto\"]},\"V6agZ8ENJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"KT211s3sR\":\"text\",\"wNjwE3uYr\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramercvBLDx_ff=withCSS(Component,css,\"framer-seI7r\");export default FramercvBLDx_ff;FramercvBLDx_ff.displayName=\"Brand Row MR PORTER\";FramercvBLDx_ff.defaultProps={height:140,width:1140};addPropertyControls(FramercvBLDx_ff,{variant:{options:[\"fuCZBUM7b\",\"z9FLf1sT6\",\"igE7n9VMw\",\"fYXQksv2e\",\"IgI0U1RqS\",\"s_m2Rjon1\"],optionTitles:[\"Desktop\",\"Desktop Open\",\"Mobile\",\"Mobile Open\",\"Tablet\",\"Tablet Open\"],title:\"Variant\",type:ControlType.Enum},KT211s3sR:{defaultValue:\"BRAND\",displayTextArea:true,title:\"Text\",type:ControlType.String},wNjwE3uYr:{title:\"Link\",type:ControlType.Link}});addFonts(FramercvBLDx_ff,[{explicitInter:true,fonts:[{family:\"Helvetica Neue Condensed Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/m51RfBUZWFtucHm4D3e07GJwU.otf\"},{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:\"SF Compact Display Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZPX5QyU8gHyYADt5u1je3kqbnvc.otf\"}]},...MagTextFonts,...CardBrandFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercvBLDx_ff\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1140\",\"framerIntrinsicHeight\":\"140\",\"framerVariables\":\"{\\\"KT211s3sR\\\":\\\"text\\\",\\\"wNjwE3uYr\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z9FLf1sT6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"igE7n9VMw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fYXQksv2e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IgI0U1RqS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s_m2Rjon1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gfBDPv0TQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"X1pgjnDAR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V6agZ8ENJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import MagText from\"https://framerusercontent.com/modules/W5DPKEeQuqeSZmy9NBRc/J9eQVqcHHoC6JaHQquqb/Text_5.js\";import Articles,{enumToDisplayNameFunctions}from\"https://framerusercontent.com/modules/cvfF8Zfj3hk6PrJQYRM6/hcrITb9eKaCb892HmIEb/kFZ9bhFxc.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/cRK5N7PJ8cPiFyqYycEE/Hfinp4bR4n8MTWZm4jKe/FP95AICZ2.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/bCssN5wDLh0uJEdVFXoJ/2sknmVSnALlUM88mcD4i/h17XaN2js.js\";import CardBrand from\"https://framerusercontent.com/modules/0CUZsI5ihdpjttz9nftx/yFSKdTwgSitriAQKzoAi/rWlPZbm7N.js\";const MagTextFonts=getFonts(MagText);const CardBrandFonts=getFonts(CardBrand);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const enabledGestures={CQILsx738:{hover:true},SJvigtEXx:{hover:true},TwiL4vyZq:{hover:true}};const cycleOrder=[\"CQILsx738\",\"oLawUqYjx\",\"SJvigtEXx\",\"l1j2rnicH\",\"TwiL4vyZq\",\"rC7VPZ3wS\"];const serializationHash=\"framer-aKYZ7\";const variantClassNames={CQILsx738:\"framer-v-1sgwf57\",l1j2rnicH:\"framer-v-1lph4io\",oLawUqYjx:\"framer-v-1vd6rid\",rC7VPZ3wS:\"framer-v-u2bw7c\",SJvigtEXx:\"framer-v-17bisxo\",TwiL4vyZq:\"framer-v-780o0y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:150};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"tgEFeSGz8\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"tgEFeSGz8\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"tgEFeSGz8\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"tgEFeSGz8\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"yjTLUhgD7\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query1=prequery=>prequery({from:{alias:\"tgEFeSGz8\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"tgEFeSGz8\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"tgEFeSGz8\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"DDizFwq_6\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"tgEFeSGz8\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"tgEFeSGz8\",name:\"U_fqU98P9\",type:\"Identifier\"},type:\"BinaryOperation\"}});const query2=prequery=>prequery({from:{alias:\"tgEFeSGz8\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"tgEFeSGz8\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"tgEFeSGz8\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"DDizFwq_6\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Open\":\"oLawUqYjx\",\"Mobile Open\":\"l1j2rnicH\",\"Tablet Open\":\"rC7VPZ3wS\",Desktop:\"CQILsx738\",Mobile:\"SJvigtEXx\",Tablet:\"TwiL4vyZq\"};const getProps=({height,id,link,text,width,...props})=>{return{...props,KT211s3sR:text??props.KT211s3sR??\"BRAND\",variant:humanReadableVariantMap[props.variant]??props.variant??\"CQILsx738\",wNjwE3uYr:link??props.wNjwE3uYr};};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,KT211s3sR,wNjwE3uYr,uulcserP6tgEFeSGz8,GSEMEwnpztgEFeSGz8,SNzXc9qW1tgEFeSGz8,vaSY19i4PtgEFeSGz8,idtgEFeSGz8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CQILsx738\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1gxffj8=activeVariantCallback(async(...args)=>{setVariant(\"oLawUqYjx\");});const onTap1dhcu62=activeVariantCallback(async(...args)=>{setVariant(\"CQILsx738\");});const onTapfa4a2m=activeVariantCallback(async(...args)=>{setVariant(\"l1j2rnicH\");});const onTapcg31bh=activeVariantCallback(async(...args)=>{setVariant(\"SJvigtEXx\");});const onTap6kwt4b=activeVariantCallback(async(...args)=>{setVariant(\"rC7VPZ3wS\");});const onTaph8yegm=activeVariantCallback(async(...args)=>{setVariant(\"TwiL4vyZq\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"oLawUqYjx\",\"rC7VPZ3wS\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"oLawUqYjx\",\"l1j2rnicH\",\"rC7VPZ3wS\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"l1j2rnicH\")return true;return false;};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-1sgwf57\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"CQILsx738\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({\"CQILsx738-hover\":{\"data-framer-name\":undefined},\"SJvigtEXx-hover\":{\"data-framer-name\":undefined},\"TwiL4vyZq-hover\":{\"data-framer-name\":undefined},l1j2rnicH:{\"data-framer-name\":\"Mobile Open\"},oLawUqYjx:{\"data-framer-name\":\"Desktop Open\"},rC7VPZ3wS:{\"data-framer-name\":\"Tablet Open\"},SJvigtEXx:{\"data-framer-name\":\"Mobile\"},TwiL4vyZq:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qcvqtd\",\"data-border\":true,\"data-framer-name\":\"Brand Line\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"klf1PEz1_\",onTap:onTap1gxffj8,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\"},variants:{l1j2rnicH:{\"--border-bottom-width\":\"1px\"},oLawUqYjx:{\"--border-bottom-width\":\"1px\"},rC7VPZ3wS:{\"--border-bottom-width\":\"1px\"}},...addPropertyOverrides({l1j2rnicH:{onTap:onTapcg31bh},oLawUqYjx:{onTap:onTap1dhcu62},rC7VPZ3wS:{onTap:onTaph8yegm},SJvigtEXx:{onTap:onTapfa4a2m},TwiL4vyZq:{onTap:onTap6kwt4b}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-152lyo5\",\"data-framer-name\":\"Strokes Headline Copy\",layoutDependency:layoutDependency,layoutId:\"g2kfkGOff\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{\"CQILsx738-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},l1j2rnicH:{backgroundColor:\"rgba(0, 0, 0, 0)\"},rC7VPZ3wS:{backgroundColor:\"rgba(0, 0, 0, 0)\"},SJvigtEXx:{backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\"},TwiL4vyZq:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fbi5gn-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"vw8Vq68qf-container\",nodeId:\"vw8Vq68qf\",rendersWithMotion:true,scopeId:\"iw_bSNG5Z\",children:/*#__PURE__*/_jsx(MagText,{color:\"rgba(51, 51, 51, 0)\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"100px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"vw8Vq68qf\",layoutId:\"vw8Vq68qf\",outlineColor:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",outlineWidth:1,style:{width:\"100%\"},text:KT211s3sR,width:\"100%\",...addPropertyOverrides({\"CQILsx738-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},\"SJvigtEXx-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},\"TwiL4vyZq-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},l1j2rnicH:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"72px\",letterSpacing:\"0em\",lineHeight:\"1em\"}},oLawUqYjx:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},rC7VPZ3wS:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\"}},SJvigtEXx:{font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"72px\",letterSpacing:\"0em\",lineHeight:\"1em\"}},TwiL4vyZq:{font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jcorv1\",\"data-framer-name\":\"Alles Anzeigen Desktop\",layoutDependency:layoutDependency,layoutId:\"Ej4MhdMfP\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1htihd5\",\"data-styles-preset\":\"h17XaN2js\",children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"CpaMaS40n\",openInNewTab:false,scopeId:\"iw_bSNG5Z\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Mehr anzeigen\"})})})}),className:\"framer-si2by8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CpaMaS40n\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-13lubg8\",\"data-border\":true,\"data-framer-name\":\"Collection\",layoutDependency:layoutDependency,layoutId:\"tgEFeSGz8\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{oLawUqYjx:{\"--border-bottom-width\":\"0px\"},rC7VPZ3wS:{\"--border-bottom-width\":\"0px\"}},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"tgEFeSGz8\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"tgEFeSGz8\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"tgEFeSGz8\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"tgEFeSGz8\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"yjTLUhgD7\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},...addPropertyOverrides({l1j2rnicH:{query:{from:{alias:\"tgEFeSGz8\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"tgEFeSGz8\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"tgEFeSGz8\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"DDizFwq_6\"},type:\"BinaryOperation\"}}},oLawUqYjx:{query:{from:{alias:\"tgEFeSGz8\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"tgEFeSGz8\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"tgEFeSGz8\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"DDizFwq_6\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"tgEFeSGz8\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"tgEFeSGz8\",name:\"U_fqU98P9\",type:\"Identifier\"},type:\"BinaryOperation\"}}},rC7VPZ3wS:{query:{from:{alias:\"tgEFeSGz8\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"tgEFeSGz8\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"tgEFeSGz8\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"tgEFeSGz8\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"DDizFwq_6\"},type:\"BinaryOperation\"}}}},baseVariant,gestureVariant),children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({GSEMEwnpz:GSEMEwnpztgEFeSGz8,id:idtgEFeSGz8,SNzXc9qW1:SNzXc9qW1tgEFeSGz8,uulcserP6:uulcserP6tgEFeSGz8,vaSY19i4P:vaSY19i4PtgEFeSGz8},index)=>{uulcserP6tgEFeSGz8??=\"\";vaSY19i4PtgEFeSGz8??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`tgEFeSGz8-${idtgEFeSGz8}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6tgEFeSGz8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-174j84k\",layoutDependency:layoutDependency,layoutId:\"zAM6pWIeu\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6tgEFeSGz8},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6tgEFeSGz8},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6tgEFeSGz8},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6tgEFeSGz8},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,...addPropertyOverrides({l1j2rnicH:{width:`max(${componentViewport?.width||\"100vw\"}, 200px)`},oLawUqYjx:{width:`max((${componentViewport?.width||\"100vw\"} - 25px) / 2, 200px)`},rC7VPZ3wS:{width:`max((${componentViewport?.width||\"100vw\"} - 25px) / 2, 200px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1s248ym-container\",layoutDependency:layoutDependency,layoutId:\"Rb_sODbwi-container\",nodeId:\"Rb_sODbwi\",rendersWithMotion:true,scopeId:\"iw_bSNG5Z\",style:{transformPerspective:1200},variants:{l1j2rnicH:{transformPerspective:undefined},oLawUqYjx:{transformPerspective:undefined},rC7VPZ3wS:{transformPerspective:undefined}},...addPropertyOverrides({l1j2rnicH:{__framer__styleAppearEffectEnabled:undefined},oLawUqYjx:{__framer__styleAppearEffectEnabled:undefined},rC7VPZ3wS:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(CardBrand,{FGBLuU585:resolvedLinks[0],G6l67NRzN:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1tgEFeSGz8,activeLocale),height:\"100%\",id:\"Rb_sODbwi\",layoutId:\"Rb_sODbwi\",LRL_mvDaJ:vaSY19i4PtgEFeSGz8,style:{width:\"100%\"},variant:\"Jhx9P6akf\",width:\"100%\",xuMNzM7cK:toResponsiveImage(GSEMEwnpztgEFeSGz8),...addPropertyOverrides({l1j2rnicH:{FGBLuU585:resolvedLinks[2]},oLawUqYjx:{FGBLuU585:resolvedLinks[1]},rC7VPZ3wS:{FGBLuU585:resolvedLinks[3]}},baseVariant,gestureVariant)})})})})})})},idtgEFeSGz8);})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-c61sun\",\"data-framer-name\":\"Alles Anzeigen Mobile\",layoutDependency:layoutDependency,layoutId:\"vKGLmJerv\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIENvbXBhY3QgRGlzcGxheSBTZW1pYm9sZA==\",\"--framer-font-family\":'\"SF Compact Display Semibold\", \"SF Compact Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"VvnwyZV0u\",openInNewTab:false,scopeId:\"iw_bSNG5Z\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Mehr anzeigen\"})})})}),className:\"framer-pf9krk\",fonts:[\"CUSTOM;SF Compact Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"VvnwyZV0u\",style:{\"--extracted-r6o4lv\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aKYZ7.framer-1ib9sxr, .framer-aKYZ7 .framer-1ib9sxr { display: block; }\",\".framer-aKYZ7.framer-1sgwf57 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1140px; }\",\".framer-aKYZ7 .framer-qcvqtd { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aKYZ7 .framer-152lyo5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-aKYZ7 .framer-1fbi5gn-container { cursor: pointer; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-aKYZ7 .framer-jcorv1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-aKYZ7 .framer-si2by8, .framer-aKYZ7 .framer-pf9krk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-aKYZ7 .framer-13lubg8 { display: grid; flex: none; gap: 25px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: start; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-aKYZ7 .framer-174j84k { align-self: start; display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: auto; justify-content: center; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-aKYZ7 .framer-1s248ym-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 1fr; }\",\".framer-aKYZ7 .framer-c61sun { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 35px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aKYZ7.framer-1sgwf57, .framer-aKYZ7 .framer-qcvqtd, .framer-aKYZ7 .framer-152lyo5, .framer-aKYZ7 .framer-jcorv1, .framer-aKYZ7 .framer-c61sun { gap: 0px; } .framer-aKYZ7.framer-1sgwf57 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-aKYZ7.framer-1sgwf57 > :first-child { margin-top: 0px; } .framer-aKYZ7.framer-1sgwf57 > :last-child { margin-bottom: 0px; } .framer-aKYZ7 .framer-qcvqtd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-aKYZ7 .framer-qcvqtd > :first-child, .framer-aKYZ7 .framer-152lyo5 > :first-child, .framer-aKYZ7 .framer-jcorv1 > :first-child, .framer-aKYZ7 .framer-c61sun > :first-child { margin-left: 0px; } .framer-aKYZ7 .framer-qcvqtd > :last-child, .framer-aKYZ7 .framer-152lyo5 > :last-child, .framer-aKYZ7 .framer-jcorv1 > :last-child, .framer-aKYZ7 .framer-c61sun > :last-child { margin-right: 0px; } .framer-aKYZ7 .framer-152lyo5 > *, .framer-aKYZ7 .framer-jcorv1 > *, .framer-aKYZ7 .framer-c61sun > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-aKYZ7.framer-v-1vd6rid.framer-1sgwf57 { cursor: unset; gap: 25px; overflow: visible; }\",\".framer-aKYZ7.framer-v-1vd6rid .framer-qcvqtd { position: sticky; top: 68px; z-index: 1; }\",\".framer-aKYZ7.framer-v-1vd6rid .framer-si2by8 { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aKYZ7.framer-v-1vd6rid.framer-1sgwf57 { gap: 0px; } .framer-aKYZ7.framer-v-1vd6rid.framer-1sgwf57 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-aKYZ7.framer-v-1vd6rid.framer-1sgwf57 > :first-child { margin-top: 0px; } .framer-aKYZ7.framer-v-1vd6rid.framer-1sgwf57 > :last-child { margin-bottom: 0px; } }\",\".framer-aKYZ7.framer-v-17bisxo.framer-1sgwf57 { width: 380px; }\",\".framer-aKYZ7.framer-v-17bisxo .framer-152lyo5, .framer-aKYZ7.framer-v-1lph4io .framer-152lyo5 { padding: 15px 0px 15px 0px; }\",\".framer-aKYZ7.framer-v-1lph4io.framer-1sgwf57 { align-content: flex-end; align-items: flex-end; cursor: unset; gap: 0px; overflow: visible; width: 380px; }\",\".framer-aKYZ7.framer-v-1lph4io .framer-qcvqtd { position: sticky; top: 69px; z-index: 1; }\",\".framer-aKYZ7.framer-v-1lph4io .framer-13lubg8 { gap: 0px; grid-template-columns: repeat(1, minmax(200px, 1fr)); }\",\".framer-aKYZ7.framer-v-1lph4io .framer-174j84k { gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aKYZ7.framer-v-1lph4io.framer-1sgwf57, .framer-aKYZ7.framer-v-1lph4io .framer-13lubg8, .framer-aKYZ7.framer-v-1lph4io .framer-174j84k { gap: 0px; } .framer-aKYZ7.framer-v-1lph4io.framer-1sgwf57 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-aKYZ7.framer-v-1lph4io.framer-1sgwf57 > :first-child { margin-top: 0px; } .framer-aKYZ7.framer-v-1lph4io.framer-1sgwf57 > :last-child { margin-bottom: 0px; } .framer-aKYZ7.framer-v-1lph4io .framer-13lubg8 > *, .framer-aKYZ7.framer-v-1lph4io .framer-13lubg8 > :first-child, .framer-aKYZ7.framer-v-1lph4io .framer-13lubg8 > :last-child, .framer-aKYZ7.framer-v-1lph4io .framer-174j84k > *, .framer-aKYZ7.framer-v-1lph4io .framer-174j84k > :first-child, .framer-aKYZ7.framer-v-1lph4io .framer-174j84k > :last-child { margin: 0px; } }\",\".framer-aKYZ7.framer-v-u2bw7c.framer-1sgwf57 { cursor: unset; gap: 25px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aKYZ7.framer-v-u2bw7c.framer-1sgwf57 { gap: 0px; } .framer-aKYZ7.framer-v-u2bw7c.framer-1sgwf57 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-aKYZ7.framer-v-u2bw7c.framer-1sgwf57 > :first-child { margin-top: 0px; } .framer-aKYZ7.framer-v-u2bw7c.framer-1sgwf57 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-aKYZ7[data-border=\"true\"]::after, .framer-aKYZ7 [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 140\n * @framerIntrinsicWidth 1140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"oLawUqYjx\":{\"layout\":[\"fixed\",\"auto\"]},\"SJvigtEXx\":{\"layout\":[\"fixed\",\"auto\"]},\"l1j2rnicH\":{\"layout\":[\"fixed\",\"auto\"]},\"TwiL4vyZq\":{\"layout\":[\"fixed\",\"auto\"]},\"rC7VPZ3wS\":{\"layout\":[\"fixed\",\"auto\"]},\"PcBBdo0LY\":{\"layout\":[\"fixed\",\"auto\"]},\"EfikHl9wS\":{\"layout\":[\"fixed\",\"auto\"]},\"fxBvUC1IG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"KT211s3sR\":\"text\",\"wNjwE3uYr\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Frameriw_bSNG5Z=withCSS(Component,css,\"framer-aKYZ7\");export default Frameriw_bSNG5Z;Frameriw_bSNG5Z.displayName=\"Brand Row Orblebar Brown\";Frameriw_bSNG5Z.defaultProps={height:140,width:1140};addPropertyControls(Frameriw_bSNG5Z,{variant:{options:[\"CQILsx738\",\"oLawUqYjx\",\"SJvigtEXx\",\"l1j2rnicH\",\"TwiL4vyZq\",\"rC7VPZ3wS\"],optionTitles:[\"Desktop\",\"Desktop Open\",\"Mobile\",\"Mobile Open\",\"Tablet\",\"Tablet Open\"],title:\"Variant\",type:ControlType.Enum},KT211s3sR:{defaultValue:\"BRAND\",displayTextArea:true,title:\"Text\",type:ControlType.String},wNjwE3uYr:{title:\"Link\",type:ControlType.Link}});addFonts(Frameriw_bSNG5Z,[{explicitInter:true,fonts:[{family:\"Helvetica Neue Condensed Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/m51RfBUZWFtucHm4D3e07GJwU.otf\"},{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:\"SF Compact Display Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZPX5QyU8gHyYADt5u1je3kqbnvc.otf\"}]},...MagTextFonts,...CardBrandFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameriw_bSNG5Z\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"140\",\"framerVariables\":\"{\\\"KT211s3sR\\\":\\\"text\\\",\\\"wNjwE3uYr\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oLawUqYjx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SJvigtEXx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l1j2rnicH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TwiL4vyZq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rC7VPZ3wS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PcBBdo0LY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EfikHl9wS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fxBvUC1IG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1140\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import MagText from\"https://framerusercontent.com/modules/W5DPKEeQuqeSZmy9NBRc/J9eQVqcHHoC6JaHQquqb/Text_5.js\";import Articles,{enumToDisplayNameFunctions}from\"https://framerusercontent.com/modules/cvfF8Zfj3hk6PrJQYRM6/hcrITb9eKaCb892HmIEb/kFZ9bhFxc.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/cRK5N7PJ8cPiFyqYycEE/Hfinp4bR4n8MTWZm4jKe/FP95AICZ2.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/bCssN5wDLh0uJEdVFXoJ/2sknmVSnALlUM88mcD4i/h17XaN2js.js\";import CardBrand from\"https://framerusercontent.com/modules/0CUZsI5ihdpjttz9nftx/yFSKdTwgSitriAQKzoAi/rWlPZbm7N.js\";const MagTextFonts=getFonts(MagText);const CardBrandFonts=getFonts(CardBrand);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const enabledGestures={ICWAgMWGZ:{hover:true},mJnZC9SNl:{hover:true},QdQhEnwoU:{hover:true}};const cycleOrder=[\"ICWAgMWGZ\",\"xDOhmD3ex\",\"mJnZC9SNl\",\"aC6CVrtIz\",\"QdQhEnwoU\",\"R8naqmMd8\"];const serializationHash=\"framer-mCQWT\";const variantClassNames={aC6CVrtIz:\"framer-v-1jliyy9\",ICWAgMWGZ:\"framer-v-1f3aa6a\",mJnZC9SNl:\"framer-v-z1yv5x\",QdQhEnwoU:\"framer-v-16254jx\",R8naqmMd8:\"framer-v-o3vr1g\",xDOhmD3ex:\"framer-v-1sjoaox\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:150};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"LsF32zyF5\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"LsF32zyF5\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"LsF32zyF5\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"LsF32zyF5\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"XSzUaxozn\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query1=prequery=>prequery({from:{alias:\"LsF32zyF5\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"LsF32zyF5\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"LsF32zyF5\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"XSzUaxozn\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"LsF32zyF5\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"LsF32zyF5\",name:\"U_fqU98P9\",type:\"Identifier\"},type:\"BinaryOperation\"}});const query2=prequery=>prequery({from:{alias:\"LsF32zyF5\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"LsF32zyF5\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"LsF32zyF5\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"XSzUaxozn\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Open\":\"xDOhmD3ex\",\"Mobile Open\":\"aC6CVrtIz\",\"Tablet Open\":\"R8naqmMd8\",Desktop:\"ICWAgMWGZ\",Mobile:\"mJnZC9SNl\",Tablet:\"QdQhEnwoU\"};const getProps=({height,id,link,text,width,...props})=>{return{...props,KT211s3sR:text??props.KT211s3sR??\"BRAND\",variant:humanReadableVariantMap[props.variant]??props.variant??\"ICWAgMWGZ\",wNjwE3uYr:link??props.wNjwE3uYr};};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,KT211s3sR,wNjwE3uYr,uulcserP6LsF32zyF5,GSEMEwnpzLsF32zyF5,SNzXc9qW1LsF32zyF5,vaSY19i4PLsF32zyF5,idLsF32zyF5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ICWAgMWGZ\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapitb3lv=activeVariantCallback(async(...args)=>{setVariant(\"xDOhmD3ex\");});const onTap95qifx=activeVariantCallback(async(...args)=>{setVariant(\"ICWAgMWGZ\");});const onTap1krw6wr=activeVariantCallback(async(...args)=>{setVariant(\"aC6CVrtIz\");});const onTap1lmtvmu=activeVariantCallback(async(...args)=>{setVariant(\"mJnZC9SNl\");});const onTap1pj7ktx=activeVariantCallback(async(...args)=>{setVariant(\"R8naqmMd8\");});const onTap18s9f9d=activeVariantCallback(async(...args)=>{setVariant(\"QdQhEnwoU\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"xDOhmD3ex\",\"R8naqmMd8\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"xDOhmD3ex\",\"aC6CVrtIz\",\"R8naqmMd8\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"aC6CVrtIz\")return true;return false;};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-1f3aa6a\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ICWAgMWGZ\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\",...style},variants:{xDOhmD3ex:{\"--border-top-width\":\"1px\"}},...addPropertyOverrides({\"ICWAgMWGZ-hover\":{\"data-framer-name\":undefined},\"mJnZC9SNl-hover\":{\"data-framer-name\":undefined},\"QdQhEnwoU-hover\":{\"data-framer-name\":undefined},aC6CVrtIz:{\"data-framer-name\":\"Mobile Open\"},mJnZC9SNl:{\"data-framer-name\":\"Mobile\"},QdQhEnwoU:{\"data-framer-name\":\"Tablet\"},R8naqmMd8:{\"data-framer-name\":\"Tablet Open\"},xDOhmD3ex:{\"data-framer-name\":\"Desktop Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qj28a2\",\"data-framer-name\":\"Brand Line\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"DdpJyyFYD\",onTap:onTapitb3lv,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\"},variants:{\"ICWAgMWGZ-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},aC6CVrtIz:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},mJnZC9SNl:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},QdQhEnwoU:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},R8naqmMd8:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},xDOhmD3ex:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({aC6CVrtIz:{\"data-border\":true,onTap:onTap1lmtvmu},mJnZC9SNl:{onTap:onTap1krw6wr},QdQhEnwoU:{onTap:onTap1pj7ktx},R8naqmMd8:{\"data-border\":true,onTap:onTap18s9f9d},xDOhmD3ex:{\"data-border\":true,onTap:onTap95qifx}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8k82s8\",\"data-framer-name\":\"Strokes Headline Copy\",layoutDependency:layoutDependency,layoutId:\"biZ0fE_aU\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gtnqby-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"U2SkYO14n-container\",nodeId:\"U2SkYO14n\",rendersWithMotion:true,scopeId:\"JuyYeEj5K\",children:/*#__PURE__*/_jsx(MagText,{color:\"rgba(209, 209, 209, 0)\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"100px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"},height:\"100%\",id:\"U2SkYO14n\",layoutId:\"U2SkYO14n\",outlineColor:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",outlineWidth:1,style:{width:\"100%\"},text:KT211s3sR,width:\"100%\",...addPropertyOverrides({\"ICWAgMWGZ-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},\"mJnZC9SNl-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},\"QdQhEnwoU-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},aC6CVrtIz:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"74px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},mJnZC9SNl:{font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"74px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},QdQhEnwoU:{font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},R8naqmMd8:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},xDOhmD3ex:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mz30mp\",\"data-framer-name\":\"Alles Anzeigen Desktop\",layoutDependency:layoutDependency,layoutId:\"XZks31o3c\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1htihd5\",\"data-styles-preset\":\"h17XaN2js\",children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"tZRuk3FW8\",openInNewTab:false,scopeId:\"JuyYeEj5K\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Mehr anzeigen\"})})})}),className:\"framer-1820e7o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tZRuk3FW8\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dw5yfh\",\"data-border\":true,\"data-framer-name\":\"Collection\",layoutDependency:layoutDependency,layoutId:\"LsF32zyF5\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{R8naqmMd8:{\"--border-bottom-width\":\"0px\"},xDOhmD3ex:{\"--border-bottom-width\":\"0px\"}},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LsF32zyF5\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"LsF32zyF5\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"LsF32zyF5\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"LsF32zyF5\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"XSzUaxozn\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},...addPropertyOverrides({aC6CVrtIz:{query:{from:{alias:\"LsF32zyF5\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"LsF32zyF5\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"LsF32zyF5\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"XSzUaxozn\"},type:\"BinaryOperation\"}}},R8naqmMd8:{query:{from:{alias:\"LsF32zyF5\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"LsF32zyF5\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"LsF32zyF5\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"XSzUaxozn\"},type:\"BinaryOperation\"}}},xDOhmD3ex:{query:{from:{alias:\"LsF32zyF5\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"LsF32zyF5\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"LsF32zyF5\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"LsF32zyF5\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"XSzUaxozn\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"LsF32zyF5\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"LsF32zyF5\",name:\"U_fqU98P9\",type:\"Identifier\"},type:\"BinaryOperation\"}}}},baseVariant,gestureVariant),children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({GSEMEwnpz:GSEMEwnpzLsF32zyF5,id:idLsF32zyF5,SNzXc9qW1:SNzXc9qW1LsF32zyF5,uulcserP6:uulcserP6LsF32zyF5,vaSY19i4P:vaSY19i4PLsF32zyF5},index)=>{uulcserP6LsF32zyF5??=\"\";vaSY19i4PLsF32zyF5??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`LsF32zyF5-${idLsF32zyF5}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6LsF32zyF5},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7cq6h5\",layoutDependency:layoutDependency,layoutId:\"GqQAEiTyX\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6LsF32zyF5},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6LsF32zyF5},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6LsF32zyF5},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6LsF32zyF5},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,...addPropertyOverrides({aC6CVrtIz:{width:`max(${componentViewport?.width||\"100vw\"}, 200px)`},R8naqmMd8:{width:`max((${componentViewport?.width||\"100vw\"} - 25px) / 2, 200px)`},xDOhmD3ex:{width:`max((${componentViewport?.width||\"100vw\"} - 25px) / 2, 200px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-pi5ewb-container\",layoutDependency:layoutDependency,layoutId:\"SatQgRyDC-container\",nodeId:\"SatQgRyDC\",rendersWithMotion:true,scopeId:\"JuyYeEj5K\",style:{transformPerspective:1200},variants:{aC6CVrtIz:{transformPerspective:undefined},R8naqmMd8:{transformPerspective:undefined},xDOhmD3ex:{transformPerspective:undefined}},...addPropertyOverrides({aC6CVrtIz:{__framer__styleAppearEffectEnabled:undefined},R8naqmMd8:{__framer__styleAppearEffectEnabled:undefined},xDOhmD3ex:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(CardBrand,{FGBLuU585:resolvedLinks[0],G6l67NRzN:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1LsF32zyF5,activeLocale),height:\"100%\",id:\"SatQgRyDC\",layoutId:\"SatQgRyDC\",LRL_mvDaJ:vaSY19i4PLsF32zyF5,style:{width:\"100%\"},variant:\"Jhx9P6akf\",width:\"100%\",xuMNzM7cK:toResponsiveImage(GSEMEwnpzLsF32zyF5),...addPropertyOverrides({aC6CVrtIz:{FGBLuU585:resolvedLinks[2]},R8naqmMd8:{FGBLuU585:resolvedLinks[3]},xDOhmD3ex:{FGBLuU585:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})})})},idLsF32zyF5);})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-r5yk2a\",\"data-framer-name\":\"Alles Anzeigen Mobile\",layoutDependency:layoutDependency,layoutId:\"W633YuQ2a\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIENvbXBhY3QgRGlzcGxheSBTZW1pYm9sZA==\",\"--framer-font-family\":'\"SF Compact Display Semibold\", \"SF Compact Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"Onc7NQRnL\",openInNewTab:false,scopeId:\"JuyYeEj5K\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Mehr anzeigen\"})})})}),className:\"framer-d2afah\",fonts:[\"CUSTOM;SF Compact Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"Onc7NQRnL\",style:{\"--extracted-r6o4lv\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mCQWT.framer-ny755e, .framer-mCQWT .framer-ny755e { display: block; }\",\".framer-mCQWT.framer-1f3aa6a { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1140px; }\",\".framer-mCQWT .framer-1qj28a2 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mCQWT .framer-8k82s8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-mCQWT .framer-1gtnqby-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-mCQWT .framer-1mz30mp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-mCQWT .framer-1820e7o, .framer-mCQWT .framer-d2afah { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-mCQWT .framer-1dw5yfh { display: grid; flex: none; gap: 25px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: start; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-mCQWT .framer-7cq6h5 { align-self: start; display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: auto; justify-content: center; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-mCQWT .framer-pi5ewb-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 1fr; }\",\".framer-mCQWT .framer-r5yk2a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 35px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mCQWT.framer-1f3aa6a, .framer-mCQWT .framer-1qj28a2, .framer-mCQWT .framer-8k82s8, .framer-mCQWT .framer-1mz30mp, .framer-mCQWT .framer-r5yk2a { gap: 0px; } .framer-mCQWT.framer-1f3aa6a > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-mCQWT.framer-1f3aa6a > :first-child { margin-top: 0px; } .framer-mCQWT.framer-1f3aa6a > :last-child { margin-bottom: 0px; } .framer-mCQWT .framer-1qj28a2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-mCQWT .framer-1qj28a2 > :first-child, .framer-mCQWT .framer-8k82s8 > :first-child, .framer-mCQWT .framer-1mz30mp > :first-child, .framer-mCQWT .framer-r5yk2a > :first-child { margin-left: 0px; } .framer-mCQWT .framer-1qj28a2 > :last-child, .framer-mCQWT .framer-8k82s8 > :last-child, .framer-mCQWT .framer-1mz30mp > :last-child, .framer-mCQWT .framer-r5yk2a > :last-child { margin-right: 0px; } .framer-mCQWT .framer-8k82s8 > *, .framer-mCQWT .framer-1mz30mp > *, .framer-mCQWT .framer-r5yk2a > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-mCQWT.framer-v-1sjoaox.framer-1f3aa6a { cursor: unset; gap: 25px; overflow: visible; }\",\".framer-mCQWT.framer-v-1sjoaox .framer-1qj28a2 { position: sticky; top: 68px; z-index: 1; }\",\".framer-mCQWT.framer-v-1sjoaox .framer-1820e7o { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mCQWT.framer-v-1sjoaox.framer-1f3aa6a { gap: 0px; } .framer-mCQWT.framer-v-1sjoaox.framer-1f3aa6a > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-mCQWT.framer-v-1sjoaox.framer-1f3aa6a > :first-child { margin-top: 0px; } .framer-mCQWT.framer-v-1sjoaox.framer-1f3aa6a > :last-child { margin-bottom: 0px; } }\",\".framer-mCQWT.framer-v-z1yv5x.framer-1f3aa6a { width: 380px; }\",\".framer-mCQWT.framer-v-z1yv5x .framer-8k82s8, .framer-mCQWT.framer-v-1jliyy9 .framer-8k82s8 { padding: 15px 0px 15px 0px; }\",\".framer-mCQWT.framer-v-1jliyy9.framer-1f3aa6a { align-content: flex-end; align-items: flex-end; cursor: unset; gap: 0px; overflow: visible; width: 380px; }\",\".framer-mCQWT.framer-v-1jliyy9 .framer-1qj28a2 { position: sticky; top: 69px; z-index: 1; }\",\".framer-mCQWT.framer-v-1jliyy9 .framer-1dw5yfh { gap: 0px; grid-template-columns: repeat(1, minmax(200px, 1fr)); }\",\".framer-mCQWT.framer-v-1jliyy9 .framer-7cq6h5 { gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mCQWT.framer-v-1jliyy9.framer-1f3aa6a, .framer-mCQWT.framer-v-1jliyy9 .framer-1dw5yfh, .framer-mCQWT.framer-v-1jliyy9 .framer-7cq6h5 { gap: 0px; } .framer-mCQWT.framer-v-1jliyy9.framer-1f3aa6a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-mCQWT.framer-v-1jliyy9.framer-1f3aa6a > :first-child { margin-top: 0px; } .framer-mCQWT.framer-v-1jliyy9.framer-1f3aa6a > :last-child { margin-bottom: 0px; } .framer-mCQWT.framer-v-1jliyy9 .framer-1dw5yfh > *, .framer-mCQWT.framer-v-1jliyy9 .framer-1dw5yfh > :first-child, .framer-mCQWT.framer-v-1jliyy9 .framer-1dw5yfh > :last-child, .framer-mCQWT.framer-v-1jliyy9 .framer-7cq6h5 > *, .framer-mCQWT.framer-v-1jliyy9 .framer-7cq6h5 > :first-child, .framer-mCQWT.framer-v-1jliyy9 .framer-7cq6h5 > :last-child { margin: 0px; } }\",\".framer-mCQWT.framer-v-o3vr1g.framer-1f3aa6a { cursor: unset; gap: 25px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mCQWT.framer-v-o3vr1g.framer-1f3aa6a { gap: 0px; } .framer-mCQWT.framer-v-o3vr1g.framer-1f3aa6a > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-mCQWT.framer-v-o3vr1g.framer-1f3aa6a > :first-child { margin-top: 0px; } .framer-mCQWT.framer-v-o3vr1g.framer-1f3aa6a > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-mCQWT[data-border=\"true\"]::after, .framer-mCQWT [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 140\n * @framerIntrinsicWidth 1140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xDOhmD3ex\":{\"layout\":[\"fixed\",\"auto\"]},\"mJnZC9SNl\":{\"layout\":[\"fixed\",\"auto\"]},\"aC6CVrtIz\":{\"layout\":[\"fixed\",\"auto\"]},\"QdQhEnwoU\":{\"layout\":[\"fixed\",\"auto\"]},\"R8naqmMd8\":{\"layout\":[\"fixed\",\"auto\"]},\"foem8m7YC\":{\"layout\":[\"fixed\",\"auto\"]},\"SvSpuWOh4\":{\"layout\":[\"fixed\",\"auto\"]},\"w7SuzyHrO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"KT211s3sR\":\"text\",\"wNjwE3uYr\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerJuyYeEj5K=withCSS(Component,css,\"framer-mCQWT\");export default FramerJuyYeEj5K;FramerJuyYeEj5K.displayName=\"Brand Row Nomos\";FramerJuyYeEj5K.defaultProps={height:140,width:1140};addPropertyControls(FramerJuyYeEj5K,{variant:{options:[\"ICWAgMWGZ\",\"xDOhmD3ex\",\"mJnZC9SNl\",\"aC6CVrtIz\",\"QdQhEnwoU\",\"R8naqmMd8\"],optionTitles:[\"Desktop\",\"Desktop Open\",\"Mobile\",\"Mobile Open\",\"Tablet\",\"Tablet Open\"],title:\"Variant\",type:ControlType.Enum},KT211s3sR:{defaultValue:\"BRAND\",displayTextArea:true,title:\"Text\",type:ControlType.String},wNjwE3uYr:{title:\"Link\",type:ControlType.Link}});addFonts(FramerJuyYeEj5K,[{explicitInter:true,fonts:[{family:\"Helvetica Neue Condensed Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/m51RfBUZWFtucHm4D3e07GJwU.otf\"},{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:\"SF Compact Display Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZPX5QyU8gHyYADt5u1je3kqbnvc.otf\"}]},...MagTextFonts,...CardBrandFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJuyYeEj5K\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1140\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xDOhmD3ex\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mJnZC9SNl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aC6CVrtIz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QdQhEnwoU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R8naqmMd8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"foem8m7YC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SvSpuWOh4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w7SuzyHrO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"KT211s3sR\\\":\\\"text\\\",\\\"wNjwE3uYr\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"140\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import MagText from\"https://framerusercontent.com/modules/W5DPKEeQuqeSZmy9NBRc/J9eQVqcHHoC6JaHQquqb/Text_5.js\";import Articles,{enumToDisplayNameFunctions}from\"https://framerusercontent.com/modules/cvfF8Zfj3hk6PrJQYRM6/hcrITb9eKaCb892HmIEb/kFZ9bhFxc.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/cRK5N7PJ8cPiFyqYycEE/Hfinp4bR4n8MTWZm4jKe/FP95AICZ2.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/bCssN5wDLh0uJEdVFXoJ/2sknmVSnALlUM88mcD4i/h17XaN2js.js\";import CardBrand from\"https://framerusercontent.com/modules/0CUZsI5ihdpjttz9nftx/yFSKdTwgSitriAQKzoAi/rWlPZbm7N.js\";const MagTextFonts=getFonts(MagText);const CardBrandFonts=getFonts(CardBrand);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const enabledGestures={bmFoBqaZ5:{hover:true},pAmXZdntr:{hover:true},pu7UAuRhb:{hover:true}};const cycleOrder=[\"pu7UAuRhb\",\"Mhqo7oeRo\",\"pAmXZdntr\",\"dgEzabiBu\",\"bmFoBqaZ5\",\"BzWa5Sgfx\"];const serializationHash=\"framer-jtdtN\";const variantClassNames={bmFoBqaZ5:\"framer-v-1t5eomk\",BzWa5Sgfx:\"framer-v-yoc4gd\",dgEzabiBu:\"framer-v-nn5nv4\",Mhqo7oeRo:\"framer-v-10l21cf\",pAmXZdntr:\"framer-v-cw2s4d\",pu7UAuRhb:\"framer-v-17mfbgu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:150};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"SHngXQ0S0\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"SHngXQ0S0\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"SHngXQ0S0\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"SHngXQ0S0\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"yjTLUhgD7\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query1=prequery=>prequery({from:{alias:\"SHngXQ0S0\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"SHngXQ0S0\",direction:\"desc\",name:\"mz9kVlpKW\",type:\"Identifier\"}],select:[{collection:\"SHngXQ0S0\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"SHngXQ0S0\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"N7sQdamSc\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"SHngXQ0S0\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"SHngXQ0S0\",name:\"U_fqU98P9\",type:\"Identifier\"},type:\"BinaryOperation\"}});const query2=prequery=>prequery({from:{alias:\"SHngXQ0S0\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"SHngXQ0S0\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SHngXQ0S0\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"N7sQdamSc\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Open\":\"Mhqo7oeRo\",\"Mobile Open\":\"dgEzabiBu\",\"Tablet Open\":\"BzWa5Sgfx\",Desktop:\"pu7UAuRhb\",Mobile:\"pAmXZdntr\",Tablet:\"bmFoBqaZ5\"};const getProps=({height,id,link,text,width,...props})=>{return{...props,KT211s3sR:text??props.KT211s3sR??\"BRAND\",variant:humanReadableVariantMap[props.variant]??props.variant??\"pu7UAuRhb\",wNjwE3uYr:link??props.wNjwE3uYr};};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,KT211s3sR,wNjwE3uYr,uulcserP6SHngXQ0S0,GSEMEwnpzSHngXQ0S0,SNzXc9qW1SHngXQ0S0,vaSY19i4PSHngXQ0S0,idSHngXQ0S0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pu7UAuRhb\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapsdf1i=activeVariantCallback(async(...args)=>{setVariant(\"Mhqo7oeRo\");});const onTapqfyzed=activeVariantCallback(async(...args)=>{setVariant(\"pu7UAuRhb\");});const onTap1ixbd2p=activeVariantCallback(async(...args)=>{setVariant(\"dgEzabiBu\");});const onTapacrgjl=activeVariantCallback(async(...args)=>{setVariant(\"pAmXZdntr\");});const onTap1beje3z=activeVariantCallback(async(...args)=>{setVariant(\"BzWa5Sgfx\");});const onTap15b923o=activeVariantCallback(async(...args)=>{setVariant(\"bmFoBqaZ5\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Mhqo7oeRo\",\"BzWa5Sgfx\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"Mhqo7oeRo\",\"dgEzabiBu\",\"BzWa5Sgfx\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"dgEzabiBu\")return true;return false;};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-17mfbgu\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"pu7UAuRhb\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\",...style},...addPropertyOverrides({\"bmFoBqaZ5-hover\":{\"data-framer-name\":undefined},\"pAmXZdntr-hover\":{\"data-framer-name\":undefined},\"pu7UAuRhb-hover\":{\"data-framer-name\":undefined},bmFoBqaZ5:{\"data-framer-name\":\"Tablet\"},BzWa5Sgfx:{\"data-framer-name\":\"Tablet Open\"},dgEzabiBu:{\"data-framer-name\":\"Mobile Open\"},Mhqo7oeRo:{\"data-framer-name\":\"Desktop Open\"},pAmXZdntr:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-f9ow0u\",\"data-framer-name\":\"Brand Line\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"VSZCcN3Ao\",onTap:onTapsdf1i,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\"},variants:{\"pu7UAuRhb-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},bmFoBqaZ5:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},BzWa5Sgfx:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},dgEzabiBu:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},Mhqo7oeRo:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},pAmXZdntr:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({bmFoBqaZ5:{onTap:onTap1beje3z},BzWa5Sgfx:{\"data-border\":true,onTap:onTap15b923o},dgEzabiBu:{\"data-border\":true,onTap:onTapacrgjl},Mhqo7oeRo:{\"data-border\":true,onTap:onTapqfyzed},pAmXZdntr:{onTap:onTap1ixbd2p}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-53v2hg\",\"data-framer-name\":\"Strokes Headline Copy\",layoutDependency:layoutDependency,layoutId:\"i1Cl810SJ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1syn561-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"yIXJFDsgY-container\",nodeId:\"yIXJFDsgY\",rendersWithMotion:true,scopeId:\"qTbMOsIW4\",children:/*#__PURE__*/_jsx(MagText,{color:\"rgba(209, 209, 209, 0)\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"100px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"},height:\"100%\",id:\"yIXJFDsgY\",layoutId:\"yIXJFDsgY\",outlineColor:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",outlineWidth:1,style:{width:\"100%\"},text:KT211s3sR,width:\"100%\",...addPropertyOverrides({\"bmFoBqaZ5-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},\"pAmXZdntr-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},\"pu7UAuRhb-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},bmFoBqaZ5:{font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},BzWa5Sgfx:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},dgEzabiBu:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"72px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},Mhqo7oeRo:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},pAmXZdntr:{font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"72px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-8qkd7a\",\"data-framer-name\":\"Alles Anzeigen Desktop\",layoutDependency:layoutDependency,layoutId:\"mftfeoW1B\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1htihd5\",\"data-styles-preset\":\"h17XaN2js\",children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"zF2W_fPy7\",openInNewTab:false,scopeId:\"qTbMOsIW4\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Mehr anzeigen\"})})})}),className:\"framer-1nnstho\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zF2W_fPy7\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xdejmc\",\"data-border\":true,\"data-framer-name\":\"Collection\",layoutDependency:layoutDependency,layoutId:\"SHngXQ0S0\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{BzWa5Sgfx:{\"--border-bottom-width\":\"0px\"},Mhqo7oeRo:{\"--border-bottom-width\":\"0px\"}},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"SHngXQ0S0\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"SHngXQ0S0\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"SHngXQ0S0\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"SHngXQ0S0\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"yjTLUhgD7\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},...addPropertyOverrides({BzWa5Sgfx:{query:{from:{alias:\"SHngXQ0S0\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"SHngXQ0S0\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SHngXQ0S0\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"N7sQdamSc\"},type:\"BinaryOperation\"}}},dgEzabiBu:{query:{from:{alias:\"SHngXQ0S0\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"SHngXQ0S0\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SHngXQ0S0\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"N7sQdamSc\"},type:\"BinaryOperation\"}}},Mhqo7oeRo:{query:{from:{alias:\"SHngXQ0S0\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"SHngXQ0S0\",direction:\"desc\",name:\"mz9kVlpKW\",type:\"Identifier\"}],select:[{collection:\"SHngXQ0S0\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"SHngXQ0S0\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"SHngXQ0S0\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"N7sQdamSc\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"SHngXQ0S0\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"SHngXQ0S0\",name:\"U_fqU98P9\",type:\"Identifier\"},type:\"BinaryOperation\"}}}},baseVariant,gestureVariant),children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({GSEMEwnpz:GSEMEwnpzSHngXQ0S0,id:idSHngXQ0S0,SNzXc9qW1:SNzXc9qW1SHngXQ0S0,uulcserP6:uulcserP6SHngXQ0S0,vaSY19i4P:vaSY19i4PSHngXQ0S0},index)=>{uulcserP6SHngXQ0S0??=\"\";vaSY19i4PSHngXQ0S0??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`SHngXQ0S0-${idSHngXQ0S0}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6SHngXQ0S0},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3sapd7\",layoutDependency:layoutDependency,layoutId:\"Ol9yTrAP_\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6SHngXQ0S0},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6SHngXQ0S0},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6SHngXQ0S0},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6SHngXQ0S0},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,...addPropertyOverrides({BzWa5Sgfx:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 200px)`},dgEzabiBu:{width:`max(${componentViewport?.width||\"100vw\"}, 200px)`},Mhqo7oeRo:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 200px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1tugj6x-container\",layoutDependency:layoutDependency,layoutId:\"PsTiuxLSi-container\",nodeId:\"PsTiuxLSi\",rendersWithMotion:true,scopeId:\"qTbMOsIW4\",style:{transformPerspective:1200},variants:{BzWa5Sgfx:{transformPerspective:undefined},dgEzabiBu:{transformPerspective:undefined},Mhqo7oeRo:{transformPerspective:undefined}},...addPropertyOverrides({BzWa5Sgfx:{__framer__styleAppearEffectEnabled:undefined},dgEzabiBu:{__framer__styleAppearEffectEnabled:undefined},Mhqo7oeRo:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(CardBrand,{FGBLuU585:resolvedLinks[0],G6l67NRzN:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1SHngXQ0S0,activeLocale),height:\"100%\",id:\"PsTiuxLSi\",layoutId:\"PsTiuxLSi\",LRL_mvDaJ:vaSY19i4PSHngXQ0S0,style:{width:\"100%\"},variant:\"Jhx9P6akf\",width:\"100%\",xuMNzM7cK:toResponsiveImage(GSEMEwnpzSHngXQ0S0),...addPropertyOverrides({BzWa5Sgfx:{FGBLuU585:resolvedLinks[3]},dgEzabiBu:{FGBLuU585:resolvedLinks[2]},Mhqo7oeRo:{FGBLuU585:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})})})},idSHngXQ0S0);})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-109qcp0\",\"data-framer-name\":\"Alles Anzeigen Mobile\",layoutDependency:layoutDependency,layoutId:\"xbks1Q22E\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIENvbXBhY3QgRGlzcGxheSBTZW1pYm9sZA==\",\"--framer-font-family\":'\"SF Compact Display Semibold\", \"SF Compact Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"kWz9CRh0U\",openInNewTab:false,scopeId:\"qTbMOsIW4\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"mehr anzeigen \"})})})}),className:\"framer-1u1afd9\",fonts:[\"CUSTOM;SF Compact Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"kWz9CRh0U\",style:{\"--extracted-r6o4lv\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jtdtN.framer-mjvoaz, .framer-jtdtN .framer-mjvoaz { display: block; }\",\".framer-jtdtN.framer-17mfbgu { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1140px; }\",\".framer-jtdtN .framer-f9ow0u { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jtdtN .framer-53v2hg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-jtdtN .framer-1syn561-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-jtdtN .framer-8qkd7a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jtdtN .framer-1nnstho, .framer-jtdtN .framer-1u1afd9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jtdtN .framer-1xdejmc { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: start; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-jtdtN .framer-3sapd7 { align-self: start; display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: auto; justify-content: center; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-jtdtN .framer-1tugj6x-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 1fr; }\",\".framer-jtdtN .framer-109qcp0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 35px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jtdtN.framer-17mfbgu, .framer-jtdtN .framer-f9ow0u, .framer-jtdtN .framer-53v2hg, .framer-jtdtN .framer-8qkd7a, .framer-jtdtN .framer-109qcp0 { gap: 0px; } .framer-jtdtN.framer-17mfbgu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jtdtN.framer-17mfbgu > :first-child { margin-top: 0px; } .framer-jtdtN.framer-17mfbgu > :last-child { margin-bottom: 0px; } .framer-jtdtN .framer-f9ow0u > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jtdtN .framer-f9ow0u > :first-child, .framer-jtdtN .framer-53v2hg > :first-child, .framer-jtdtN .framer-8qkd7a > :first-child, .framer-jtdtN .framer-109qcp0 > :first-child { margin-left: 0px; } .framer-jtdtN .framer-f9ow0u > :last-child, .framer-jtdtN .framer-53v2hg > :last-child, .framer-jtdtN .framer-8qkd7a > :last-child, .framer-jtdtN .framer-109qcp0 > :last-child { margin-right: 0px; } .framer-jtdtN .framer-53v2hg > *, .framer-jtdtN .framer-8qkd7a > *, .framer-jtdtN .framer-109qcp0 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-jtdtN.framer-v-10l21cf.framer-17mfbgu, .framer-jtdtN.framer-v-yoc4gd.framer-17mfbgu { cursor: unset; gap: 25px; }\",\".framer-jtdtN.framer-v-10l21cf .framer-f9ow0u { overflow: visible; position: sticky; top: 68px; z-index: 1; }\",\".framer-jtdtN.framer-v-10l21cf .framer-1nnstho { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jtdtN.framer-v-10l21cf.framer-17mfbgu { gap: 0px; } .framer-jtdtN.framer-v-10l21cf.framer-17mfbgu > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-jtdtN.framer-v-10l21cf.framer-17mfbgu > :first-child { margin-top: 0px; } .framer-jtdtN.framer-v-10l21cf.framer-17mfbgu > :last-child { margin-bottom: 0px; } }\",\".framer-jtdtN.framer-v-cw2s4d.framer-17mfbgu { width: 380px; }\",\".framer-jtdtN.framer-v-cw2s4d .framer-53v2hg, .framer-jtdtN.framer-v-nn5nv4 .framer-53v2hg { padding: 15px 0px 15px 0px; }\",\".framer-jtdtN.framer-v-nn5nv4.framer-17mfbgu { align-content: flex-end; align-items: flex-end; cursor: unset; gap: 0px; width: 380px; }\",\".framer-jtdtN.framer-v-nn5nv4 .framer-f9ow0u { position: sticky; top: 69px; z-index: 1; }\",\".framer-jtdtN.framer-v-nn5nv4 .framer-1xdejmc { gap: 0px; grid-template-columns: repeat(1, minmax(200px, 1fr)); }\",\".framer-jtdtN.framer-v-nn5nv4 .framer-3sapd7 { gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jtdtN.framer-v-nn5nv4.framer-17mfbgu, .framer-jtdtN.framer-v-nn5nv4 .framer-1xdejmc, .framer-jtdtN.framer-v-nn5nv4 .framer-3sapd7 { gap: 0px; } .framer-jtdtN.framer-v-nn5nv4.framer-17mfbgu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jtdtN.framer-v-nn5nv4.framer-17mfbgu > :first-child { margin-top: 0px; } .framer-jtdtN.framer-v-nn5nv4.framer-17mfbgu > :last-child { margin-bottom: 0px; } .framer-jtdtN.framer-v-nn5nv4 .framer-1xdejmc > *, .framer-jtdtN.framer-v-nn5nv4 .framer-1xdejmc > :first-child, .framer-jtdtN.framer-v-nn5nv4 .framer-1xdejmc > :last-child, .framer-jtdtN.framer-v-nn5nv4 .framer-3sapd7 > *, .framer-jtdtN.framer-v-nn5nv4 .framer-3sapd7 > :first-child, .framer-jtdtN.framer-v-nn5nv4 .framer-3sapd7 > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jtdtN.framer-v-yoc4gd.framer-17mfbgu { gap: 0px; } .framer-jtdtN.framer-v-yoc4gd.framer-17mfbgu > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-jtdtN.framer-v-yoc4gd.framer-17mfbgu > :first-child { margin-top: 0px; } .framer-jtdtN.framer-v-yoc4gd.framer-17mfbgu > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-jtdtN[data-border=\"true\"]::after, .framer-jtdtN [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 140\n * @framerIntrinsicWidth 1140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Mhqo7oeRo\":{\"layout\":[\"fixed\",\"auto\"]},\"pAmXZdntr\":{\"layout\":[\"fixed\",\"auto\"]},\"dgEzabiBu\":{\"layout\":[\"fixed\",\"auto\"]},\"bmFoBqaZ5\":{\"layout\":[\"fixed\",\"auto\"]},\"BzWa5Sgfx\":{\"layout\":[\"fixed\",\"auto\"]},\"OgmwFryRg\":{\"layout\":[\"fixed\",\"auto\"]},\"NHkLJ723f\":{\"layout\":[\"fixed\",\"auto\"]},\"qAIo5nOtM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"KT211s3sR\":\"text\",\"wNjwE3uYr\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerqTbMOsIW4=withCSS(Component,css,\"framer-jtdtN\");export default FramerqTbMOsIW4;FramerqTbMOsIW4.displayName=\"Brand Row VOR Shoes\";FramerqTbMOsIW4.defaultProps={height:140,width:1140};addPropertyControls(FramerqTbMOsIW4,{variant:{options:[\"pu7UAuRhb\",\"Mhqo7oeRo\",\"pAmXZdntr\",\"dgEzabiBu\",\"bmFoBqaZ5\",\"BzWa5Sgfx\"],optionTitles:[\"Desktop\",\"Desktop Open\",\"Mobile\",\"Mobile Open\",\"Tablet\",\"Tablet Open\"],title:\"Variant\",type:ControlType.Enum},KT211s3sR:{defaultValue:\"BRAND\",displayTextArea:true,title:\"Text\",type:ControlType.String},wNjwE3uYr:{title:\"Link\",type:ControlType.Link}});addFonts(FramerqTbMOsIW4,[{explicitInter:true,fonts:[{family:\"Helvetica Neue Condensed Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/m51RfBUZWFtucHm4D3e07GJwU.otf\"},{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:\"SF Compact Display Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZPX5QyU8gHyYADt5u1je3kqbnvc.otf\"}]},...MagTextFonts,...CardBrandFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqTbMOsIW4\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Mhqo7oeRo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pAmXZdntr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dgEzabiBu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bmFoBqaZ5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BzWa5Sgfx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OgmwFryRg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NHkLJ723f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qAIo5nOtM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"KT211s3sR\\\":\\\"text\\\",\\\"wNjwE3uYr\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"1140\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"140\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"0px 0px 100px 100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isOnCanvas&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=['.framer-sg3Ie .framer-styles-preset-1p1wajg:not(.rich-text-wrapper), .framer-sg3Ie .framer-styles-preset-1p1wajg.rich-text-wrapper a { --framer-link-current-text-color: var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, #a0a0a0) /* {\"name\":\"Text Grey\"} */; --framer-link-hover-text-color: var(--token-818a283b-450e-452c-a8af-6b81d42f4181, #333333) /* {\"name\":\"Black\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, #a0a0a0); --framer-link-text-decoration: none; }'];export const className=\"framer-sg3Ie\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (bf2ee14)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6xiPfgyeGy6LQc8LMRva/xu8o7xxNUeYRD32TCZGM/fVxnimdqP.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/wYbvBxYbCiVzNatPcIOZ/7zCgjxAepnszGnRTPKG7/GyHpqTzQT.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/fqS2raOk6OqBNMvPgnl9/TTUr57GSMTvrkWfwXrWk/SbUeepJXi.js\";import ElementsAvatarCopy from\"https://framerusercontent.com/modules/mEY2cI9495lFKoqk3XSY/TdGwY6HQIsn3EnJXRz5O/FqDwSbkX4.js\";import CategoryHyperlink from\"https://framerusercontent.com/modules/i2xtLOrVek6CmIcZaMeV/3xQZWouxvpXgbM5on3jK/VRrVsG8d4.js\";const VideoFonts=getFonts(Video);const ElementsAvatarCopyFonts=getFonts(ElementsAvatarCopy);const CategoryHyperlinkFonts=getFonts(CategoryHyperlink);const Video1Controls=getPropertyControls(Video1);const enabledGestures={BxmmDFkce:{hover:true},cEWy0VLJI:{hover:true},etfYC2YGX:{hover:true},FrW3IORY1:{hover:true,pressed:true},ln0ZP9gsn:{hover:true,pressed:true}};const cycleOrder=[\"BxmmDFkce\",\"FrW3IORY1\",\"ln0ZP9gsn\",\"AxDhS0uZV\",\"etfYC2YGX\",\"cEWy0VLJI\",\"sgczVpZvl\"];const serializationHash=\"framer-Yp0UF\";const variantClassNames={AxDhS0uZV:\"framer-v-1xjvi10\",BxmmDFkce:\"framer-v-158zqbh\",cEWy0VLJI:\"framer-v-974rt1\",etfYC2YGX:\"framer-v-hs0s7w\",FrW3IORY1:\"framer-v-9v23p6\",ln0ZP9gsn:\"framer-v-it8goz\",sgczVpZvl:\"framer-v-1e21o9k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.3,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 humanReadableVariantMap={\"Card Desktop - Editors Notes\":\"etfYC2YGX\",\"Card Desktop\":\"BxmmDFkce\",\"Card Mobile - Full Width Editors NOtes\":\"sgczVpZvl\",\"Card Mobile - Full Width\":\"AxDhS0uZV\",\"Card Mobile Header\":\"ln0ZP9gsn\",\"Card Mobile\":\"FrW3IORY1\",\"Card Video\":\"cEWy0VLJI\"};const getProps=({brandLink,brandLogo,brandName,category,height,id,image,link,title,video,width,...props})=>{return{...props,bEd8uPVyM:video??props.bEd8uPVyM,CjYBj7rBx:brandLogo??props.CjYBj7rBx,FGBLuU585:link??props.FGBLuU585,G6l67NRzN:category??props.G6l67NRzN,LRL_mvDaJ:title??props.LRL_mvDaJ??\"Title\",mdVAR5_ZZ:brandLink??props.mdVAR5_ZZ,qara6xhl3:brandName??props.qara6xhl3??\"Brand Name\",variant:humanReadableVariantMap[props.variant]??props.variant??\"BxmmDFkce\",xuMNzM7cK:image??props.xuMNzM7cK};};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,FGBLuU585,xuMNzM7cK,G6l67NRzN,LRL_mvDaJ,mdVAR5_ZZ,CjYBj7rBx,bEd8uPVyM,qara6xhl3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BxmmDFkce\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"cEWy0VLJI-hover\")return false;if(baseVariant===\"cEWy0VLJI\")return false;return true;};const visible=isSet(CjYBj7rBx);const isDisplayed1=value=>{if(gestureVariant===\"etfYC2YGX-hover\")return value;if(baseVariant===\"etfYC2YGX\")return value;if(baseVariant===\"sgczVpZvl\")return false;return true;};const isDisplayed2=()=>{if(gestureVariant===\"etfYC2YGX-hover\")return true;if([\"etfYC2YGX\",\"sgczVpZvl\"].includes(baseVariant))return true;return false;};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-158zqbh\",className,classNames),\"data-framer-name\":\"Card Desktop\",layoutDependency:layoutDependency,layoutId:\"BxmmDFkce\",ref:refBinding,style:{...style},...addPropertyOverrides({\"BxmmDFkce-hover\":{\"data-framer-name\":undefined},\"cEWy0VLJI-hover\":{\"data-framer-name\":undefined},\"etfYC2YGX-hover\":{\"data-framer-name\":undefined},\"FrW3IORY1-hover\":{\"data-framer-name\":undefined},\"FrW3IORY1-pressed\":{\"data-framer-name\":undefined},\"ln0ZP9gsn-hover\":{\"data-framer-name\":undefined},\"ln0ZP9gsn-pressed\":{\"data-framer-name\":undefined},AxDhS0uZV:{\"data-framer-name\":\"Card Mobile - Full Width\"},cEWy0VLJI:{\"data-framer-name\":\"Card Video\"},etfYC2YGX:{\"data-framer-name\":\"Card Desktop - Editors Notes\"},FrW3IORY1:{\"data-framer-name\":\"Card Mobile\"},ln0ZP9gsn:{\"data-framer-name\":\"Card Mobile Header\"},sgczVpZvl:{\"data-framer-name\":\"Card Mobile - Full Width Editors NOtes\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:FGBLuU585,motionChild:true,nodeId:\"N9xSS3W6W\",openInNewTab:false,scopeId:\"tIjQbQAYo\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1sr20km framer-146xlps\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"N9xSS3W6W\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wtgxly\",\"data-framer-name\":\"Picture\",layoutDependency:layoutDependency,layoutId:\"gA_JyLXJE\",style:{filter:\"none\",WebkitFilter:\"none\"},variants:{\"etfYC2YGX-hover\":{filter:\"brightness(0.85)\",WebkitFilter:\"brightness(0.85)\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||351.5)-0-95.8+0+0)+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(xuMNzM7cK)},className:\"framer-qjc8kw\",\"data-framer-name\":\"Picture (1:1)\",layoutDependency:layoutDependency,layoutId:\"qNRkxIMMb\",style:{filter:\"none\",opacity:1,WebkitFilter:\"none\"},variants:{\"BxmmDFkce-hover\":{filter:\"brightness(0.85)\",WebkitFilter:\"brightness(0.85)\"},\"etfYC2YGX-hover\":{opacity:1},\"FrW3IORY1-hover\":{filter:\"none\",opacity:.85,WebkitFilter:\"none\"},\"FrW3IORY1-pressed\":{filter:\"none\",opacity:.85,WebkitFilter:\"none\"},\"ln0ZP9gsn-hover\":{filter:\"none\",opacity:.85,WebkitFilter:\"none\"},\"ln0ZP9gsn-pressed\":{filter:\"none\",opacity:.85,WebkitFilter:\"none\"},etfYC2YGX:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},sgczVpZvl:{filter:\"none\",WebkitFilter:\"none\"}},...addPropertyOverrides({AxDhS0uZV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||461)-0-96.8+0+0)+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(xuMNzM7cK)}},etfYC2YGX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(xuMNzM7cK)}},FrW3IORY1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||456)-0-91.8+0+0)+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(xuMNzM7cK)}},ln0ZP9gsn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||456)-0-455.8+0+0)+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(xuMNzM7cK)}},sgczVpZvl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||461)-0-96.8+0+0)+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(xuMNzM7cK)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-x5bg5\",\"data-framer-name\":\"Video\",layoutDependency:layoutDependency,layoutId:\"KlhEYH4gf\",style:{backgroundColor:\"rgba(0, 153, 255, 0)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a67gir-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xLhhfDTUO-container\",nodeId:\"xLhhfDTUO\",rendersWithMotion:true,scopeId:\"tIjQbQAYo\",style:{filter:\"none\",WebkitFilter:\"none\"},variants:{\"BxmmDFkce-hover\":{filter:\"brightness(0.85)\",WebkitFilter:\"brightness(0.85)\"},\"cEWy0VLJI-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"etfYC2YGX-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"FrW3IORY1-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"FrW3IORY1-pressed\":{filter:\"none\",WebkitFilter:\"none\"},\"ln0ZP9gsn-hover\":{filter:\"none\",WebkitFilter:\"none\"},\"ln0ZP9gsn-pressed\":{filter:\"none\",WebkitFilter:\"none\"}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"xLhhfDTUO\",isMixedBorderRadius:false,layoutId:\"xLhhfDTUO\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:bEd8uPVyM,srcType:\"Upload\",srcUrl:\"Title\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-abjsm8\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"vQwFSTqHI\",children:[/*#__PURE__*/_jsx(Link,{href:FGBLuU585,motionChild:true,nodeId:\"UInpF5IKz\",scopeId:\"tIjQbQAYo\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17n6vgx framer-146xlps\",layoutDependency:layoutDependency,layoutId:\"UInpF5IKz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Title\"})}),className:\"framer-crge60\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EQuZpnoIL\",text:LRL_mvDaJ,variants:{\"BxmmDFkce-hover\":{\"--extracted-a0htzi\":\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\"},\"cEWy0VLJI-hover\":{\"--extracted-a0htzi\":\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\"},\"etfYC2YGX-hover\":{\"--extracted-a0htzi\":\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\"},\"FrW3IORY1-hover\":{\"--extracted-a0htzi\":\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\"},\"FrW3IORY1-pressed\":{\"--extracted-a0htzi\":\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\"},\"ln0ZP9gsn-hover\":{\"--extracted-a0htzi\":\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\"},\"ln0ZP9gsn-pressed\":{\"--extracted-a0htzi\":\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\"},etfYC2YGX:{\"--extracted-a0htzi\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"BxmmDFkce-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54)))\"},children:\"Title\"})})},\"cEWy0VLJI-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54)))\"},children:\"Title\"})})},\"etfYC2YGX-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7R2FtYmFyaW5vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Gambarino\", \"Gambarino Placeholder\", serif',\"--framer-font-size\":\"34px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54)))\"},children:\"Title\"})})},\"FrW3IORY1-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54)))\"},children:\"Title\"})})},\"FrW3IORY1-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54)))\"},children:\"Title\"})})},\"ln0ZP9gsn-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54)))\"},children:\"Title\"})})},\"ln0ZP9gsn-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54)))\"},children:\"Title\"})})},etfYC2YGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7R2FtYmFyaW5vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Gambarino\", \"Gambarino Placeholder\", serif',\"--framer-font-size\":\"34px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)))\"},children:\"Title\"})}),fonts:[\"FS;Gambarino-regular\"]}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b3vmiw\",\"data-framer-name\":\"Brand Line\",layoutDependency:layoutDependency,layoutId:\"VbIMUOq9S\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a01ooe\",\"data-framer-name\":\"Brand\",layoutDependency:layoutDependency,layoutId:\"HSAP1btDZ\",children:[isDisplayed1(visible)&&/*#__PURE__*/_jsx(Link,{href:mdVAR5_ZZ,motionChild:true,nodeId:\"SrrYPBnMf\",scopeId:\"tIjQbQAYo\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1d24yb8 framer-146xlps\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"SrrYPBnMf\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-180vc9p-container\",layoutDependency:layoutDependency,layoutId:\"C8kRXPqy0-container\",nodeId:\"C8kRXPqy0\",rendersWithMotion:true,scopeId:\"tIjQbQAYo\",children:/*#__PURE__*/_jsx(ElementsAvatarCopy,{ApbJ0qlLr:false,height:\"100%\",id:\"C8kRXPqy0\",layoutId:\"C8kRXPqy0\",rxuSom06d:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",style:{height:\"100%\",width:\"100%\"},VqLXyQmbq:100,width:\"100%\",xmIvQmf4p:toResponsiveImage(CjYBj7rBx)})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1y43b4w\",\"data-styles-preset\":\"SbUeepJXi\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, rgb(160, 160, 160)))\"},children:/*#__PURE__*/_jsx(Link,{href:mdVAR5_ZZ,motionChild:true,nodeId:\"vmKwpK9oE\",openInNewTab:false,scopeId:\"tIjQbQAYo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1p1wajg\",\"data-styles-preset\":\"GyHpqTzQT\",children:\"Brand Name\"})})})}),className:\"framer-17jm8ed\",\"data-framer-name\":\"Brand\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vmKwpK9oE\",style:{\"--extracted-1of0zx5\":\"var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, rgb(160, 160, 160))\"},text:qara6xhl3,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({etfYC2YGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1y43b4w\",\"data-styles-preset\":\"SbUeepJXi\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, rgb(160, 160, 160)))\"},children:\"Brand Name\"})})},sgczVpZvl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1y43b4w\",\"data-styles-preset\":\"SbUeepJXi\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, rgb(160, 160, 160)))\"},children:\"Brand Name\"})})}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIENvbXBhY3QgRGlzcGxheSBTZW1pYm9sZA==\",\"--framer-font-family\":'\"SF Compact Display Semibold\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, rgb(160, 160, 160)))\",\"--framer-text-transform\":\"uppercase\"},children:\" \\xb7 \"})}),className:\"framer-ub71bp\",fonts:[\"CUSTOM;SF Compact Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"hefVT3JAe\",style:{\"--extracted-r6o4lv\":\"var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, rgb(160, 160, 160))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({etfYC2YGX:{height:35,y:(componentViewport?.y||0)+0+25+0+52.4+0+0+0},sgczVpZvl:{height:35,y:(componentViewport?.y||0)+0+((componentViewport?.height||461)-0-96.8+1+20)+0+40.8+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rqbugg-container\",layoutDependency:layoutDependency,layoutId:\"a06eEnCP1-container\",nodeId:\"a06eEnCP1\",rendersWithMotion:true,scopeId:\"tIjQbQAYo\",children:/*#__PURE__*/_jsx(CategoryHyperlink,{H31hUforj:G6l67NRzN,height:\"100%\",id:\"a06eEnCP1\",layoutId:\"a06eEnCP1\",style:{height:\"100%\"},variant:\"B5RM5zrZU\",width:\"100%\"})})})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Yp0UF.framer-146xlps, .framer-Yp0UF .framer-146xlps { display: block; }\",\".framer-Yp0UF.framer-158zqbh { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 365px; }\",\".framer-Yp0UF .framer-1sr20km { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Yp0UF .framer-wtgxly { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Yp0UF .framer-qjc8kw { aspect-ratio: 1.4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 261px); position: relative; width: 100%; }\",\".framer-Yp0UF .framer-x5bg5 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-Yp0UF .framer-1a67gir-container { flex: none; height: 100%; left: calc(49.938650306748485% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-Yp0UF .framer-abjsm8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Yp0UF .framer-17n6vgx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Yp0UF .framer-crge60 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Yp0UF .framer-1b3vmiw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-Yp0UF .framer-1a01ooe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 35px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Yp0UF .framer-1d24yb8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px 10px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Yp0UF .framer-180vc9p-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-Yp0UF .framer-17jm8ed { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Yp0UF .framer-ub71bp { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Yp0UF .framer-1rqbugg-container { flex: none; height: 100%; position: relative; width: auto; }\",\".framer-Yp0UF.framer-v-9v23p6 .framer-qjc8kw, .framer-Yp0UF.framer-v-1xjvi10 .framer-qjc8kw, .framer-Yp0UF.framer-v-1e21o9k .framer-qjc8kw { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 365px); order: 1; }\",\".framer-Yp0UF.framer-v-it8goz .framer-1sr20km { align-content: center; align-items: center; }\",\".framer-Yp0UF.framer-v-it8goz .framer-wtgxly { height: 365px; }\",\".framer-Yp0UF.framer-v-it8goz .framer-qjc8kw { aspect-ratio: unset; flex: 1 0 0px; height: 1px; }\",\".framer-Yp0UF.framer-v-it8goz .framer-crge60 { width: 90%; }\",\".framer-Yp0UF.framer-v-it8goz .framer-1b3vmiw { justify-content: center; width: 90%; }\",\".framer-Yp0UF.framer-v-1xjvi10.framer-158zqbh, .framer-Yp0UF.framer-v-1e21o9k.framer-158zqbh { cursor: unset; gap: 20px; }\",\".framer-Yp0UF.framer-v-1xjvi10 .framer-wtgxly, .framer-Yp0UF.framer-v-hs0s7w .framer-1a01ooe, .framer-Yp0UF.framer-v-hs0s7w .framer-1rqbugg-container, .framer-Yp0UF.framer-v-1e21o9k .framer-wtgxly { order: 0; }\",\".framer-Yp0UF.framer-v-1xjvi10 .framer-x5bg5, .framer-Yp0UF.framer-v-hs0s7w .framer-ub71bp, .framer-Yp0UF.framer-v-974rt1 .framer-abjsm8, .framer-Yp0UF.framer-v-1e21o9k .framer-x5bg5 { order: 1; }\",\".framer-Yp0UF.framer-v-1xjvi10 .framer-17n6vgx, .framer-Yp0UF.framer-v-1e21o9k .framer-17n6vgx { flex-direction: row; padding: 0px 20px 0px 20px; }\",\".framer-Yp0UF.framer-v-1xjvi10 .framer-crge60, .framer-Yp0UF.framer-v-1e21o9k .framer-crge60 { flex: 1 0 0px; width: 1px; }\",\".framer-Yp0UF.framer-v-1xjvi10 .framer-1b3vmiw, .framer-Yp0UF.framer-v-1e21o9k .framer-1b3vmiw { padding: 0px 20px 0px 20px; }\",\".framer-Yp0UF.framer-v-hs0s7w.framer-158zqbh { gap: 20px; justify-content: flex-start; }\",\".framer-Yp0UF.framer-v-hs0s7w .framer-abjsm8 { align-content: flex-start; align-items: flex-start; gap: 15px; justify-content: flex-start; }\",\".framer-Yp0UF.framer-v-hs0s7w .framer-17n6vgx { align-content: flex-start; align-items: flex-start; justify-content: flex-start; order: 0; }\",\".framer-Yp0UF.framer-v-hs0s7w .framer-1b3vmiw, .framer-Yp0UF.framer-v-hs0s7w .framer-1d24yb8 { order: 2; }\",\".framer-Yp0UF.framer-v-hs0s7w .framer-17jm8ed { order: 3; }\",\".framer-Yp0UF.framer-v-974rt1 .framer-1sr20km { min-height: 263px; order: 0; }\",\".framer-Yp0UF.framer-v-974rt1 .framer-x5bg5 { align-content: center; align-items: center; bottom: unset; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; right: unset; width: 100%; }\",\".framer-Yp0UF.framer-v-974rt1 .framer-1a67gir-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 365px); left: unset; position: relative; top: unset; }\",\".framer-Yp0UF.framer-v-1e21o9k .framer-17jm8ed { flex: none; white-space: pre; width: auto; }\",\".framer-Yp0UF.framer-v-it8goz.hover .framer-qjc8kw, .framer-Yp0UF.framer-v-it8goz.pressed .framer-qjc8kw { aspect-ratio: unset; }\",\".framer-Yp0UF.framer-v-974rt1.hover .framer-x5bg5 { bottom: unset; right: unset; }\",\".framer-Yp0UF.framer-v-974rt1.hover .framer-1a67gir-container { left: unset; top: unset; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 351.5\n * @framerIntrinsicWidth 365\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FrW3IORY1\":{\"layout\":[\"fixed\",\"auto\"]},\"ln0ZP9gsn\":{\"layout\":[\"fixed\",\"auto\"]},\"AxDhS0uZV\":{\"layout\":[\"fixed\",\"auto\"]},\"etfYC2YGX\":{\"layout\":[\"fixed\",\"auto\"]},\"cEWy0VLJI\":{\"layout\":[\"fixed\",\"auto\"]},\"sgczVpZvl\":{\"layout\":[\"fixed\",\"auto\"]},\"KNZMLp4en\":{\"layout\":[\"fixed\",\"auto\"]},\"ozKJa8fwO\":{\"layout\":[\"fixed\",\"auto\"]},\"bX7HmQ0A_\":{\"layout\":[\"fixed\",\"auto\"]},\"fyjBZIzOj\":{\"layout\":[\"fixed\",\"auto\"]},\"R2vPO63O_\":{\"layout\":[\"fixed\",\"auto\"]},\"CHr4vADNA\":{\"layout\":[\"fixed\",\"auto\"]},\"u6ion3mm_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"FGBLuU585\":\"link\",\"xuMNzM7cK\":\"image\",\"G6l67NRzN\":\"category\",\"LRL_mvDaJ\":\"title\",\"mdVAR5_ZZ\":\"brandLink\",\"CjYBj7rBx\":\"brandLogo\",\"bEd8uPVyM\":\"video\",\"qara6xhl3\":\"brandName\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramertIjQbQAYo=withCSS(Component,css,\"framer-Yp0UF\");export default FramertIjQbQAYo;FramertIjQbQAYo.displayName=\"Card\";FramertIjQbQAYo.defaultProps={height:351.5,width:365};addPropertyControls(FramertIjQbQAYo,{variant:{options:[\"BxmmDFkce\",\"FrW3IORY1\",\"ln0ZP9gsn\",\"AxDhS0uZV\",\"etfYC2YGX\",\"cEWy0VLJI\",\"sgczVpZvl\"],optionTitles:[\"Card Desktop\",\"Card Mobile\",\"Card Mobile Header\",\"Card Mobile - Full Width\",\"Card Desktop - Editors Notes\",\"Card Video\",\"Card Mobile - Full Width Editors NOtes\"],title:\"Variant\",type:ControlType.Enum},FGBLuU585:{title:\"Link\",type:ControlType.Link},xuMNzM7cK:{title:\"Image\",type:ControlType.ResponsiveImage},G6l67NRzN:{defaultValue:\"\",title:\"Category\",type:ControlType.String},LRL_mvDaJ:{defaultValue:\"Title\",displayTextArea:true,title:\"Title\",type:ControlType.String},mdVAR5_ZZ:{title:\"Brand Link\",type:ControlType.Link},CjYBj7rBx:{title:\"Brand Logo\",type:ControlType.ResponsiveImage},bEd8uPVyM:Video1Controls?.[\"srcFile\"]&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"\",description:undefined,hidden:undefined,title:\"Video\"},qara6xhl3:{defaultValue:\"Brand Name\",displayTextArea:false,title:\"Brand Name\",type:ControlType.String}});addFonts(FramertIjQbQAYo,[{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:\"Gambarino\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/ZINX7PW4XMYISLZAZKYY4QHYYHYNPKAV/Z54IGKTR4PBLA5KTYL3IDQZHFQPJJVNZ/6KBHT5NXCZVM6GHTPKGIR6DXZLQAYIFK.woff2\",weight:\"400\"},{family:\"SF Compact Display Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZPX5QyU8gHyYADt5u1je3kqbnvc.otf\"}]},...VideoFonts,...ElementsAvatarCopyFonts,...CategoryHyperlinkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertIjQbQAYo\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"365\",\"framerVariables\":\"{\\\"FGBLuU585\\\":\\\"link\\\",\\\"xuMNzM7cK\\\":\\\"image\\\",\\\"G6l67NRzN\\\":\\\"category\\\",\\\"LRL_mvDaJ\\\":\\\"title\\\",\\\"mdVAR5_ZZ\\\":\\\"brandLink\\\",\\\"CjYBj7rBx\\\":\\\"brandLogo\\\",\\\"bEd8uPVyM\\\":\\\"video\\\",\\\"qara6xhl3\\\":\\\"brandName\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"351.5\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FrW3IORY1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ln0ZP9gsn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AxDhS0uZV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"etfYC2YGX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cEWy0VLJI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sgczVpZvl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KNZMLp4en\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ozKJa8fwO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bX7HmQ0A_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fyjBZIzOj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R2vPO63O_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CHr4vADNA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u6ion3mm_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tIjQbQAYo.map", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/6xiPfgyeGy6LQc8LMRva/xu8o7xxNUeYRD32TCZGM/fVxnimdqP.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/fqS2raOk6OqBNMvPgnl9/TTUr57GSMTvrkWfwXrWk/SbUeepJXi.js\";const enabledGestures={bi63ETO7x:{hover:true},C5oCmuwHz:{hover:true}};const cycleOrder=[\"C5oCmuwHz\",\"bi63ETO7x\"];const serializationHash=\"framer-Utiu7\";const variantClassNames={bi63ETO7x:\"framer-v-189t29b\",C5oCmuwHz:\"framer-v-f8gp4q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - Image\":\"bi63ETO7x\",Desktop:\"C5oCmuwHz\"};const getProps=({category,height,id,image,link,title,width,...props})=>{return{...props,cWEobvcG5:image??props.cWEobvcG5,I8p0dzc3B:link??props.I8p0dzc3B,jlJ8s0aqJ:title??props.jlJ8s0aqJ??\"Headline\",variant:humanReadableVariantMap[props.variant]??props.variant??\"C5oCmuwHz\",w73TwTG4d:category??props.w73TwTG4d??\"Category\"};};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,I8p0dzc3B,jlJ8s0aqJ,cWEobvcG5,w73TwTG4d,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"C5oCmuwHz\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-f8gp4q\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"C5oCmuwHz\",ref:refBinding,style:{...style},...addPropertyOverrides({\"bi63ETO7x-hover\":{\"data-framer-name\":undefined},\"C5oCmuwHz-hover\":{\"data-framer-name\":undefined},bi63ETO7x:{\"data-framer-name\":\"Desktop - Image\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:I8p0dzc3B,motionChild:true,nodeId:\"C5oCmuwHzN9xSS3W6W\",openInNewTab:false,scopeId:\"v5Ua4OmU3\",...addPropertyOverrides({\"bi63ETO7x-hover\":{href:undefined},bi63ETO7x:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1i70mn2 framer-pesugr\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"C5oCmuwHzN9xSS3W6W\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-crllxk\",\"data-framer-name\":\"Picture\",layoutDependency:layoutDependency,layoutId:\"C5oCmuwHzgA_JyLXJE\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||200)-20-570.8+0+0)+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(cWEobvcG5)},className:\"framer-xu291c\",\"data-framer-name\":\"Picture\",layoutDependency:layoutDependency,layoutId:\"C5oCmuwHzqNRkxIMMb\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,filter:\"none\",WebkitFilter:\"none\"},variants:{\"bi63ETO7x-hover\":{\"--border-bottom-width\":\"7px\",\"--border-color\":\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",filter:\"brightness(0.95)\",WebkitFilter:\"brightness(0.95)\"},\"C5oCmuwHz-hover\":{filter:\"brightness(0.75)\",WebkitFilter:\"brightness(0.75)\"},bi63ETO7x:{filter:\"brightness(0.75)\",WebkitFilter:\"brightness(0.75)\"}},...addPropertyOverrides({\"bi63ETO7x-hover\":{\"data-border\":true},bi63ETO7x:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(cWEobvcG5)}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"C5oCmuwHzvQwFSTqHI\",scopeId:\"v5Ua4OmU3\",...addPropertyOverrides({bi63ETO7x:{href:I8p0dzc3B}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-10pa9bo framer-pesugr\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"C5oCmuwHzvQwFSTqHI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1y43b4w\",\"data-styles-preset\":\"SbUeepJXi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, rgb(160, 160, 160)))\"},children:\"Category\"})}),className:\"framer-1na8157\",\"data-framer-name\":\"Brand\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XpSE0pI8N\",style:{\"--extracted-r6o4lv\":\"var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, rgb(160, 160, 160))\"},text:w73TwTG4d,variants:{\"bi63ETO7x-hover\":{\"--extracted-r6o4lv\":\"var(--token-5a5a624d-67a6-4d73-b98e-1f1609a139cf, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"bi63ETO7x-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1y43b4w\",\"data-styles-preset\":\"SbUeepJXi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5a5a624d-67a6-4d73-b98e-1f1609a139cf, rgb(255, 255, 255)))\"},children:\"Category\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-118vsmi\",layoutDependency:layoutDependency,layoutId:\"C5oCmuwHzUInpF5IKz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51)))\"},children:\"Headline\"})}),className:\"framer-ijw8p5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C5oCmuwHzEQuZpnoIL\",style:{\"--extracted-a0htzi\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},text:jlJ8s0aqJ,variants:{\"C5oCmuwHz-hover\":{\"--extracted-a0htzi\":\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\"},bi63ETO7x:{\"--extracted-a0htzi\":\"var(--token-5a5a624d-67a6-4d73-b98e-1f1609a139cf, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"C5oCmuwHz-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54)))\"},children:\"Headline\"})})},bi63ETO7x:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-5a5a624d-67a6-4d73-b98e-1f1609a139cf, rgb(255, 255, 255)))\"},children:\"Headline\"})})}},baseVariant,gestureVariant)})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Utiu7.framer-pesugr, .framer-Utiu7 .framer-pesugr { display: block; }\",\".framer-Utiu7.framer-f8gp4q { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: 365px; }\",\".framer-Utiu7 .framer-1i70mn2 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Utiu7 .framer-crllxk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Utiu7 .framer-xu291c { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-Utiu7 .framer-10pa9bo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Utiu7 .framer-1na8157, .framer-Utiu7 .framer-ijw8p5 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Utiu7 .framer-118vsmi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Utiu7.framer-f8gp4q, .framer-Utiu7 .framer-1i70mn2, .framer-Utiu7 .framer-crllxk, .framer-Utiu7 .framer-10pa9bo, .framer-Utiu7 .framer-118vsmi { gap: 0px; } .framer-Utiu7.framer-f8gp4q > *, .framer-Utiu7 .framer-1i70mn2 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-Utiu7.framer-f8gp4q > :first-child, .framer-Utiu7 .framer-1i70mn2 > :first-child, .framer-Utiu7 .framer-crllxk > :first-child, .framer-Utiu7 .framer-10pa9bo > :first-child, .framer-Utiu7 .framer-118vsmi > :first-child { margin-top: 0px; } .framer-Utiu7.framer-f8gp4q > :last-child, .framer-Utiu7 .framer-1i70mn2 > :last-child, .framer-Utiu7 .framer-crllxk > :last-child, .framer-Utiu7 .framer-10pa9bo > :last-child, .framer-Utiu7 .framer-118vsmi > :last-child { margin-bottom: 0px; } .framer-Utiu7 .framer-crllxk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Utiu7 .framer-10pa9bo > *, .framer-Utiu7 .framer-118vsmi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-Utiu7.framer-v-189t29b.framer-f8gp4q { justify-content: center; padding: 0px; }\",\".framer-Utiu7.framer-v-189t29b .framer-1i70mn2 { order: 1; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-Utiu7.framer-v-189t29b .framer-crllxk { height: 450px; }\",\".framer-Utiu7.framer-v-189t29b .framer-xu291c { flex: 1 0 0px; height: 1px; order: 0; }\",\".framer-Utiu7.framer-v-189t29b .framer-10pa9bo { align-content: flex-start; align-items: flex-start; gap: 5px; height: 450px; justify-content: flex-end; order: 0; padding: 0px 0px 15px 0px; text-decoration: none; width: 90%; z-index: 1; }\",\".framer-Utiu7.framer-v-189t29b .framer-1na8157 { order: 1; }\",\".framer-Utiu7.framer-v-189t29b .framer-118vsmi { order: 0; width: 85%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Utiu7.framer-v-189t29b .framer-10pa9bo { gap: 0px; } .framer-Utiu7.framer-v-189t29b .framer-10pa9bo > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-Utiu7.framer-v-189t29b .framer-10pa9bo > :first-child { margin-top: 0px; } .framer-Utiu7.framer-v-189t29b .framer-10pa9bo > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-Utiu7[data-border=\"true\"]::after, .framer-Utiu7 [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 507\n * @framerIntrinsicWidth 365\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bi63ETO7x\":{\"layout\":[\"fixed\",\"auto\"]},\"M5d35Klpz\":{\"layout\":[\"fixed\",\"auto\"]},\"kCL9oAB_0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"I8p0dzc3B\":\"link\",\"jlJ8s0aqJ\":\"title\",\"cWEobvcG5\":\"image\",\"w73TwTG4d\":\"category\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerv5Ua4OmU3=withCSS(Component,css,\"framer-Utiu7\");export default Framerv5Ua4OmU3;Framerv5Ua4OmU3.displayName=\"Card Editors Notes\";Framerv5Ua4OmU3.defaultProps={height:507,width:365};addPropertyControls(Framerv5Ua4OmU3,{variant:{options:[\"C5oCmuwHz\",\"bi63ETO7x\"],optionTitles:[\"Desktop\",\"Desktop - Image\"],title:\"Variant\",type:ControlType.Enum},I8p0dzc3B:{title:\"Link\",type:ControlType.Link},jlJ8s0aqJ:{defaultValue:\"Headline\",displayTextArea:false,title:\"Title\",type:ControlType.String},cWEobvcG5:{title:\"Image\",type:ControlType.ResponsiveImage},w73TwTG4d:{defaultValue:\"Category\",displayTextArea:false,title:\"Category\",type:ControlType.String}});addFonts(Framerv5Ua4OmU3,[{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),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerv5Ua4OmU3\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"365\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"I8p0dzc3B\\\":\\\"link\\\",\\\"jlJ8s0aqJ\\\":\\\"title\\\",\\\"cWEobvcG5\\\":\\\"image\\\",\\\"w73TwTG4d\\\":\\\"category\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"507\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bi63ETO7x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M5d35Klpz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kCL9oAB_0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./v5Ua4OmU3.map", "let Component;\nlet IconInner;\nvar Icon = (React) => {\n  if (!Component) {\n    Component = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M222.14,105.85l-80-80a20,20,0,0,0-28.28,0l-80,80A19.86,19.86,0,0,0,28,120v96a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V164h24v52a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V120A19.86,19.86,0,0,0,222.14,105.85ZM204,204H164V152a12,12,0,0,0-12-12H104a12,12,0,0,0-12,12v52H52V121.65l76-76,76,76Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,120v96H152V152H104v64H40V120a8,8,0,0,1,2.34-5.66l80-80a8,8,0,0,1,11.32,0l80,80A8,8,0,0,1,216,120Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,120v96a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V164a4,4,0,0,0-4-4H108a4,4,0,0,0-4,4v52a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V120a16,16,0,0,1,4.69-11.31l80-80a16,16,0,0,1,22.62,0l80,80A16,16,0,0,1,224,120Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.9,110.1l-80-80a14,14,0,0,0-19.8,0l-80,80A13.92,13.92,0,0,0,34,120v96a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V158h36v58a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V120A13.92,13.92,0,0,0,217.9,110.1ZM210,210H158V152a6,6,0,0,0-6-6H104a6,6,0,0,0-6,6v58H46V120a2,2,0,0,1,.58-1.42l80-80a2,2,0,0,1,2.84,0l80,80A2,2,0,0,1,210,120Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.49,111.51l-80-80a12,12,0,0,0-17,0l-80,80A12,12,0,0,0,36,120v96a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V156h40v60a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V120A12,12,0,0,0,216.49,111.51ZM212,212H156V152a4,4,0,0,0-4-4H104a4,4,0,0,0-4,4v60H44V120a4,4,0,0,1,1.17-2.83l80-80a4,4,0,0,1,5.66,0l80,80A4,4,0,0,1,212,120Z\" }))\n      ]\n    ]);\n    IconInner = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, Component.get(props.weight)));\n  }\n  return IconInner;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nvar House_default = Icon;\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.57\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"Acorn\",\"AddressBook\",\"AddressBookTabs\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTaxiing\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Ambulance\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"Angle\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"ApproximateEquals\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asclepius\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Avocado\",\"Axe\",\"Baby\",\"BabyCarriage\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barn\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"BaseballHelmet\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"BeachBall\",\"Beanie\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"Belt\",\"BezierCurve\",\"Bicycle\",\"Binary\",\"Binoculars\",\"Biohazard\",\"Bird\",\"Blueprint\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bomb\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"BookOpenUser\",\"BookUser\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"Boules\",\"BoundingBox\",\"BowlFood\",\"BowlSteam\",\"BowlingBall\",\"BoxArrowDown\",\"BoxArrowUp\",\"BoxingGlove\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bread\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Building\",\"BuildingApartment\",\"BuildingOffice\",\"Buildings\",\"Bulldozer\",\"Bus\",\"Butterfly\",\"CableCar\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarDot\",\"CalendarDots\",\"CalendarHeart\",\"CalendarMinus\",\"CalendarPlus\",\"CalendarSlash\",\"CalendarStar\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarBattery\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CardsThree\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretLineDown\",\"CaretLineLeft\",\"CaretLineRight\",\"CaretLineUp\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CashRegister\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"CellTower\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredSlash\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleSlash\",\"ChatCircleText\",\"ChatDots\",\"ChatSlash\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropSlash\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checkerboard\",\"Checks\",\"Cheers\",\"Cheese\",\"ChefHat\",\"Cherries\",\"Church\",\"Cigarette\",\"CigaretteSlash\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"City\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCountdown\",\"ClockUser\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Clover\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"CoffeeBean\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"ColumnsPlusLeft\",\"ColumnsPlusRight\",\"Command\",\"Compass\",\"CompassRose\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"CourtBasketball\",\"Cow\",\"CowboyHat\",\"Cpu\",\"Crane\",\"CraneTower\",\"CreditCard\",\"Cricket\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownCross\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desk\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSlash\",\"DeviceMobileSpeaker\",\"DeviceRotate\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscoBall\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"Dresser\",\"DribbbleLogo\",\"Drone\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropSimple\",\"DropSlash\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Empty\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"ExclamationMark\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"Eyes\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"FalloutShelter\",\"Fan\",\"Farm\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FediverseLogo\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileC\",\"FileCloud\",\"FileCode\",\"FileCpp\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileIni\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMd\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FilePy\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileTxt\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FireTruck\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagBannerFold\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FlipHorizontal\",\"FlipVertical\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"FootballHelmet\",\"Footprints\",\"ForkKnife\",\"FourK\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"FunnelSimpleX\",\"FunnelX\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeSimpleX\",\"GlobeStand\",\"GlobeX\",\"Goggles\",\"Golf\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gps\",\"GpsFix\",\"GpsSlash\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GraphicsCard\",\"GreaterThan\",\"GreaterThanOrEqual\",\"GridFour\",\"GridNine\",\"Guitar\",\"HairDryer\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandArrowDown\",\"HandArrowUp\",\"HandCoins\",\"HandDeposit\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPeace\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"HandWithdraw\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"HardHat\",\"Hash\",\"HashStraight\",\"HeadCircuit\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighDefinition\",\"HighHeel\",\"Highlighter\",\"HighlighterCircle\",\"Hockey\",\"Hoodie\",\"Horse\",\"Hospital\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"Hurricane\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageBroken\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Intersection\",\"Invoice\",\"Island\",\"Jar\",\"JarLabel\",\"Jeep\",\"Joystick\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"LampPendant\",\"Laptop\",\"Lasso\",\"LastfmLogo\",\"Layout\",\"Leaf\",\"Lectern\",\"Lego\",\"LegoSmiley\",\"LessThan\",\"LessThanOrEqual\",\"LetterCircleH\",\"LetterCircleP\",\"LetterCircleV\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"LineVertical\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinktreeLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListHeart\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"ListStar\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"Log\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Mailbox\",\"MapPin\",\"MapPinArea\",\"MapPinLine\",\"MapPinPlus\",\"MapPinSimple\",\"MapPinSimpleArea\",\"MapPinSimpleLine\",\"MapTrifold\",\"MarkdownLogo\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MastodonLogo\",\"MathOperations\",\"MatrixLogo\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MemberOf\",\"Memory\",\"MessengerLogo\",\"MetaLogo\",\"Meteor\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"Microscope\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"MoneyWavy\",\"Monitor\",\"MonitorArrowUp\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseLeftClick\",\"MouseMiddleClick\",\"MouseRightClick\",\"MouseScroll\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesMinus\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Network\",\"NetworkSlash\",\"NetworkX\",\"Newspaper\",\"NewspaperClipping\",\"NotEquals\",\"NotMemberOf\",\"NotSubsetOf\",\"NotSupersetOf\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NuclearPlant\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Numpad\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Onigiri\",\"OpenAiLogo\",\"Option\",\"Orange\",\"OrangeSlice\",\"Oven\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Panorama\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilRuler\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagon\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleCircle\",\"PersonSimpleHike\",\"PersonSimpleRun\",\"PersonSimpleSki\",\"PersonSimpleSwim\",\"PersonSimpleTaiChi\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneList\",\"PhoneOutgoing\",\"PhonePause\",\"PhonePlus\",\"PhoneSlash\",\"PhoneTransfer\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PicnicTable\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PingPong\",\"PintGlass\",\"PinterestLogo\",\"Pinwheel\",\"Pipe\",\"PipeWrench\",\"PixLogo\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"Popsicle\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"QuestionMark\",\"Queue\",\"Quotes\",\"Rabbit\",\"Racquet\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"Ranking\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"RectangleDashed\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"ReplitLogo\",\"Resize\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"RowsPlusBottom\",\"RowsPlusTop\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Sailboat\",\"Scales\",\"Scan\",\"ScanSmiley\",\"Scissors\",\"Scooter\",\"Screencast\",\"Screwdriver\",\"Scribble\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealPercent\",\"SealQuestion\",\"SealWarning\",\"Seat\",\"Seatbelt\",\"SecurityCamera\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShippingContainer\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shovel\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SkypeLogo\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyMelting\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"Sock\",\"SolarPanel\",\"SolarRoof\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Speedometer\",\"Sphere\",\"Spinner\",\"SpinnerBall\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"SprayBottle\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackMinus\",\"StackOverflowLogo\",\"StackPlus\",\"StackSimple\",\"Stairs\",\"Stamp\",\"StandardDefinition\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteamLogo\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"SubsetOf\",\"SubsetProperOf\",\"Subtitles\",\"SubtitlesSlash\",\"Subtract\",\"SubtractSquare\",\"Subway\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"SupersetOf\",\"SupersetProperOf\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TeaBag\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextSubscript\",\"TextSuperscript\",\"TextT\",\"TextTSlash\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThreadsLogo\",\"ThreeD\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Tilde\",\"Timer\",\"TipJar\",\"Tipi\",\"Tire\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tornado\",\"Tote\",\"ToteSimple\",\"Towel\",\"Tractor\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"TrayArrowDown\",\"TrayArrowUp\",\"TreasureChest\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TreeView\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"TriangleDashed\",\"Trolley\",\"TrolleySuitcase\",\"Trophy\",\"Truck\",\"TruckTrailer\",\"TumblrLogo\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Union\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCheck\",\"UserCircle\",\"UserCircleCheck\",\"UserCircleDashed\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSound\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"VectorThree\",\"VectorTwo\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"VideoConference\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Visor\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"WashingMachine\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"WaveformSlash\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"Windmill\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XLogo\",\"XSquare\",\"Yarn\",\"YinYang\",\"YoutubeLogo\"];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\"];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.57\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/_jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (915daba)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SF Compact Display Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SF Compact Display Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/OXtJe5KkEOXo7EhsxaGfF49RRKI.otf\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-ICxRa .framer-styles-preset-11vqn2e:not(.rich-text-wrapper), .framer-ICxRa .framer-styles-preset-11vqn2e.rich-text-wrapper p { --framer-font-family: \"SF Compact Display Medium\", \"SF Compact Display Medium Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, #a0a0a0); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-ICxRa\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/kQV7OJwHiXjw4eS0mEvJ/forXmMbBXVvGiaI1JoTb/O7NusQOCg.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={jK0HBdVuG:{hover:true},MtwNCH9lp:{hover:true},T4EOp2zG5:{hover:true},VUYnus1Yc:{hover:true},WapYnBBP9:{hover:true},ZK7WlGRjq:{hover:true},Zn57Xqqzt:{hover:true}};const cycleOrder=[\"T4EOp2zG5\",\"Zn57Xqqzt\",\"VUYnus1Yc\",\"jK0HBdVuG\",\"MtwNCH9lp\",\"WapYnBBP9\",\"ZK7WlGRjq\",\"LJN0veolz\"];const serializationHash=\"framer-OXfLc\";const variantClassNames={jK0HBdVuG:\"framer-v-gwc9xv\",LJN0veolz:\"framer-v-5qr7z\",MtwNCH9lp:\"framer-v-qwamsl\",T4EOp2zG5:\"framer-v-19y1eib\",VUYnus1Yc:\"framer-v-1bysmh9\",WapYnBBP9:\"framer-v-1doctmq\",ZK7WlGRjq:\"framer-v-u1o2xc\",Zn57Xqqzt:\"framer-v-1b3ahcw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Link / Default\":\"VUYnus1Yc\",\"Link / Inverse\":\"WapYnBBP9\",\"Primary / Default\":\"T4EOp2zG5\",\"Primary / Inverse\":\"jK0HBdVuG\",\"Secondary / Default\":\"Zn57Xqqzt\",\"Secondary / Inverse\":\"MtwNCH9lp\",\"Small Primary / Default\":\"ZK7WlGRjq\",Active:\"LJN0veolz\"};const getProps=({borderRadius,buttonLabel,click,height,iconLeft,iconLeftVisible,iconRight,iconRightVisible,id,labelText,link,newTab,width,...props})=>{return{...props,aWw_6KcCZ:link??props.aWw_6KcCZ,cqVn8zY_I:iconLeftVisible??props.cqVn8zY_I,ewhxR7fOM:buttonLabel??props.ewhxR7fOM??true,H13AV0Kq9:iconLeft??props.H13AV0Kq9??\"ArrowLeft\",iHVTyAHVh:click??props.iHVTyAHVh,IOCaLunmc:iconRight??props.IOCaLunmc??\"ArrowRight\",kAG7qdjE9:iconRightVisible??props.kAG7qdjE9,tQqXqVioD:newTab??props.tQqXqVioD,TTxnyLF_5:labelText??props.TTxnyLF_5??\"Button\",variant:humanReadableVariantMap[props.variant]??props.variant??\"T4EOp2zG5\",VqIbSwMW5:borderRadius??props.VqIbSwMW5??8};};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,ewhxR7fOM,TTxnyLF_5,cqVn8zY_I,H13AV0Kq9,kAG7qdjE9,IOCaLunmc,aWw_6KcCZ,tQqXqVioD,VqIbSwMW5,iHVTyAHVh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"T4EOp2zG5\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap9erjit=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(iHVTyAHVh){const res=await iHVTyAHVh(...args);if(res===false)return false;}});const onTap1ukbect=activeVariantCallback(async(...args)=>{setVariant(\"ZK7WlGRjq\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({LJN0veolz:{value:transition2},ZK7WlGRjq:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:aWw_6KcCZ,motionChild:true,nodeId:\"T4EOp2zG5\",openInNewTab:tQqXqVioD,scopeId:\"Ydrt0kReC\",...addPropertyOverrides({WapYnBBP9:{smoothScroll:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-19y1eib\",className,classNames)} framer-ijb52x`,\"data-framer-name\":\"Primary / Default\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"T4EOp2zG5\",onTap:onTap9erjit,ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",borderBottomLeftRadius:radiusForCorner(VqIbSwMW5,3),borderBottomRightRadius:radiusForCorner(VqIbSwMW5,2),borderTopLeftRadius:radiusForCorner(VqIbSwMW5,0),borderTopRightRadius:radiusForCorner(VqIbSwMW5,1),...style},variants:{\"jK0HBdVuG-hover\":{backgroundColor:\"rgb(204, 204, 204)\"},\"MtwNCH9lp-hover\":{backgroundColor:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\"},\"T4EOp2zG5-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(51, 51, 51)\"},\"ZK7WlGRjq-hover\":{backgroundColor:\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\"},\"Zn57Xqqzt-hover\":{\"--border-color\":\"rgb(51, 51, 51)\"},jK0HBdVuG:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\"},LJN0veolz:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},MtwNCH9lp:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},VUYnus1Yc:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},WapYnBBP9:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},ZK7WlGRjq:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},Zn57Xqqzt:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"jK0HBdVuG-hover\":{\"data-framer-name\":undefined},\"MtwNCH9lp-hover\":{\"data-framer-name\":undefined},\"T4EOp2zG5-hover\":{\"data-framer-name\":undefined},\"VUYnus1Yc-hover\":{\"data-framer-name\":undefined},\"WapYnBBP9-hover\":{\"data-framer-name\":undefined},\"ZK7WlGRjq-hover\":{\"data-framer-name\":undefined},\"Zn57Xqqzt-hover\":{\"data-framer-name\":undefined},jK0HBdVuG:{\"data-framer-name\":\"Primary / Inverse\"},LJN0veolz:{\"data-framer-name\":\"Active\"},MtwNCH9lp:{\"data-border\":true,\"data-framer-name\":\"Secondary / Inverse\"},VUYnus1Yc:{\"data-framer-name\":\"Link / Default\"},WapYnBBP9:{\"data-framer-name\":\"Link / Inverse\"},ZK7WlGRjq:{\"data-framer-name\":\"Small Primary / Default\"},Zn57Xqqzt:{\"data-border\":true,\"data-framer-name\":\"Secondary / Default\"}},baseVariant,gestureVariant),children:[cqVn8zY_I&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ztmwnp-container\",\"data-framer-name\":\"Icon / Left\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Jn5T_9kV9-container\",name:\"Icon / Left\",nodeId:\"Jn5T_9kV9\",rendersWithMotion:true,scopeId:\"Ydrt0kReC\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:H13AV0Kq9,id:\"Jn5T_9kV9\",layoutId:\"Jn5T_9kV9\",mirrored:false,name:\"Icon / Left\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({jK0HBdVuG:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\"},VUYnus1Yc:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\"},Zn57Xqqzt:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\"}},baseVariant,gestureVariant)})})}),ewhxR7fOM&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255)))\"},children:\"Button\"})}),className:\"framer-3e4q2j\",fonts:[\"GF;Poppins-600\"],layoutDependency:layoutDependency,layoutId:\"kszI4oR5a\",style:{\"--extracted-r6o4lv\":\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\"},text:TTxnyLF_5,variants:{\"MtwNCH9lp-hover\":{\"--extracted-r6o4lv\":\"var(--token-93abc819-305e-4261-aec5-f500670f5072, rgb(37, 15, 92))\"},\"VUYnus1Yc-hover\":{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\"},\"WapYnBBP9-hover\":{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.5)\"},\"ZK7WlGRjq-hover\":{\"--extracted-r6o4lv\":\"var(--token-5a5a624d-67a6-4d73-b98e-1f1609a139cf, rgb(255, 255, 255))\"},\"Zn57Xqqzt-hover\":{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\"},jK0HBdVuG:{\"--extracted-r6o4lv\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\"},LJN0veolz:{\"--extracted-r6o4lv\":\"var(--token-5a5a624d-67a6-4d73-b98e-1f1609a139cf, rgb(255, 255, 255))\"},VUYnus1Yc:{\"--extracted-r6o4lv\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\"},ZK7WlGRjq:{\"--extracted-r6o4lv\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},Zn57Xqqzt:{\"--extracted-r6o4lv\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"MtwNCH9lp-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-93abc819-305e-4261-aec5-f500670f5072, rgb(37, 15, 92)))\"},children:\"Button\"})})},\"VUYnus1Yc-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"Button\"})})},\"WapYnBBP9-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.5))\"},children:\"Button\"})})},\"ZK7WlGRjq-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11vqn2e\",\"data-styles-preset\":\"O7NusQOCg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5a5a624d-67a6-4d73-b98e-1f1609a139cf, rgb(255, 255, 255)))\"},children:\"Button\"})})},\"Zn57Xqqzt-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"Button\"})})},jK0HBdVuG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)))\"},children:\"Button\"})})},LJN0veolz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11vqn2e\",\"data-styles-preset\":\"O7NusQOCg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5a5a624d-67a6-4d73-b98e-1f1609a139cf, rgb(255, 255, 255)))\"},children:\"Button\"})}),fonts:[\"Inter\"]},VUYnus1Yc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)))\"},children:\"Button\"})})},ZK7WlGRjq:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11vqn2e\",\"data-styles-preset\":\"O7NusQOCg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51)))\"},children:\"Button\"})}),fonts:[\"Inter\"],onTap:onTap1ukbect},Zn57Xqqzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)))\"},children:\"Button\"})})}},baseVariant,gestureVariant)}),kAG7qdjE9&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rpdzxq-container\",\"data-framer-name\":\"Icon / Right\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"adir6IP70-container\",name:\"Icon / Right\",nodeId:\"adir6IP70\",rendersWithMotion:true,scopeId:\"Ydrt0kReC\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:IOCaLunmc,id:\"adir6IP70\",layoutId:\"adir6IP70\",mirrored:false,name:\"Icon / Right\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({jK0HBdVuG:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\"},VUYnus1Yc:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\"},Zn57Xqqzt:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OXfLc.framer-ijb52x, .framer-OXfLc .framer-ijb52x { display: block; }\",\".framer-OXfLc.framer-19y1eib { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-OXfLc .framer-ztmwnp-container, .framer-OXfLc .framer-rpdzxq-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-OXfLc .framer-3e4q2j { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OXfLc.framer-19y1eib { gap: 0px; } .framer-OXfLc.framer-19y1eib > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-OXfLc.framer-19y1eib > :first-child { margin-left: 0px; } .framer-OXfLc.framer-19y1eib > :last-child { margin-right: 0px; } }\",\".framer-OXfLc.framer-v-1bysmh9.framer-19y1eib, .framer-OXfLc.framer-v-1doctmq.framer-19y1eib { padding: 12px 0px 12px 0px; }\",\".framer-OXfLc.framer-v-u1o2xc.framer-19y1eib, .framer-OXfLc.framer-v-5qr7z.framer-19y1eib { padding: 5px 10px 5px 10px; }\",\".framer-OXfLc.framer-v-u1o2xc .framer-ztmwnp-container, .framer-OXfLc.framer-v-u1o2xc .framer-rpdzxq-container, .framer-OXfLc.framer-v-5qr7z .framer-ztmwnp-container, .framer-OXfLc.framer-v-5qr7z .framer-rpdzxq-container { height: 16px; width: 16px; }\",\".framer-OXfLc.framer-v-u1o2xc .framer-3e4q2j { cursor: pointer; }\",...sharedStyle.css,'.framer-OXfLc[data-border=\"true\"]::after, .framer-OXfLc [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 46\n * @framerIntrinsicWidth 109\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Zn57Xqqzt\":{\"layout\":[\"auto\",\"auto\"]},\"VUYnus1Yc\":{\"layout\":[\"auto\",\"auto\"]},\"jK0HBdVuG\":{\"layout\":[\"auto\",\"auto\"]},\"MtwNCH9lp\":{\"layout\":[\"auto\",\"auto\"]},\"WapYnBBP9\":{\"layout\":[\"auto\",\"auto\"]},\"ZK7WlGRjq\":{\"layout\":[\"auto\",\"auto\"]},\"LJN0veolz\":{\"layout\":[\"auto\",\"auto\"]},\"K26325POe\":{\"layout\":[\"auto\",\"auto\"]},\"R8Z94f71N\":{\"layout\":[\"auto\",\"auto\"]},\"gI9LwD1OE\":{\"layout\":[\"auto\",\"auto\"]},\"uTN8jQfqA\":{\"layout\":[\"auto\",\"auto\"]},\"lnTwKAaes\":{\"layout\":[\"auto\",\"auto\"]},\"MNeYt8c0d\":{\"layout\":[\"auto\",\"auto\"]},\"RQbDHNrrK\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ewhxR7fOM\":\"buttonLabel\",\"TTxnyLF_5\":\"labelText\",\"cqVn8zY_I\":\"iconLeftVisible\",\"H13AV0Kq9\":\"iconLeft\",\"kAG7qdjE9\":\"iconRightVisible\",\"IOCaLunmc\":\"iconRight\",\"aWw_6KcCZ\":\"link\",\"tQqXqVioD\":\"newTab\",\"VqIbSwMW5\":\"borderRadius\",\"iHVTyAHVh\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerYdrt0kReC=withCSS(Component,css,\"framer-OXfLc\");export default FramerYdrt0kReC;FramerYdrt0kReC.displayName=\"Button Copy\";FramerYdrt0kReC.defaultProps={height:46,width:109};addPropertyControls(FramerYdrt0kReC,{variant:{options:[\"T4EOp2zG5\",\"Zn57Xqqzt\",\"VUYnus1Yc\",\"jK0HBdVuG\",\"MtwNCH9lp\",\"WapYnBBP9\",\"ZK7WlGRjq\",\"LJN0veolz\"],optionTitles:[\"Primary / Default\",\"Secondary / Default\",\"Link / Default\",\"Primary / Inverse\",\"Secondary / Inverse\",\"Link / Inverse\",\"Small Primary / Default\",\"Active\"],title:\"Variant\",type:ControlType.Enum},ewhxR7fOM:{defaultValue:true,title:\"Button Label\",type:ControlType.Boolean},TTxnyLF_5:{defaultValue:\"Button\",displayTextArea:false,title:\"Label Text\",type:ControlType.String},cqVn8zY_I:{defaultValue:false,title:\"Icon Left Visible\",type:ControlType.Boolean},H13AV0Kq9:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"ArrowLeft\",description:undefined,hidden:undefined,title:\"Icon Left\"},kAG7qdjE9:{defaultValue:false,title:\"Icon Right Visible\",type:ControlType.Boolean},IOCaLunmc:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"ArrowRight\",description:undefined,hidden:undefined,title:\"Icon Right\"},aWw_6KcCZ:{title:\"Link\",type:ControlType.Link},tQqXqVioD:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},VqIbSwMW5:{defaultValue:8,title:\"Border Radius\",type:ControlType.Number},iHVTyAHVh:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerYdrt0kReC,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYdrt0kReC\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"ewhxR7fOM\\\":\\\"buttonLabel\\\",\\\"TTxnyLF_5\\\":\\\"labelText\\\",\\\"cqVn8zY_I\\\":\\\"iconLeftVisible\\\",\\\"H13AV0Kq9\\\":\\\"iconLeft\\\",\\\"kAG7qdjE9\\\":\\\"iconRightVisible\\\",\\\"IOCaLunmc\\\":\\\"iconRight\\\",\\\"aWw_6KcCZ\\\":\\\"link\\\",\\\"tQqXqVioD\\\":\\\"newTab\\\",\\\"VqIbSwMW5\\\":\\\"borderRadius\\\",\\\"iHVTyAHVh\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"46\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Zn57Xqqzt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VUYnus1Yc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jK0HBdVuG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"MtwNCH9lp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WapYnBBP9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZK7WlGRjq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LJN0veolz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"K26325POe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"R8Z94f71N\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gI9LwD1OE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uTN8jQfqA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lnTwKAaes\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"MNeYt8c0d\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RQbDHNrrK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"109\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ydrt0kReC.map", "// Generated by Framer (a4aa1f7)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,PathVariablesContext,ResolveLinks,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js\";import Articles,{enumToDisplayNameFunctions}from\"https://framerusercontent.com/modules/cvfF8Zfj3hk6PrJQYRM6/hcrITb9eKaCb892HmIEb/kFZ9bhFxc.js\";import CardEditorsNotes from\"https://framerusercontent.com/modules/7lVr11lTCTdheWYU5loR/ys9O0zHs3ECBoCaE7etI/v5Ua4OmU3.js\";import ButtonCopy from\"https://framerusercontent.com/modules/YvXJ0ViAUOSS36PdKIyc/gVN20beTX0BLCq15844j/Ydrt0kReC.js\";const ButtonCopyFonts=getFonts(ButtonCopy);const CardEditorsNotesFonts=getFonts(CardEditorsNotes);const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"NHpjLmPQL\",\"tF_iKNQiQ\",\"KXld_4YQn\",\"s_Se9YxgU\",\"f0N8ckJw1\",\"wrimxPpDq\"];const serializationHash=\"framer-DKt2b\";const variantClassNames={f0N8ckJw1:\"framer-v-167ik1w\",KXld_4YQn:\"framer-v-2jd5xb\",NHpjLmPQL:\"framer-v-x9dqjv\",s_Se9YxgU:\"framer-v-1iforpz\",tF_iKNQiQ:\"framer-v-1o8ui3k\",wrimxPpDq:\"framer-v-112qxnc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"Oxffzh5IR\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"Oxffzh5IR\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"Oxffzh5IR\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"Oxffzh5IR\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"Oxffzh5IR\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"Oxffzh5IR\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Oxffzh5IR\",name:\"RZ4b05Aqe\",type:\"Identifier\"},operator:\"and\",right:{conditions:[{then:{type:\"LiteralValue\",value:true},type:\"Condition\",when:{type:\"LiteralValue\",value:\"XZXJSyzjL\"}}],else:{type:\"LiteralValue\",value:true},type:\"Case\",value:{collection:\"Oxffzh5IR\",name:\"SNzXc9qW1\",type:\"Identifier\"}},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query1=prequery=>prequery({from:{alias:\"gcvX5FL6q\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"gcvX5FL6q\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"gcvX5FL6q\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"gcvX5FL6q\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"gcvX5FL6q\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"gcvX5FL6q\",name:\"id\",type:\"Identifier\"}],where:{collection:\"gcvX5FL6q\",name:\"RZ4b05Aqe\",type:\"Identifier\"}});const query2=prequery=>prequery({from:{alias:\"xMhoQIa95\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"xMhoQIa95\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"xMhoQIa95\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"xMhoQIa95\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"xMhoQIa95\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"xMhoQIa95\",name:\"id\",type:\"Identifier\"}],where:{collection:\"xMhoQIa95\",name:\"RZ4b05Aqe\",type:\"Identifier\"}});const query3=prequery=>prequery({from:{alias:\"z2eGN4FG9\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"z2eGN4FG9\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"z2eGN4FG9\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"z2eGN4FG9\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"z2eGN4FG9\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"z2eGN4FG9\",name:\"id\",type:\"Identifier\"}],where:{collection:\"z2eGN4FG9\",name:\"RZ4b05Aqe\",type:\"Identifier\"}});const query4=prequery=>prequery({from:{alias:\"V_zjexuvv\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"V_zjexuvv\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"V_zjexuvv\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"V_zjexuvv\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"V_zjexuvv\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"V_zjexuvv\",name:\"id\",type:\"Identifier\"}],where:{collection:\"V_zjexuvv\",name:\"RZ4b05Aqe\",type:\"Identifier\"}});const query5=prequery=>prequery({from:{alias:\"gUEVkbrbD\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"gUEVkbrbD\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"gUEVkbrbD\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"gUEVkbrbD\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"gUEVkbrbD\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"gUEVkbrbD\",name:\"id\",type:\"Identifier\"}],where:{collection:\"gUEVkbrbD\",name:\"RZ4b05Aqe\",type:\"Identifier\"}});const query6=prequery=>prequery({from:{alias:\"dBuAlyFSj\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:6},select:[{collection:\"dBuAlyFSj\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"dBuAlyFSj\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"dBuAlyFSj\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"dBuAlyFSj\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"dBuAlyFSj\",name:\"id\",type:\"Identifier\"}],where:{collection:\"dBuAlyFSj\",name:\"RZ4b05Aqe\",type:\"Identifier\"}});const query7=prequery=>prequery({from:{alias:\"ewisNTJUE\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:7},select:[{collection:\"ewisNTJUE\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"ewisNTJUE\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"ewisNTJUE\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"ewisNTJUE\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"ewisNTJUE\",name:\"id\",type:\"Identifier\"}],where:{collection:\"ewisNTJUE\",name:\"RZ4b05Aqe\",type:\"Identifier\"}});const query8=prequery=>prequery({from:{alias:\"KAmoelhI9\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:8},select:[{collection:\"KAmoelhI9\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"KAmoelhI9\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"KAmoelhI9\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"KAmoelhI9\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"KAmoelhI9\",name:\"id\",type:\"Identifier\"}],where:{collection:\"KAmoelhI9\",name:\"RZ4b05Aqe\",type:\"Identifier\"}});const query9=prequery=>prequery({from:{alias:\"qEb4REq79\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:9},select:[{collection:\"qEb4REq79\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"qEb4REq79\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"qEb4REq79\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"qEb4REq79\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"qEb4REq79\",name:\"id\",type:\"Identifier\"}],where:{collection:\"qEb4REq79\",name:\"RZ4b05Aqe\",type:\"Identifier\"}});const query10=prequery=>prequery({from:{alias:\"p5ybFFQxC\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:10},select:[{collection:\"p5ybFFQxC\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"p5ybFFQxC\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"p5ybFFQxC\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"p5ybFFQxC\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"p5ybFFQxC\",name:\"id\",type:\"Identifier\"}],where:{collection:\"p5ybFFQxC\",name:\"RZ4b05Aqe\",type:\"Identifier\"}});const query11=prequery=>prequery({from:{alias:\"JHVL17uGu\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:11},select:[{collection:\"JHVL17uGu\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"JHVL17uGu\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"JHVL17uGu\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"JHVL17uGu\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"JHVL17uGu\",name:\"id\",type:\"Identifier\"}],where:{collection:\"JHVL17uGu\",name:\"RZ4b05Aqe\",type:\"Identifier\"}});const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"M\\xfcnchen\":\"f0N8ckJw1\",Alle:\"NHpjLmPQL\",Design:\"wrimxPpDq\",Interview:\"tF_iKNQiQ\",People:\"s_Se9YxgU\",Reisen:\"KXld_4YQn\"};const getProps=({click,click2,height,id,width,...props})=>{return{...props,D06xkLXgW:click2??props.D06xkLXgW,TLMtpFVQr:click??props.TLMtpFVQr,variant:humanReadableVariantMap[props.variant]??props.variant??\"NHpjLmPQL\"};};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,TLMtpFVQr,D06xkLXgW,uulcserP6Oxffzh5IR,vaSY19i4POxffzh5IR,GSEMEwnpzOxffzh5IR,SNzXc9qW1Oxffzh5IR,idOxffzh5IR,uulcserP6gcvX5FL6q,vaSY19i4PgcvX5FL6q,GSEMEwnpzgcvX5FL6q,SNzXc9qW1gcvX5FL6q,idgcvX5FL6q,uulcserP6xMhoQIa95,vaSY19i4PxMhoQIa95,GSEMEwnpzxMhoQIa95,SNzXc9qW1xMhoQIa95,idxMhoQIa95,uulcserP6z2eGN4FG9,vaSY19i4Pz2eGN4FG9,GSEMEwnpzz2eGN4FG9,SNzXc9qW1z2eGN4FG9,idz2eGN4FG9,uulcserP6V_zjexuvv,vaSY19i4PV_zjexuvv,GSEMEwnpzV_zjexuvv,SNzXc9qW1V_zjexuvv,idV_zjexuvv,uulcserP6gUEVkbrbD,vaSY19i4PgUEVkbrbD,GSEMEwnpzgUEVkbrbD,SNzXc9qW1gUEVkbrbD,idgUEVkbrbD,uulcserP6dBuAlyFSj,vaSY19i4PdBuAlyFSj,GSEMEwnpzdBuAlyFSj,SNzXc9qW1dBuAlyFSj,iddBuAlyFSj,uulcserP6ewisNTJUE,vaSY19i4PewisNTJUE,GSEMEwnpzewisNTJUE,SNzXc9qW1ewisNTJUE,idewisNTJUE,uulcserP6KAmoelhI9,vaSY19i4PKAmoelhI9,GSEMEwnpzKAmoelhI9,SNzXc9qW1KAmoelhI9,idKAmoelhI9,uulcserP6qEb4REq79,vaSY19i4PqEb4REq79,GSEMEwnpzqEb4REq79,SNzXc9qW1qEb4REq79,idqEb4REq79,uulcserP6p5ybFFQxC,vaSY19i4Pp5ybFFQxC,GSEMEwnpzp5ybFFQxC,SNzXc9qW1p5ybFFQxC,idp5ybFFQxC,uulcserP6JHVL17uGu,vaSY19i4PJHVL17uGu,GSEMEwnpzJHVL17uGu,SNzXc9qW1JHVL17uGu,idJHVL17uGu,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NHpjLmPQL\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const iHVTyAHVh1hq95ej=activeVariantCallback(async(...args)=>{setVariant(\"NHpjLmPQL\");});const iHVTyAHVh1a83ber=activeVariantCallback(async(...args)=>{if(TLMtpFVQr){const res=await TLMtpFVQr(...args);if(res===false)return false;}setVariant(\"tF_iKNQiQ\");});const iHVTyAHVh15kyhcx=activeVariantCallback(async(...args)=>{if(D06xkLXgW){const res=await D06xkLXgW(...args);if(res===false)return false;}setVariant(\"KXld_4YQn\");});const iHVTyAHVhva3bsa=activeVariantCallback(async(...args)=>{setVariant(\"s_Se9YxgU\");});const iHVTyAHVhxwyim9=activeVariantCallback(async(...args)=>{setVariant(\"wrimxPpDq\");});const iHVTyAHVh1evd3d4=activeVariantCallback(async(...args)=>{setVariant(\"f0N8ckJw1\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"tF_iKNQiQ\",\"KXld_4YQn\",\"s_Se9YxgU\",\"f0N8ckJw1\",\"wrimxPpDq\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(baseVariant===\"tF_iKNQiQ\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"KXld_4YQn\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"s_Se9YxgU\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"f0N8ckJw1\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"wrimxPpDq\")return true;return false;};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-x9dqjv\",className,classNames),\"data-framer-name\":\"Alle\",layoutDependency:layoutDependency,layoutId:\"NHpjLmPQL\",ref:refBinding,style:{...style},...addPropertyOverrides({f0N8ckJw1:{\"data-framer-name\":\"M\\xfcnchen\"},KXld_4YQn:{\"data-framer-name\":\"Reisen\"},s_Se9YxgU:{\"data-framer-name\":\"People\"},tF_iKNQiQ:{\"data-framer-name\":\"Interview\"},wrimxPpDq:{\"data-framer-name\":\"Design\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iw0531\",\"data-framer-name\":\"CATEGORY\",layoutDependency:layoutDependency,layoutId:\"F704CDllB\",children:/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-11i27ay\",\"data-framer-name\":\"Topbar\",layoutDependency:layoutDependency,layoutId:\"T0fAqv3Jk\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16n4vbh\",\"data-framer-name\":\"Links\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"x0wP2VGah\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+(((componentViewport?.height||501)-0-266)/2+0+0)+0+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-swbbi0-container\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"Dr8yaXviP-container\",name:\"Button\",nodeId:\"Dr8yaXviP\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(ButtonCopy,{cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"Dr8yaXviP\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"Dr8yaXviP\",name:\"Button\",tQqXqVioD:false,TTxnyLF_5:\"Alle\",variant:\"LJN0veolz\",VqIbSwMW5:0,width:\"100%\",...addPropertyOverrides({f0N8ckJw1:{iHVTyAHVh:iHVTyAHVh1hq95ej,variant:\"ZK7WlGRjq\"},KXld_4YQn:{iHVTyAHVh:iHVTyAHVh1hq95ej,variant:\"ZK7WlGRjq\"},s_Se9YxgU:{iHVTyAHVh:iHVTyAHVh1hq95ej,variant:\"ZK7WlGRjq\"},tF_iKNQiQ:{iHVTyAHVh:iHVTyAHVh1hq95ej,variant:\"ZK7WlGRjq\"},wrimxPpDq:{iHVTyAHVh:iHVTyAHVh1hq95ej,variant:\"ZK7WlGRjq\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+(((componentViewport?.height||501)-0-266)/2+0+0)+0+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xhuruf-container\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"PS6DFL3W6-container\",name:\"Button\",nodeId:\"PS6DFL3W6\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(ButtonCopy,{cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"PS6DFL3W6\",iHVTyAHVh:iHVTyAHVh1a83ber,IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"PS6DFL3W6\",name:\"Button\",tQqXqVioD:false,TTxnyLF_5:\"Interview\",variant:\"ZK7WlGRjq\",VqIbSwMW5:8,width:\"100%\",...addPropertyOverrides({tF_iKNQiQ:{variant:\"LJN0veolz\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+(((componentViewport?.height||501)-0-266)/2+0+0)+0+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-85ft77-container\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"Zo7apI5AP-container\",name:\"Button\",nodeId:\"Zo7apI5AP\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(ButtonCopy,{cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"Zo7apI5AP\",iHVTyAHVh:iHVTyAHVh15kyhcx,IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"Zo7apI5AP\",name:\"Button\",tQqXqVioD:false,TTxnyLF_5:\"Reisen\",variant:\"ZK7WlGRjq\",VqIbSwMW5:8,width:\"100%\",...addPropertyOverrides({KXld_4YQn:{variant:\"LJN0veolz\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+(((componentViewport?.height||501)-0-266)/2+0+0)+0+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o3k80n-container\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"O7oI7HaqV-container\",name:\"Button\",nodeId:\"O7oI7HaqV\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(ButtonCopy,{cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"O7oI7HaqV\",iHVTyAHVh:iHVTyAHVhva3bsa,IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"O7oI7HaqV\",name:\"Button\",tQqXqVioD:false,TTxnyLF_5:\"People\",variant:\"ZK7WlGRjq\",VqIbSwMW5:8,width:\"100%\",...addPropertyOverrides({s_Se9YxgU:{variant:\"LJN0veolz\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+(((componentViewport?.height||501)-0-266)/2+0+0)+0+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10m6xjw-container\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"wVs5Ac6tx-container\",name:\"Button\",nodeId:\"wVs5Ac6tx\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(ButtonCopy,{cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"wVs5Ac6tx\",iHVTyAHVh:iHVTyAHVhxwyim9,IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"wVs5Ac6tx\",name:\"Button\",tQqXqVioD:false,TTxnyLF_5:\"Design\",variant:\"ZK7WlGRjq\",VqIbSwMW5:8,width:\"100%\",...addPropertyOverrides({wrimxPpDq:{variant:\"LJN0veolz\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+(((componentViewport?.height||501)-0-266)/2+0+0)+0+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1owy37f-container\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"lqDH4G8rP-container\",name:\"Button\",nodeId:\"lqDH4G8rP\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(ButtonCopy,{cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"lqDH4G8rP\",iHVTyAHVh:iHVTyAHVh1evd3d4,IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"lqDH4G8rP\",name:\"Button\",tQqXqVioD:false,TTxnyLF_5:\"M\\xfcnchen\",variant:\"ZK7WlGRjq\",VqIbSwMW5:8,width:\"100%\",...addPropertyOverrides({f0N8ckJw1:{variant:\"LJN0veolz\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d38r1o\",\"data-framer-name\":\"Padding\",layoutDependency:layoutDependency,layoutId:\"w8eOL6uCT\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9kiuqo\",layoutDependency:layoutDependency,layoutId:\"jj1HNJ5QF\"})]})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-r5uyg5-container\",\"data-framer-name\":\"All\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"E31GP1tO8-container\",name:\"All\",nodeId:\"E31GP1tO8\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\",arrowPadding:25,arrowRadius:100,arrowSize:35,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:25,height:\"100%\",id:\"E31GP1tO8\",layoutId:\"E31GP1tO8\",name:\"All\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, rgb(160, 160, 160))\",dotsBlur:0,dotsFill:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:3,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-85ghpc\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"Oxffzh5IR\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Oxffzh5IR\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"Oxffzh5IR\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"Oxffzh5IR\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"Oxffzh5IR\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"Oxffzh5IR\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"Oxffzh5IR\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Oxffzh5IR\",name:\"RZ4b05Aqe\",type:\"Identifier\"},operator:\"and\",right:{conditions:[{then:{type:\"LiteralValue\",value:true},type:\"Condition\",when:{type:\"LiteralValue\",value:\"XZXJSyzjL\"}}],else:{type:\"LiteralValue\",value:true},type:\"Case\",value:{collection:\"Oxffzh5IR\",name:\"SNzXc9qW1\",type:\"Identifier\"}},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({GSEMEwnpz:GSEMEwnpzOxffzh5IR,id:idOxffzh5IR,SNzXc9qW1:SNzXc9qW1Oxffzh5IR,uulcserP6:uulcserP6Oxffzh5IR,vaSY19i4P:vaSY19i4POxffzh5IR},index)=>{uulcserP6Oxffzh5IR??=\"\";vaSY19i4POxffzh5IR??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Oxffzh5IR-${idOxffzh5IR}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6Oxffzh5IR},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6Oxffzh5IR},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ld8vnu-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"wa3Nz0t1x-container\",nodeId:\"wa3Nz0t1x\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzOxffzh5IR),height:\"100%\",I8p0dzc3B:resolvedLinks[0],id:\"wa3Nz0t1x\",jlJ8s0aqJ:vaSY19i4POxffzh5IR,layoutId:\"wa3Nz0t1x\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1Oxffzh5IR,activeLocale),width:\"100%\"})})})})})},idOxffzh5IR);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mou3de\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"gcvX5FL6q\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"gcvX5FL6q\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"gcvX5FL6q\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"gcvX5FL6q\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"gcvX5FL6q\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"gcvX5FL6q\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"gcvX5FL6q\",name:\"id\",type:\"Identifier\"}],where:{collection:\"gcvX5FL6q\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({GSEMEwnpz:GSEMEwnpzgcvX5FL6q,id:idgcvX5FL6q,SNzXc9qW1:SNzXc9qW1gcvX5FL6q,uulcserP6:uulcserP6gcvX5FL6q,vaSY19i4P:vaSY19i4PgcvX5FL6q},index1)=>{uulcserP6gcvX5FL6q??=\"\";vaSY19i4PgcvX5FL6q??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`gcvX5FL6q-${idgcvX5FL6q}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6gcvX5FL6q},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6gcvX5FL6q},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jxi6sb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"of1PQaDGb-container\",nodeId:\"of1PQaDGb\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzgcvX5FL6q),height:\"100%\",I8p0dzc3B:resolvedLinks1[0],id:\"of1PQaDGb\",jlJ8s0aqJ:vaSY19i4PgcvX5FL6q,layoutId:\"of1PQaDGb\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1gcvX5FL6q,activeLocale),width:\"100%\"})})})})})},idgcvX5FL6q);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ccsfka\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"xMhoQIa95\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"xMhoQIa95\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"xMhoQIa95\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"xMhoQIa95\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"xMhoQIa95\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"xMhoQIa95\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"xMhoQIa95\",name:\"id\",type:\"Identifier\"}],where:{collection:\"xMhoQIa95\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({GSEMEwnpz:GSEMEwnpzxMhoQIa95,id:idxMhoQIa95,SNzXc9qW1:SNzXc9qW1xMhoQIa95,uulcserP6:uulcserP6xMhoQIa95,vaSY19i4P:vaSY19i4PxMhoQIa95},index2)=>{uulcserP6xMhoQIa95??=\"\";vaSY19i4PxMhoQIa95??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`xMhoQIa95-${idxMhoQIa95}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6xMhoQIa95},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6xMhoQIa95},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dqhirj-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Q8ZZLPaKp-container\",nodeId:\"Q8ZZLPaKp\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzxMhoQIa95),height:\"100%\",I8p0dzc3B:resolvedLinks2[0],id:\"Q8ZZLPaKp\",jlJ8s0aqJ:vaSY19i4PxMhoQIa95,layoutId:\"Q8ZZLPaKp\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1xMhoQIa95,activeLocale),width:\"100%\"})})})})})},idxMhoQIa95);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mzlgrj\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"z2eGN4FG9\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"z2eGN4FG9\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"z2eGN4FG9\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"z2eGN4FG9\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"z2eGN4FG9\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"z2eGN4FG9\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"z2eGN4FG9\",name:\"id\",type:\"Identifier\"}],where:{collection:\"z2eGN4FG9\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({GSEMEwnpz:GSEMEwnpzz2eGN4FG9,id:idz2eGN4FG9,SNzXc9qW1:SNzXc9qW1z2eGN4FG9,uulcserP6:uulcserP6z2eGN4FG9,vaSY19i4P:vaSY19i4Pz2eGN4FG9},index3)=>{uulcserP6z2eGN4FG9??=\"\";vaSY19i4Pz2eGN4FG9??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`z2eGN4FG9-${idz2eGN4FG9}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6z2eGN4FG9},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6z2eGN4FG9},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fcdxav-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"oaPD57trW-container\",nodeId:\"oaPD57trW\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzz2eGN4FG9),height:\"100%\",I8p0dzc3B:resolvedLinks3[0],id:\"oaPD57trW\",jlJ8s0aqJ:vaSY19i4Pz2eGN4FG9,layoutId:\"oaPD57trW\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1z2eGN4FG9,activeLocale),width:\"100%\"})})})})})},idz2eGN4FG9);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vcin0b\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"V_zjexuvv\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"V_zjexuvv\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"V_zjexuvv\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"V_zjexuvv\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"V_zjexuvv\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"V_zjexuvv\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"V_zjexuvv\",name:\"id\",type:\"Identifier\"}],where:{collection:\"V_zjexuvv\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({GSEMEwnpz:GSEMEwnpzV_zjexuvv,id:idV_zjexuvv,SNzXc9qW1:SNzXc9qW1V_zjexuvv,uulcserP6:uulcserP6V_zjexuvv,vaSY19i4P:vaSY19i4PV_zjexuvv},index4)=>{uulcserP6V_zjexuvv??=\"\";vaSY19i4PV_zjexuvv??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`V_zjexuvv-${idV_zjexuvv}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6V_zjexuvv},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6V_zjexuvv},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t4i8vn-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"bAOPAMOOP-container\",nodeId:\"bAOPAMOOP\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzV_zjexuvv),height:\"100%\",I8p0dzc3B:resolvedLinks4[0],id:\"bAOPAMOOP\",jlJ8s0aqJ:vaSY19i4PV_zjexuvv,layoutId:\"bAOPAMOOP\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1V_zjexuvv,activeLocale),width:\"100%\"})})})})})},idV_zjexuvv);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xgi0nf\",\"data-framer-name\":\"6\",layoutDependency:layoutDependency,layoutId:\"gUEVkbrbD\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"gUEVkbrbD\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"gUEVkbrbD\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"gUEVkbrbD\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"gUEVkbrbD\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"gUEVkbrbD\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"gUEVkbrbD\",name:\"id\",type:\"Identifier\"}],where:{collection:\"gUEVkbrbD\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({GSEMEwnpz:GSEMEwnpzgUEVkbrbD,id:idgUEVkbrbD,SNzXc9qW1:SNzXc9qW1gUEVkbrbD,uulcserP6:uulcserP6gUEVkbrbD,vaSY19i4P:vaSY19i4PgUEVkbrbD},index5)=>{uulcserP6gUEVkbrbD??=\"\";vaSY19i4PgUEVkbrbD??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`gUEVkbrbD-${idgUEVkbrbD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6gUEVkbrbD},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6gUEVkbrbD},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kt4rus-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Sv2b1vehs-container\",nodeId:\"Sv2b1vehs\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzgUEVkbrbD),height:\"100%\",I8p0dzc3B:resolvedLinks5[0],id:\"Sv2b1vehs\",jlJ8s0aqJ:vaSY19i4PgUEVkbrbD,layoutId:\"Sv2b1vehs\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1gUEVkbrbD,activeLocale),width:\"100%\"})})})})})},idgUEVkbrbD);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ccsfka\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"xMhoQIa95\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"xMhoQIa95\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"xMhoQIa95\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"xMhoQIa95\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"xMhoQIa95\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"xMhoQIa95\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"xMhoQIa95\",name:\"id\",type:\"Identifier\"}],where:{collection:\"xMhoQIa95\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({GSEMEwnpz:GSEMEwnpzxMhoQIa95,id:idxMhoQIa95,SNzXc9qW1:SNzXc9qW1xMhoQIa95,uulcserP6:uulcserP6xMhoQIa95,vaSY19i4P:vaSY19i4PxMhoQIa95},index6)=>{uulcserP6xMhoQIa95??=\"\";vaSY19i4PxMhoQIa95??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`xMhoQIa95-${idxMhoQIa95}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6xMhoQIa95},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6xMhoQIa95},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6xMhoQIa95},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dqhirj-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Q8ZZLPaKp-container\",nodeId:\"Q8ZZLPaKp\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzxMhoQIa95),height:\"100%\",I8p0dzc3B:resolvedLinks2[1],id:\"Q8ZZLPaKp\",jlJ8s0aqJ:vaSY19i4PxMhoQIa95,layoutId:\"Q8ZZLPaKp\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1xMhoQIa95,activeLocale),width:\"100%\"})})})})})},idxMhoQIa95);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x2t43e\",\"data-framer-name\":\"7\",layoutDependency:layoutDependency,layoutId:\"dBuAlyFSj\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"dBuAlyFSj\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:6},select:[{collection:\"dBuAlyFSj\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"dBuAlyFSj\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"dBuAlyFSj\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"dBuAlyFSj\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"dBuAlyFSj\",name:\"id\",type:\"Identifier\"}],where:{collection:\"dBuAlyFSj\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({GSEMEwnpz:GSEMEwnpzdBuAlyFSj,id:iddBuAlyFSj,SNzXc9qW1:SNzXc9qW1dBuAlyFSj,uulcserP6:uulcserP6dBuAlyFSj,vaSY19i4P:vaSY19i4PdBuAlyFSj},index7)=>{uulcserP6dBuAlyFSj??=\"\";vaSY19i4PdBuAlyFSj??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`dBuAlyFSj-${iddBuAlyFSj}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6dBuAlyFSj},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6dBuAlyFSj},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5irgz1-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"k91KYm3xD-container\",nodeId:\"k91KYm3xD\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzdBuAlyFSj),height:\"100%\",I8p0dzc3B:resolvedLinks6[0],id:\"k91KYm3xD\",jlJ8s0aqJ:vaSY19i4PdBuAlyFSj,layoutId:\"k91KYm3xD\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1dBuAlyFSj,activeLocale),width:\"100%\"})})})})})},iddBuAlyFSj);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e7mp7v\",\"data-framer-name\":\"8\",layoutDependency:layoutDependency,layoutId:\"ewisNTJUE\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ewisNTJUE\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:7},select:[{collection:\"ewisNTJUE\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"ewisNTJUE\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"ewisNTJUE\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"ewisNTJUE\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"ewisNTJUE\",name:\"id\",type:\"Identifier\"}],where:{collection:\"ewisNTJUE\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({GSEMEwnpz:GSEMEwnpzewisNTJUE,id:idewisNTJUE,SNzXc9qW1:SNzXc9qW1ewisNTJUE,uulcserP6:uulcserP6ewisNTJUE,vaSY19i4P:vaSY19i4PewisNTJUE},index8)=>{uulcserP6ewisNTJUE??=\"\";vaSY19i4PewisNTJUE??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ewisNTJUE-${idewisNTJUE}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6ewisNTJUE},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6ewisNTJUE},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-a1mjne-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ARqJizUmv-container\",nodeId:\"ARqJizUmv\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzewisNTJUE),height:\"100%\",I8p0dzc3B:resolvedLinks7[0],id:\"ARqJizUmv\",jlJ8s0aqJ:vaSY19i4PewisNTJUE,layoutId:\"ARqJizUmv\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1ewisNTJUE,activeLocale),width:\"100%\"})})})})})},idewisNTJUE);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rscgln\",\"data-framer-name\":\"9\",layoutDependency:layoutDependency,layoutId:\"KAmoelhI9\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"KAmoelhI9\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:8},select:[{collection:\"KAmoelhI9\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"KAmoelhI9\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"KAmoelhI9\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"KAmoelhI9\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"KAmoelhI9\",name:\"id\",type:\"Identifier\"}],where:{collection:\"KAmoelhI9\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({GSEMEwnpz:GSEMEwnpzKAmoelhI9,id:idKAmoelhI9,SNzXc9qW1:SNzXc9qW1KAmoelhI9,uulcserP6:uulcserP6KAmoelhI9,vaSY19i4P:vaSY19i4PKAmoelhI9},index9)=>{uulcserP6KAmoelhI9??=\"\";vaSY19i4PKAmoelhI9??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`KAmoelhI9-${idKAmoelhI9}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6KAmoelhI9},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6KAmoelhI9},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kmzc4l-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"YtdCgB7B3-container\",nodeId:\"YtdCgB7B3\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzKAmoelhI9),height:\"100%\",I8p0dzc3B:resolvedLinks8[0],id:\"YtdCgB7B3\",jlJ8s0aqJ:vaSY19i4PKAmoelhI9,layoutId:\"YtdCgB7B3\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1KAmoelhI9,activeLocale),width:\"100%\"})})})})})},idKAmoelhI9);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kuhz7r\",\"data-framer-name\":\"10\",layoutDependency:layoutDependency,layoutId:\"qEb4REq79\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"qEb4REq79\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:9},select:[{collection:\"qEb4REq79\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"qEb4REq79\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"qEb4REq79\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"qEb4REq79\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"qEb4REq79\",name:\"id\",type:\"Identifier\"}],where:{collection:\"qEb4REq79\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection9,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9?.map(({GSEMEwnpz:GSEMEwnpzqEb4REq79,id:idqEb4REq79,SNzXc9qW1:SNzXc9qW1qEb4REq79,uulcserP6:uulcserP6qEb4REq79,vaSY19i4P:vaSY19i4PqEb4REq79},index10)=>{uulcserP6qEb4REq79??=\"\";vaSY19i4PqEb4REq79??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`qEb4REq79-${idqEb4REq79}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6qEb4REq79},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6qEb4REq79},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rmutwx-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"etSlQHUHR-container\",nodeId:\"etSlQHUHR\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzqEb4REq79),height:\"100%\",I8p0dzc3B:resolvedLinks9[0],id:\"etSlQHUHR\",jlJ8s0aqJ:vaSY19i4PqEb4REq79,layoutId:\"etSlQHUHR\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1qEb4REq79,activeLocale),width:\"100%\"})})})})})},idqEb4REq79);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aroazv\",\"data-framer-name\":\"Padding\",layoutDependency:layoutDependency,layoutId:\"fbS0DYGhm\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-58eikp-container\",\"data-framer-name\":\"Interview\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"K7H4zAImS-container\",name:\"Interview\",nodeId:\"K7H4zAImS\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\",arrowPadding:25,arrowRadius:100,arrowSize:35,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:25,height:\"100%\",id:\"K7H4zAImS\",layoutId:\"K7H4zAImS\",name:\"Interview\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, rgb(160, 160, 160))\",dotsBlur:0,dotsFill:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:3,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mzlgrj\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"z2eGN4FG9\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"z2eGN4FG9\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"z2eGN4FG9\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"z2eGN4FG9\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"z2eGN4FG9\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"z2eGN4FG9\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"z2eGN4FG9\",name:\"id\",type:\"Identifier\"}],where:{collection:\"z2eGN4FG9\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({GSEMEwnpz:GSEMEwnpzz2eGN4FG9,id:idz2eGN4FG9,SNzXc9qW1:SNzXc9qW1z2eGN4FG9,uulcserP6:uulcserP6z2eGN4FG9,vaSY19i4P:vaSY19i4Pz2eGN4FG9},index11)=>{uulcserP6z2eGN4FG9??=\"\";vaSY19i4Pz2eGN4FG9??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`z2eGN4FG9-${idz2eGN4FG9}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6z2eGN4FG9},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6z2eGN4FG9},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6z2eGN4FG9},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fcdxav-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"oaPD57trW-container\",nodeId:\"oaPD57trW\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzz2eGN4FG9),height:\"100%\",I8p0dzc3B:resolvedLinks3[1],id:\"oaPD57trW\",jlJ8s0aqJ:vaSY19i4Pz2eGN4FG9,layoutId:\"oaPD57trW\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1z2eGN4FG9,activeLocale),width:\"100%\"})})})})})},idz2eGN4FG9);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xgi0nf\",\"data-framer-name\":\"6\",layoutDependency:layoutDependency,layoutId:\"gUEVkbrbD\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"gUEVkbrbD\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"gUEVkbrbD\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"gUEVkbrbD\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"gUEVkbrbD\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"gUEVkbrbD\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"gUEVkbrbD\",name:\"id\",type:\"Identifier\"}],where:{collection:\"gUEVkbrbD\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({GSEMEwnpz:GSEMEwnpzgUEVkbrbD,id:idgUEVkbrbD,SNzXc9qW1:SNzXc9qW1gUEVkbrbD,uulcserP6:uulcserP6gUEVkbrbD,vaSY19i4P:vaSY19i4PgUEVkbrbD},index12)=>{uulcserP6gUEVkbrbD??=\"\";vaSY19i4PgUEVkbrbD??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`gUEVkbrbD-${idgUEVkbrbD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6gUEVkbrbD},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6gUEVkbrbD},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6gUEVkbrbD},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kt4rus-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Sv2b1vehs-container\",nodeId:\"Sv2b1vehs\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzgUEVkbrbD),height:\"100%\",I8p0dzc3B:resolvedLinks5[1],id:\"Sv2b1vehs\",jlJ8s0aqJ:vaSY19i4PgUEVkbrbD,layoutId:\"Sv2b1vehs\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1gUEVkbrbD,activeLocale),width:\"100%\"})})})})})},idgUEVkbrbD);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rscgln\",\"data-framer-name\":\"9\",layoutDependency:layoutDependency,layoutId:\"KAmoelhI9\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"KAmoelhI9\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:8},select:[{collection:\"KAmoelhI9\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"KAmoelhI9\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"KAmoelhI9\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"KAmoelhI9\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"KAmoelhI9\",name:\"id\",type:\"Identifier\"}],where:{collection:\"KAmoelhI9\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({GSEMEwnpz:GSEMEwnpzKAmoelhI9,id:idKAmoelhI9,SNzXc9qW1:SNzXc9qW1KAmoelhI9,uulcserP6:uulcserP6KAmoelhI9,vaSY19i4P:vaSY19i4PKAmoelhI9},index13)=>{uulcserP6KAmoelhI9??=\"\";vaSY19i4PKAmoelhI9??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`KAmoelhI9-${idKAmoelhI9}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6KAmoelhI9},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6KAmoelhI9},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6KAmoelhI9},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kmzc4l-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"YtdCgB7B3-container\",nodeId:\"YtdCgB7B3\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzKAmoelhI9),height:\"100%\",I8p0dzc3B:resolvedLinks8[1],id:\"YtdCgB7B3\",jlJ8s0aqJ:vaSY19i4PKAmoelhI9,layoutId:\"YtdCgB7B3\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1KAmoelhI9,activeLocale),width:\"100%\"})})})})})},idKAmoelhI9);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-96qr4\",\"data-framer-name\":\"11\",layoutDependency:layoutDependency,layoutId:\"p5ybFFQxC\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"p5ybFFQxC\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:10},select:[{collection:\"p5ybFFQxC\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"p5ybFFQxC\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"p5ybFFQxC\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"p5ybFFQxC\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"p5ybFFQxC\",name:\"id\",type:\"Identifier\"}],where:{collection:\"p5ybFFQxC\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection10,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection10?.map(({GSEMEwnpz:GSEMEwnpzp5ybFFQxC,id:idp5ybFFQxC,SNzXc9qW1:SNzXc9qW1p5ybFFQxC,uulcserP6:uulcserP6p5ybFFQxC,vaSY19i4P:vaSY19i4Pp5ybFFQxC},index14)=>{uulcserP6p5ybFFQxC??=\"\";vaSY19i4Pp5ybFFQxC??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`p5ybFFQxC-${idp5ybFFQxC}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6p5ybFFQxC},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6p5ybFFQxC},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ycgwbd-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"RD_hKbfpT-container\",nodeId:\"RD_hKbfpT\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzp5ybFFQxC),height:\"100%\",I8p0dzc3B:resolvedLinks10[0],id:\"RD_hKbfpT\",jlJ8s0aqJ:vaSY19i4Pp5ybFFQxC,layoutId:\"RD_hKbfpT\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1p5ybFFQxC,activeLocale),width:\"100%\"})})})})})},idp5ybFFQxC);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aroazv\",\"data-framer-name\":\"Padding\",layoutDependency:layoutDependency,layoutId:\"fbS0DYGhm\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m1o4vo-container\",\"data-framer-name\":\"Travel\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WQBWZb3UX-container\",name:\"Travel\",nodeId:\"WQBWZb3UX\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\",arrowPadding:25,arrowRadius:100,arrowSize:35,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:25,height:\"100%\",id:\"WQBWZb3UX\",layoutId:\"WQBWZb3UX\",name:\"Travel\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, rgb(160, 160, 160))\",dotsBlur:0,dotsFill:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:3,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mou3de\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"gcvX5FL6q\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"gcvX5FL6q\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"gcvX5FL6q\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"gcvX5FL6q\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"gcvX5FL6q\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"gcvX5FL6q\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"gcvX5FL6q\",name:\"id\",type:\"Identifier\"}],where:{collection:\"gcvX5FL6q\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({GSEMEwnpz:GSEMEwnpzgcvX5FL6q,id:idgcvX5FL6q,SNzXc9qW1:SNzXc9qW1gcvX5FL6q,uulcserP6:uulcserP6gcvX5FL6q,vaSY19i4P:vaSY19i4PgcvX5FL6q},index15)=>{uulcserP6gcvX5FL6q??=\"\";vaSY19i4PgcvX5FL6q??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`gcvX5FL6q-${idgcvX5FL6q}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6gcvX5FL6q},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6gcvX5FL6q},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6gcvX5FL6q},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jxi6sb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"of1PQaDGb-container\",nodeId:\"of1PQaDGb\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzgcvX5FL6q),height:\"100%\",I8p0dzc3B:resolvedLinks1[1],id:\"of1PQaDGb\",jlJ8s0aqJ:vaSY19i4PgcvX5FL6q,layoutId:\"of1PQaDGb\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1gcvX5FL6q,activeLocale),width:\"100%\"})})})})})},idgcvX5FL6q);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x2t43e\",\"data-framer-name\":\"7\",layoutDependency:layoutDependency,layoutId:\"dBuAlyFSj\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"dBuAlyFSj\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:6},select:[{collection:\"dBuAlyFSj\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"dBuAlyFSj\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"dBuAlyFSj\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"dBuAlyFSj\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"dBuAlyFSj\",name:\"id\",type:\"Identifier\"}],where:{collection:\"dBuAlyFSj\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({GSEMEwnpz:GSEMEwnpzdBuAlyFSj,id:iddBuAlyFSj,SNzXc9qW1:SNzXc9qW1dBuAlyFSj,uulcserP6:uulcserP6dBuAlyFSj,vaSY19i4P:vaSY19i4PdBuAlyFSj},index16)=>{uulcserP6dBuAlyFSj??=\"\";vaSY19i4PdBuAlyFSj??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`dBuAlyFSj-${iddBuAlyFSj}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6dBuAlyFSj},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6dBuAlyFSj},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6dBuAlyFSj},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5irgz1-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"k91KYm3xD-container\",nodeId:\"k91KYm3xD\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzdBuAlyFSj),height:\"100%\",I8p0dzc3B:resolvedLinks6[1],id:\"k91KYm3xD\",jlJ8s0aqJ:vaSY19i4PdBuAlyFSj,layoutId:\"k91KYm3xD\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1dBuAlyFSj,activeLocale),width:\"100%\"})})})})})},iddBuAlyFSj);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kuhz7r\",\"data-framer-name\":\"10\",layoutDependency:layoutDependency,layoutId:\"qEb4REq79\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"qEb4REq79\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:9},select:[{collection:\"qEb4REq79\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"qEb4REq79\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"qEb4REq79\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"qEb4REq79\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"qEb4REq79\",name:\"id\",type:\"Identifier\"}],where:{collection:\"qEb4REq79\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection9,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9?.map(({GSEMEwnpz:GSEMEwnpzqEb4REq79,id:idqEb4REq79,SNzXc9qW1:SNzXc9qW1qEb4REq79,uulcserP6:uulcserP6qEb4REq79,vaSY19i4P:vaSY19i4PqEb4REq79},index17)=>{uulcserP6qEb4REq79??=\"\";vaSY19i4PqEb4REq79??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`qEb4REq79-${idqEb4REq79}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6qEb4REq79},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6qEb4REq79},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6qEb4REq79},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rmutwx-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"etSlQHUHR-container\",nodeId:\"etSlQHUHR\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzqEb4REq79),height:\"100%\",I8p0dzc3B:resolvedLinks9[1],id:\"etSlQHUHR\",jlJ8s0aqJ:vaSY19i4PqEb4REq79,layoutId:\"etSlQHUHR\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1qEb4REq79,activeLocale),width:\"100%\"})})})})})},idqEb4REq79);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aroazv\",\"data-framer-name\":\"Padding\",layoutDependency:layoutDependency,layoutId:\"fbS0DYGhm\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e6kmyv-container\",\"data-framer-name\":\"People\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dZqPFDoNc-container\",name:\"People\",nodeId:\"dZqPFDoNc\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\",arrowPadding:25,arrowRadius:100,arrowSize:35,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:25,height:\"100%\",id:\"dZqPFDoNc\",layoutId:\"dZqPFDoNc\",name:\"People\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, rgb(160, 160, 160))\",dotsBlur:0,dotsFill:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:3,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ccsfka\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"xMhoQIa95\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"xMhoQIa95\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"xMhoQIa95\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"xMhoQIa95\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"xMhoQIa95\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"xMhoQIa95\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"xMhoQIa95\",name:\"id\",type:\"Identifier\"}],where:{collection:\"xMhoQIa95\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({GSEMEwnpz:GSEMEwnpzxMhoQIa95,id:idxMhoQIa95,SNzXc9qW1:SNzXc9qW1xMhoQIa95,uulcserP6:uulcserP6xMhoQIa95,vaSY19i4P:vaSY19i4PxMhoQIa95},index18)=>{uulcserP6xMhoQIa95??=\"\";vaSY19i4PxMhoQIa95??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`xMhoQIa95-${idxMhoQIa95}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6xMhoQIa95},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6xMhoQIa95},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6xMhoQIa95},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6xMhoQIa95},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dqhirj-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Q8ZZLPaKp-container\",nodeId:\"Q8ZZLPaKp\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzxMhoQIa95),height:\"100%\",I8p0dzc3B:resolvedLinks2[2],id:\"Q8ZZLPaKp\",jlJ8s0aqJ:vaSY19i4PxMhoQIa95,layoutId:\"Q8ZZLPaKp\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1xMhoQIa95,activeLocale),width:\"100%\"})})})})})},idxMhoQIa95);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2z9yp3\",\"data-framer-name\":\"12\",layoutDependency:layoutDependency,layoutId:\"JHVL17uGu\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JHVL17uGu\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:11},select:[{collection:\"JHVL17uGu\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"JHVL17uGu\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"JHVL17uGu\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"JHVL17uGu\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"JHVL17uGu\",name:\"id\",type:\"Identifier\"}],where:{collection:\"JHVL17uGu\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection11,paginationInfo11,loadMore11)=>/*#__PURE__*/_jsx(_Fragment,{children:collection11?.map(({GSEMEwnpz:GSEMEwnpzJHVL17uGu,id:idJHVL17uGu,SNzXc9qW1:SNzXc9qW1JHVL17uGu,uulcserP6:uulcserP6JHVL17uGu,vaSY19i4P:vaSY19i4PJHVL17uGu},index19)=>{uulcserP6JHVL17uGu??=\"\";vaSY19i4PJHVL17uGu??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JHVL17uGu-${idJHVL17uGu}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6JHVL17uGu},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6JHVL17uGu},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wt8va4-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"cyKR3jHT8-container\",nodeId:\"cyKR3jHT8\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzJHVL17uGu),height:\"100%\",I8p0dzc3B:resolvedLinks11[0],id:\"cyKR3jHT8\",jlJ8s0aqJ:vaSY19i4PJHVL17uGu,layoutId:\"cyKR3jHT8\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1JHVL17uGu,activeLocale),width:\"100%\"})})})})})},idJHVL17uGu);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aroazv\",\"data-framer-name\":\"Padding\",layoutDependency:layoutDependency,layoutId:\"fbS0DYGhm\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hdykry-container\",\"data-framer-name\":\"M\\xfcnchen\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ksylyMRtr-container\",name:\"M\\xfcnchen\",nodeId:\"ksylyMRtr\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\",arrowPadding:25,arrowRadius:100,arrowSize:35,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:25,height:\"100%\",id:\"ksylyMRtr\",layoutId:\"ksylyMRtr\",name:\"M\\xfcnchen\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, rgb(160, 160, 160))\",dotsBlur:0,dotsFill:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:3,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vcin0b\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"V_zjexuvv\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"V_zjexuvv\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"V_zjexuvv\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"V_zjexuvv\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"V_zjexuvv\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"V_zjexuvv\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"V_zjexuvv\",name:\"id\",type:\"Identifier\"}],where:{collection:\"V_zjexuvv\",name:\"RZ4b05Aqe\",type:\"Identifier\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({GSEMEwnpz:GSEMEwnpzV_zjexuvv,id:idV_zjexuvv,SNzXc9qW1:SNzXc9qW1V_zjexuvv,uulcserP6:uulcserP6V_zjexuvv,vaSY19i4P:vaSY19i4PV_zjexuvv},index20)=>{uulcserP6V_zjexuvv??=\"\";vaSY19i4PV_zjexuvv??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`V_zjexuvv-${idV_zjexuvv}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6V_zjexuvv},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6V_zjexuvv},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6V_zjexuvv},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t4i8vn-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"bAOPAMOOP-container\",nodeId:\"bAOPAMOOP\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzV_zjexuvv),height:\"100%\",I8p0dzc3B:resolvedLinks4[1],id:\"bAOPAMOOP\",jlJ8s0aqJ:vaSY19i4PV_zjexuvv,layoutId:\"bAOPAMOOP\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1V_zjexuvv,activeLocale),width:\"100%\"})})})})})},idV_zjexuvv);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aroazv\",\"data-framer-name\":\"Padding\",layoutDependency:layoutDependency,layoutId:\"fbS0DYGhm\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z7vu4z-container\",\"data-framer-name\":\"Design\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"A9pwJ1uf6-container\",name:\"Design\",nodeId:\"A9pwJ1uf6\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-dbae964b-bf6d-472d-98f8-5b6acb34fbc5, rgb(246, 89, 54))\",arrowPadding:25,arrowRadius:100,arrowSize:35,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:25,height:\"100%\",id:\"A9pwJ1uf6\",layoutId:\"A9pwJ1uf6\",name:\"Design\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"var(--token-6ac1b70a-67cf-4a5b-8e67-47539fd38219, rgb(160, 160, 160))\",dotsBlur:0,dotsFill:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:3,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-85ghpc\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"Oxffzh5IR\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Oxffzh5IR\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"Oxffzh5IR\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"Oxffzh5IR\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"Oxffzh5IR\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"Oxffzh5IR\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"Oxffzh5IR\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Oxffzh5IR\",name:\"RZ4b05Aqe\",type:\"Identifier\"},operator:\"and\",right:{conditions:[{then:{type:\"LiteralValue\",value:true},type:\"Condition\",when:{type:\"LiteralValue\",value:\"XZXJSyzjL\"}}],else:{type:\"LiteralValue\",value:true},type:\"Case\",value:{collection:\"Oxffzh5IR\",name:\"SNzXc9qW1\",type:\"Identifier\"}},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({GSEMEwnpz:GSEMEwnpzOxffzh5IR,id:idOxffzh5IR,SNzXc9qW1:SNzXc9qW1Oxffzh5IR,uulcserP6:uulcserP6Oxffzh5IR,vaSY19i4P:vaSY19i4POxffzh5IR},index21)=>{uulcserP6Oxffzh5IR??=\"\";vaSY19i4POxffzh5IR??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Oxffzh5IR-${idOxffzh5IR}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6Oxffzh5IR},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6Oxffzh5IR},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6Oxffzh5IR},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ld8vnu-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"wa3Nz0t1x-container\",nodeId:\"wa3Nz0t1x\",rendersWithMotion:true,scopeId:\"WyeTZ0F8x\",children:/*#__PURE__*/_jsx(CardEditorsNotes,{cWEobvcG5:toResponsiveImage(GSEMEwnpzOxffzh5IR),height:\"100%\",I8p0dzc3B:resolvedLinks[1],id:\"wa3Nz0t1x\",jlJ8s0aqJ:vaSY19i4POxffzh5IR,layoutId:\"wa3Nz0t1x\",style:{width:\"100%\"},variant:\"bi63ETO7x\",w73TwTG4d:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1Oxffzh5IR,activeLocale),width:\"100%\"})})})})})},idOxffzh5IR);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aroazv\",\"data-framer-name\":\"Padding\",layoutDependency:layoutDependency,layoutId:\"fbS0DYGhm\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DKt2b.framer-1spreqs, .framer-DKt2b .framer-1spreqs { display: block; }\",\".framer-DKt2b.framer-x9dqjv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1140px; }\",\".framer-DKt2b .framer-1iw0531 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-DKt2b .framer-11i27ay { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px; position: relative; width: 1px; z-index: 10; }\",\".framer-DKt2b .framer-16n4vbh { 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: hidden; overflow-x: auto; padding: 0px 0px 20px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-DKt2b .framer-swbbi0-container, .framer-DKt2b .framer-1xhuruf-container, .framer-DKt2b .framer-85ft77-container, .framer-DKt2b .framer-1o3k80n-container, .framer-DKt2b .framer-10m6xjw-container, .framer-DKt2b .framer-1owy37f-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-DKt2b .framer-d38r1o { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); overflow: hidden; position: relative; width: 25px; }\",\".framer-DKt2b .framer-9kiuqo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-DKt2b .framer-r5uyg5-container, .framer-DKt2b .framer-58eikp-container, .framer-DKt2b .framer-m1o4vo-container, .framer-DKt2b .framer-1e6kmyv-container, .framer-DKt2b .framer-hdykry-container, .framer-DKt2b .framer-z7vu4z-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-DKt2b .framer-85ghpc, .framer-DKt2b .framer-mou3de, .framer-DKt2b .framer-1ccsfka, .framer-DKt2b .framer-1mzlgrj, .framer-DKt2b .framer-vcin0b, .framer-DKt2b .framer-1xgi0nf, .framer-DKt2b .framer-1x2t43e, .framer-DKt2b .framer-e7mp7v, .framer-DKt2b .framer-1rscgln, .framer-DKt2b .framer-kuhz7r, .framer-DKt2b .framer-96qr4, .framer-DKt2b .framer-2z9yp3 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-DKt2b .framer-1ld8vnu-container, .framer-DKt2b .framer-jxi6sb-container, .framer-DKt2b .framer-1dqhirj-container, .framer-DKt2b .framer-1fcdxav-container, .framer-DKt2b .framer-t4i8vn-container, .framer-DKt2b .framer-1kt4rus-container, .framer-DKt2b .framer-5irgz1-container, .framer-DKt2b .framer-a1mjne-container, .framer-DKt2b .framer-1kmzc4l-container, .framer-DKt2b .framer-1rmutwx-container, .framer-DKt2b .framer-1ycgwbd-container, .framer-DKt2b .framer-1wt8va4-container { flex: none; height: auto; position: relative; width: 300px; }\",\".framer-DKt2b .framer-1aroazv { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 5px); overflow: hidden; position: relative; width: 5px; }\",\".framer-DKt2b.framer-v-1o8ui3k .framer-1iw0531, .framer-DKt2b.framer-v-2jd5xb .framer-1iw0531, .framer-DKt2b.framer-v-167ik1w .framer-1iw0531, .framer-DKt2b.framer-v-112qxnc .framer-1iw0531 { order: 0; }\",\".framer-DKt2b.framer-v-1o8ui3k .framer-58eikp-container { order: 2; }\",\".framer-DKt2b.framer-v-2jd5xb .framer-m1o4vo-container { order: 3; }\",\".framer-DKt2b.framer-v-167ik1w .framer-hdykry-container { order: 5; }\",\".framer-DKt2b.framer-v-112qxnc .framer-z7vu4z-container { order: 6; }\",'.framer-DKt2b[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-DKt2b [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-DKt2b[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-DKt2b [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-DKt2b[data-hide-scrollbars=\"true\"], .framer-DKt2b [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 501\n * @framerIntrinsicWidth 1140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tF_iKNQiQ\":{\"layout\":[\"fixed\",\"auto\"]},\"KXld_4YQn\":{\"layout\":[\"fixed\",\"auto\"]},\"s_Se9YxgU\":{\"layout\":[\"fixed\",\"auto\"]},\"f0N8ckJw1\":{\"layout\":[\"fixed\",\"auto\"]},\"wrimxPpDq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"TLMtpFVQr\":\"click\",\"D06xkLXgW\":\"click2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerWyeTZ0F8x=withCSS(Component,css,\"framer-DKt2b\");export default FramerWyeTZ0F8x;FramerWyeTZ0F8x.displayName=\"Editors Notes\";FramerWyeTZ0F8x.defaultProps={height:501,width:1140};addPropertyControls(FramerWyeTZ0F8x,{variant:{options:[\"NHpjLmPQL\",\"tF_iKNQiQ\",\"KXld_4YQn\",\"s_Se9YxgU\",\"f0N8ckJw1\",\"wrimxPpDq\"],optionTitles:[\"Alle\",\"Interview\",\"Reisen\",\"People\",\"M\\xfcnchen\",\"Design\"],title:\"Variant\",type:ControlType.Enum},TLMtpFVQr:{title:\"Click\",type:ControlType.EventHandler},D06xkLXgW:{title:\"Click 2\",type:ControlType.EventHandler}});addFonts(FramerWyeTZ0F8x,[{explicitInter:true,fonts:[]},...ButtonCopyFonts,...CardEditorsNotesFonts,...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWyeTZ0F8x\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1140\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"501\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"TLMtpFVQr\\\":\\\"click\\\",\\\"D06xkLXgW\\\":\\\"click2\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tF_iKNQiQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KXld_4YQn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s_Se9YxgU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f0N8ckJw1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wrimxPpDq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6aa4fc0)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import MagText from\"https://framerusercontent.com/modules/W5DPKEeQuqeSZmy9NBRc/J9eQVqcHHoC6JaHQquqb/Text_5.js\";import Articles,{enumToDisplayNameFunctions}from\"https://framerusercontent.com/modules/cvfF8Zfj3hk6PrJQYRM6/hcrITb9eKaCb892HmIEb/kFZ9bhFxc.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/cRK5N7PJ8cPiFyqYycEE/Hfinp4bR4n8MTWZm4jKe/FP95AICZ2.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/bCssN5wDLh0uJEdVFXoJ/2sknmVSnALlUM88mcD4i/h17XaN2js.js\";import CardBrand from\"https://framerusercontent.com/modules/0CUZsI5ihdpjttz9nftx/yFSKdTwgSitriAQKzoAi/rWlPZbm7N.js\";const MagTextFonts=getFonts(MagText);const CardBrandFonts=getFonts(CardBrand);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const enabledGestures={It82NLnOZ:{hover:true},P_7M9D9U0:{hover:true},xUsbW5Pd3:{hover:true}};const cycleOrder=[\"xUsbW5Pd3\",\"AiMkcXaz2\",\"It82NLnOZ\",\"bEHVEp156\",\"P_7M9D9U0\",\"PvKWB1AKV\"];const serializationHash=\"framer-nYHpw\";const variantClassNames={AiMkcXaz2:\"framer-v-b8aehc\",bEHVEp156:\"framer-v-1j96qi9\",It82NLnOZ:\"framer-v-11t5jl3\",P_7M9D9U0:\"framer-v-197467w\",PvKWB1AKV:\"framer-v-1abo0wa\",xUsbW5Pd3:\"framer-v-17kvqjb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:150};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const convertFromBoolean=(value,activeLocale)=>{if(value){return 2;}else{return 1;}};const getGridColumnCSSValue=(columnSpan,optionalColumnCount)=>{if(columnSpan===\"all\")return\"-1 / 1\";const spanCount=Number.isFinite(columnSpan)&&columnSpan>0?columnSpan:1;if(Number.isFinite(optionalColumnCount)&&spanCount>optionalColumnCount){return`span ${optionalColumnCount}`;}return`span ${spanCount}`;};const query=prequery=>prequery({from:{alias:\"w0Uvk_HY8\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:5},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"w0Uvk_HY8\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"id\",type:\"Identifier\"}]});const query1=prequery=>prequery({from:{alias:\"w0Uvk_HY8\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"w0Uvk_HY8\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"w0Uvk_HY8\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"fQFtJlpcz\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"w0Uvk_HY8\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},type:\"BinaryOperation\"}});const query2=prequery=>prequery({from:{alias:\"w0Uvk_HY8\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"w0Uvk_HY8\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"id\",type:\"Identifier\"}]});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query3=prequery=>prequery({from:{alias:\"E5nCNVjLz\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"E5nCNVjLz\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"E5nCNVjLz\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"E5nCNVjLz\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"yjTLUhgD7\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query4=prequery=>prequery({from:{alias:\"E5nCNVjLz\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"E5nCNVjLz\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"E5nCNVjLz\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"fQFtJlpcz\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"E5nCNVjLz\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},type:\"BinaryOperation\"}});const query5=prequery=>prequery({from:{alias:\"E5nCNVjLz\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"E5nCNVjLz\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"E5nCNVjLz\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"fQFtJlpcz\"},type:\"BinaryOperation\"}});const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Open\":\"AiMkcXaz2\",\"Mobile Open\":\"bEHVEp156\",\"Tablet Open\":\"PvKWB1AKV\",Desktop:\"xUsbW5Pd3\",Mobile:\"It82NLnOZ\",Tablet:\"P_7M9D9U0\"};const getProps=({height,id,link,text,width,...props})=>{return{...props,KT211s3sR:text??props.KT211s3sR??\"BRAND\",variant:humanReadableVariantMap[props.variant]??props.variant??\"xUsbW5Pd3\",wNjwE3uYr:link??props.wNjwE3uYr};};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,KT211s3sR,wNjwE3uYr,uulcserP6E5nCNVjLz,GSEMEwnpzE5nCNVjLz,SNzXc9qW1E5nCNVjLz,vaSY19i4PE5nCNVjLz,idE5nCNVjLz,repeater_item_indexw0Uvk_HY8,uulcserP6w0Uvk_HY8,GSEMEwnpzw0Uvk_HY8,SNzXc9qW1w0Uvk_HY8,vaSY19i4Pw0Uvk_HY8,idw0Uvk_HY8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xUsbW5Pd3\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapdx2zvo=activeVariantCallback(async(...args)=>{setVariant(\"AiMkcXaz2\");});const onTaptytne4=activeVariantCallback(async(...args)=>{setVariant(\"xUsbW5Pd3\");});const onTapqovzsk=activeVariantCallback(async(...args)=>{setVariant(\"bEHVEp156\");});const onTap19kvyji=activeVariantCallback(async(...args)=>{setVariant(\"It82NLnOZ\");});const onTapsaakh6=activeVariantCallback(async(...args)=>{setVariant(\"PvKWB1AKV\");});const onTap11sj579=activeVariantCallback(async(...args)=>{setVariant(\"P_7M9D9U0\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"AiMkcXaz2\",\"PvKWB1AKV\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"AiMkcXaz2\",\"bEHVEp156\",\"PvKWB1AKV\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"AiMkcXaz2\")return false;return true;};const router=useRouter();const isDisplayed3=()=>{if([\"bEHVEp156\",\"PvKWB1AKV\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"bEHVEp156\")return true;return false;};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-17kvqjb\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"xUsbW5Pd3\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({\"It82NLnOZ-hover\":{\"data-framer-name\":undefined},\"P_7M9D9U0-hover\":{\"data-framer-name\":undefined},\"xUsbW5Pd3-hover\":{\"data-framer-name\":undefined},AiMkcXaz2:{\"data-framer-name\":\"Desktop Open\"},bEHVEp156:{\"data-framer-name\":\"Mobile Open\"},It82NLnOZ:{\"data-framer-name\":\"Mobile\"},P_7M9D9U0:{\"data-framer-name\":\"Tablet\"},PvKWB1AKV:{\"data-framer-name\":\"Tablet Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12usuto\",\"data-framer-name\":\"Brand Line\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OBnHWzUZP\",onTap:onTapdx2zvo,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\"},variants:{\"xUsbW5Pd3-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},AiMkcXaz2:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},bEHVEp156:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},It82NLnOZ:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},P_7M9D9U0:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},PvKWB1AKV:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({AiMkcXaz2:{\"data-border\":true,onTap:onTaptytne4},bEHVEp156:{\"data-border\":true,onTap:onTap19kvyji},It82NLnOZ:{onTap:onTapqovzsk},P_7M9D9U0:{onTap:onTapsaakh6},PvKWB1AKV:{\"data-border\":true,onTap:onTap11sj579}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ipnk1d\",\"data-framer-name\":\"Strokes Headline Copy\",layoutDependency:layoutDependency,layoutId:\"UOrXmElRK\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{\"xUsbW5Pd3-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},bEHVEp156:{backgroundColor:\"rgba(0, 0, 0, 0)\"},It82NLnOZ:{backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\"},P_7M9D9U0:{backgroundColor:\"rgba(0, 0, 0, 0)\"},PvKWB1AKV:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wqdt00-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"s1uZBOHUA-container\",nodeId:\"s1uZBOHUA\",rendersWithMotion:true,scopeId:\"ysaQdmCgY\",children:/*#__PURE__*/_jsx(MagText,{color:\"rgba(51, 51, 51, 0)\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"100px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"s1uZBOHUA\",layoutId:\"s1uZBOHUA\",outlineColor:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",outlineWidth:1,style:{width:\"100%\"},text:KT211s3sR,width:\"100%\",...addPropertyOverrides({\"It82NLnOZ-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},\"P_7M9D9U0-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},\"xUsbW5Pd3-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},AiMkcXaz2:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},bEHVEp156:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"72px\",letterSpacing:\"0em\",lineHeight:\"1em\"}},It82NLnOZ:{font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"72px\",letterSpacing:\"0em\",lineHeight:\"1em\"}},P_7M9D9U0:{font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\"}},PvKWB1AKV:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-t9i4v1\",\"data-framer-name\":\"Alles Anzeigen Desktop\",layoutDependency:layoutDependency,layoutId:\"RLk3O5Aq2\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1htihd5\",\"data-styles-preset\":\"h17XaN2js\",children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"FPjzAZpwX\",openInNewTab:false,scopeId:\"ysaQdmCgY\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Mehr anzeigen\"})})})}),className:\"framer-v03p6r\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FPjzAZpwX\",variants:{AiMkcXaz2:{\"--extracted-r6o4lv\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AiMkcXaz2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIENvbXBhY3QgRGlzcGxheSBTZW1pYm9sZA==\",\"--framer-font-family\":'\"SF Compact Display Semibold\", \"SF Compact Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"FPjzAZpwX\",openInNewTab:false,scopeId:\"ysaQdmCgY\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Mehr anzeigen\"})})})}),fonts:[\"CUSTOM;SF Compact Display Semibold\"]}},baseVariant,gestureVariant)})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tphbg6\",\"data-border\":true,\"data-framer-name\":\"Collection\",layoutDependency:layoutDependency,layoutId:\"E5nCNVjLz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{AiMkcXaz2:{\"--border-bottom-width\":\"0px\"},PvKWB1AKV:{\"--border-bottom-width\":\"0px\"}},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"E5nCNVjLz\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"E5nCNVjLz\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"E5nCNVjLz\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"E5nCNVjLz\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"yjTLUhgD7\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},...addPropertyOverrides({AiMkcXaz2:{query:{from:{alias:\"E5nCNVjLz\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"E5nCNVjLz\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"E5nCNVjLz\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"fQFtJlpcz\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"E5nCNVjLz\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},type:\"BinaryOperation\"}}},bEHVEp156:{query:{from:{alias:\"E5nCNVjLz\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"E5nCNVjLz\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"E5nCNVjLz\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"fQFtJlpcz\"},type:\"BinaryOperation\"}}},PvKWB1AKV:{query:{from:{alias:\"E5nCNVjLz\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"E5nCNVjLz\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"E5nCNVjLz\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"E5nCNVjLz\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"fQFtJlpcz\"},type:\"BinaryOperation\"}}}},baseVariant,gestureVariant),children:(collection,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection?.map(({GSEMEwnpz:GSEMEwnpzE5nCNVjLz,id:idE5nCNVjLz,SNzXc9qW1:SNzXc9qW1E5nCNVjLz,uulcserP6:uulcserP6E5nCNVjLz,vaSY19i4P:vaSY19i4PE5nCNVjLz},index)=>{uulcserP6E5nCNVjLz??=\"\";vaSY19i4PE5nCNVjLz??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`E5nCNVjLz-${idE5nCNVjLz}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6E5nCNVjLz},children:isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-13r1zcr\",layoutDependency:layoutDependency,layoutId:\"psJfVXjyD\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6E5nCNVjLz},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6E5nCNVjLz},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6E5nCNVjLz},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,...addPropertyOverrides({bEHVEp156:{width:`max(${componentViewport?.width||\"100vw\"}, 200px)`},PvKWB1AKV:{width:`max((${componentViewport?.width||\"100vw\"} - 25px) / 2, 200px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-72btjf-container\",layoutDependency:layoutDependency,layoutId:\"wiB4Ei2Eo-container\",nodeId:\"wiB4Ei2Eo\",rendersWithMotion:true,scopeId:\"ysaQdmCgY\",style:{transformPerspective:1200},variants:{bEHVEp156:{transformPerspective:undefined},PvKWB1AKV:{transformPerspective:undefined}},...addPropertyOverrides({bEHVEp156:{__framer__styleAppearEffectEnabled:undefined},PvKWB1AKV:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(CardBrand,{FGBLuU585:resolvedLinks[0],G6l67NRzN:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1E5nCNVjLz,activeLocale),height:\"100%\",id:\"wiB4Ei2Eo\",layoutId:\"wiB4Ei2Eo\",LRL_mvDaJ:vaSY19i4PE5nCNVjLz,style:{width:\"100%\"},variant:\"Jhx9P6akf\",width:\"100%\",xuMNzM7cK:toResponsiveImage(GSEMEwnpzE5nCNVjLz),...addPropertyOverrides({bEHVEp156:{FGBLuU585:resolvedLinks[1]},PvKWB1AKV:{FGBLuU585:resolvedLinks[2]}},baseVariant,gestureVariant)})})})})})})},idE5nCNVjLz);}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dl2cvf\",layoutDependency:layoutDependency,layoutId:\"w0Uvk_HY8\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"w0Uvk_HY8\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:5},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"w0Uvk_HY8\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"id\",type:\"Identifier\"}]},...addPropertyOverrides({AiMkcXaz2:{query:{from:{alias:\"w0Uvk_HY8\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"w0Uvk_HY8\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"w0Uvk_HY8\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"fQFtJlpcz\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"w0Uvk_HY8\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},type:\"BinaryOperation\"}}},PvKWB1AKV:{query:{from:{alias:\"w0Uvk_HY8\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"w0Uvk_HY8\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"w0Uvk_HY8\",name:\"id\",type:\"Identifier\"}]}}},baseVariant,gestureVariant),children:(collection1,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({GSEMEwnpz:GSEMEwnpzw0Uvk_HY8,id:idw0Uvk_HY8,SNzXc9qW1:SNzXc9qW1w0Uvk_HY8,uulcserP6:uulcserP6w0Uvk_HY8,vaSY19i4P:vaSY19i4Pw0Uvk_HY8},index1)=>{uulcserP6w0Uvk_HY8??=\"\";vaSY19i4Pw0Uvk_HY8??=\"\";const repeater_item_indexw0Uvk_HY8=index1+1;const gridItemColumnSpan=getGridColumnCSSValue(convertFromBoolean(equals(repeater_item_indexw0Uvk_HY8,2),activeLocale),3);const gridItemColumnSpan1=getGridColumnCSSValue(convertFromBoolean(equals(repeater_item_indexw0Uvk_HY8,2),activeLocale),4);return /*#__PURE__*/_jsx(LayoutGroup,{id:`w0Uvk_HY8-${idw0Uvk_HY8}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6w0Uvk_HY8},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{uulcserP6:uulcserP6w0Uvk_HY8},webPageId:\"LySM6A9fK\"},motionChild:true,nodeId:\"oXIIjy7hx\",scopeId:\"ysaQdmCgY\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1coii7u framer-1j0xumg\",layoutDependency:layoutDependency,layoutId:\"oXIIjy7hx\",style:{\"--1q1styz\":gridItemColumnSpan,\"--1xlim7f\":gridItemColumnSpan1},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6E5nCNVjLz},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6E5nCNVjLz},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hqgp4x-container\",layoutDependency:layoutDependency,layoutId:\"zzZFd75i_-container\",nodeId:\"zzZFd75i_\",rendersWithMotion:true,scopeId:\"ysaQdmCgY\",children:/*#__PURE__*/_jsx(CardBrand,{FGBLuU585:resolvedLinks1[0],G6l67NRzN:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1w0Uvk_HY8,activeLocale),height:\"100%\",id:\"zzZFd75i_\",layoutId:\"zzZFd75i_\",LRL_mvDaJ:vaSY19i4Pw0Uvk_HY8,style:{width:\"100%\"},variant:\"Jhx9P6akf\",width:\"100%\",xuMNzM7cK:toResponsiveImage(GSEMEwnpzw0Uvk_HY8),...addPropertyOverrides({AiMkcXaz2:{FGBLuU585:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})})})})})},idw0Uvk_HY8);})})})})})]})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ayftaa\",\"data-framer-name\":\"Alles Anzeigen Mobile\",layoutDependency:layoutDependency,layoutId:\"jnpKUQpnu\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIENvbXBhY3QgRGlzcGxheSBTZW1pYm9sZA==\",\"--framer-font-family\":'\"SF Compact Display Semibold\", \"SF Compact Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"XHXDtJHF0\",openInNewTab:false,scopeId:\"ysaQdmCgY\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Mehr anzeigen\"})})})}),className:\"framer-1vzww39\",fonts:[\"CUSTOM;SF Compact Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"XHXDtJHF0\",style:{\"--extracted-r6o4lv\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nYHpw.framer-1j0xumg, .framer-nYHpw .framer-1j0xumg { display: block; }\",\".framer-nYHpw.framer-17kvqjb { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1140px; }\",\".framer-nYHpw .framer-12usuto { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nYHpw .framer-1ipnk1d { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-nYHpw .framer-1wqdt00-container { cursor: pointer; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-nYHpw .framer-t9i4v1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-nYHpw .framer-v03p6r, .framer-nYHpw .framer-1vzww39 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-nYHpw .framer-1tphbg6 { display: grid; flex: none; gap: 25px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: start; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-nYHpw .framer-13r1zcr { align-self: start; display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: auto; justify-content: center; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-nYHpw .framer-72btjf-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 1fr; }\",\".framer-nYHpw .framer-1dl2cvf { align-self: start; display: grid; flex: none; gap: 25px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; justify-self: start; padding: 0px; position: relative; width: 100px; }\",\".framer-nYHpw .framer-1coii7u { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; grid-column: var(--1q1styz); height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-nYHpw .framer-hqgp4x-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-nYHpw .framer-1ayftaa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 35px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-nYHpw.framer-v-b8aehc.framer-17kvqjb { cursor: unset; gap: 25px; overflow: visible; }\",\".framer-nYHpw.framer-v-b8aehc .framer-12usuto { position: sticky; top: 68px; z-index: 1; }\",\".framer-nYHpw.framer-v-b8aehc .framer-v03p6r, .framer-nYHpw.framer-v-b8aehc .framer-hqgp4x-container { order: 0; }\",\".framer-nYHpw.framer-v-b8aehc .framer-1dl2cvf { grid-column: span 2; grid-template-columns: repeat(4, minmax(50px, 1fr)); order: 0; width: 100%; }\",\".framer-nYHpw.framer-v-b8aehc .framer-1coii7u { grid-column: var(--1xlim7f); }\",\".framer-nYHpw.framer-v-11t5jl3.framer-17kvqjb { width: 380px; }\",\".framer-nYHpw.framer-v-11t5jl3 .framer-1ipnk1d, .framer-nYHpw.framer-v-1j96qi9 .framer-1ipnk1d { padding: 15px 0px 15px 0px; }\",\".framer-nYHpw.framer-v-1j96qi9.framer-17kvqjb { align-content: flex-end; align-items: flex-end; cursor: unset; gap: 0px; overflow: visible; width: 380px; }\",\".framer-nYHpw.framer-v-1j96qi9 .framer-12usuto { position: sticky; top: 69px; z-index: 1; }\",\".framer-nYHpw.framer-v-1j96qi9 .framer-1tphbg6 { gap: 0px; grid-template-columns: repeat(1, minmax(200px, 1fr)); padding: 0px; }\",\".framer-nYHpw.framer-v-1abo0wa.framer-17kvqjb { cursor: unset; gap: 25px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-nYHpw[data-border=\"true\"]::after, .framer-nYHpw [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 140\n * @framerIntrinsicWidth 1140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AiMkcXaz2\":{\"layout\":[\"fixed\",\"auto\"]},\"It82NLnOZ\":{\"layout\":[\"fixed\",\"auto\"]},\"bEHVEp156\":{\"layout\":[\"fixed\",\"auto\"]},\"P_7M9D9U0\":{\"layout\":[\"fixed\",\"auto\"]},\"PvKWB1AKV\":{\"layout\":[\"fixed\",\"auto\"]},\"uZWwJf8S5\":{\"layout\":[\"fixed\",\"auto\"]},\"JBda3HPXE\":{\"layout\":[\"fixed\",\"auto\"]},\"bTEjN1j2o\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"KT211s3sR\":\"text\",\"wNjwE3uYr\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerysaQdmCgY=withCSS(Component,css,\"framer-nYHpw\");export default FramerysaQdmCgY;FramerysaQdmCgY.displayName=\"Brand Row CELINE\";FramerysaQdmCgY.defaultProps={height:140,width:1140};addPropertyControls(FramerysaQdmCgY,{variant:{options:[\"xUsbW5Pd3\",\"AiMkcXaz2\",\"It82NLnOZ\",\"bEHVEp156\",\"P_7M9D9U0\",\"PvKWB1AKV\"],optionTitles:[\"Desktop\",\"Desktop Open\",\"Mobile\",\"Mobile Open\",\"Tablet\",\"Tablet Open\"],title:\"Variant\",type:ControlType.Enum},KT211s3sR:{defaultValue:\"BRAND\",displayTextArea:true,title:\"Text\",type:ControlType.String},wNjwE3uYr:{title:\"Link\",type:ControlType.Link}});addFonts(FramerysaQdmCgY,[{explicitInter:true,fonts:[{family:\"Helvetica Neue Condensed Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/m51RfBUZWFtucHm4D3e07GJwU.otf\"},{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:\"SF Compact Display Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZPX5QyU8gHyYADt5u1je3kqbnvc.otf\"}]},...MagTextFonts,...CardBrandFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerysaQdmCgY\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"KT211s3sR\\\":\\\"text\\\",\\\"wNjwE3uYr\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AiMkcXaz2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"It82NLnOZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bEHVEp156\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P_7M9D9U0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PvKWB1AKV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uZWwJf8S5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JBda3HPXE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bTEjN1j2o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1140\",\"framerIntrinsicHeight\":\"140\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import MagText from\"https://framerusercontent.com/modules/W5DPKEeQuqeSZmy9NBRc/J9eQVqcHHoC6JaHQquqb/Text_5.js\";import Articles,{enumToDisplayNameFunctions}from\"https://framerusercontent.com/modules/cvfF8Zfj3hk6PrJQYRM6/hcrITb9eKaCb892HmIEb/kFZ9bhFxc.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/cRK5N7PJ8cPiFyqYycEE/Hfinp4bR4n8MTWZm4jKe/FP95AICZ2.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/bCssN5wDLh0uJEdVFXoJ/2sknmVSnALlUM88mcD4i/h17XaN2js.js\";import CardBrand from\"https://framerusercontent.com/modules/0CUZsI5ihdpjttz9nftx/yFSKdTwgSitriAQKzoAi/rWlPZbm7N.js\";const MagTextFonts=getFonts(MagText);const CardBrandFonts=getFonts(CardBrand);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const enabledGestures={bBlBteJU0:{hover:true},ocC7i1PLe:{hover:true},sGMk43A7J:{hover:true}};const cycleOrder=[\"ocC7i1PLe\",\"GpetBw01s\",\"sGMk43A7J\",\"hlTqGcIMZ\",\"bBlBteJU0\",\"qrYzBJJ5M\"];const serializationHash=\"framer-83X8i\";const variantClassNames={bBlBteJU0:\"framer-v-hfsmkr\",GpetBw01s:\"framer-v-1ico4kq\",hlTqGcIMZ:\"framer-v-pvrvt7\",ocC7i1PLe:\"framer-v-1g621it\",qrYzBJJ5M:\"framer-v-xgl1l3\",sGMk43A7J:\"framer-v-19946pk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:150};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"aTI_m75rc\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"aTI_m75rc\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"aTI_m75rc\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"aTI_m75rc\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"yjTLUhgD7\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query1=prequery=>prequery({from:{alias:\"aTI_m75rc\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"aTI_m75rc\",direction:\"desc\",name:\"mz9kVlpKW\",type:\"Identifier\"}],select:[{collection:\"aTI_m75rc\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"aTI_m75rc\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"yjTLUhgD7\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"aTI_m75rc\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"aTI_m75rc\",name:\"U_fqU98P9\",type:\"Identifier\"},type:\"BinaryOperation\"}});const query2=prequery=>prequery({from:{alias:\"aTI_m75rc\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"aTI_m75rc\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"aTI_m75rc\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"yjTLUhgD7\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Open\":\"GpetBw01s\",\"Mobile Open\":\"hlTqGcIMZ\",\"Tablet Open\":\"qrYzBJJ5M\",Desktop:\"ocC7i1PLe\",Mobile:\"sGMk43A7J\",Tablet:\"bBlBteJU0\"};const getProps=({height,id,link,text,width,...props})=>{return{...props,KT211s3sR:text??props.KT211s3sR??\"BRAND\",variant:humanReadableVariantMap[props.variant]??props.variant??\"ocC7i1PLe\",wNjwE3uYr:link??props.wNjwE3uYr};};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,KT211s3sR,wNjwE3uYr,uulcserP6aTI_m75rc,GSEMEwnpzaTI_m75rc,SNzXc9qW1aTI_m75rc,vaSY19i4PaTI_m75rc,idaTI_m75rc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ocC7i1PLe\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap8r1bvw=activeVariantCallback(async(...args)=>{setVariant(\"GpetBw01s\");});const onTap5hzne4=activeVariantCallback(async(...args)=>{setVariant(\"ocC7i1PLe\");});const onTapzc06mu=activeVariantCallback(async(...args)=>{setVariant(\"hlTqGcIMZ\");});const onTap1xgld4w=activeVariantCallback(async(...args)=>{setVariant(\"sGMk43A7J\");});const onTapq1rnmd=activeVariantCallback(async(...args)=>{setVariant(\"qrYzBJJ5M\");});const onTap1n2ht1q=activeVariantCallback(async(...args)=>{setVariant(\"bBlBteJU0\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"GpetBw01s\",\"qrYzBJJ5M\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"GpetBw01s\",\"hlTqGcIMZ\",\"qrYzBJJ5M\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"hlTqGcIMZ\")return true;return false;};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-1g621it\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ocC7i1PLe\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\",...style},...addPropertyOverrides({\"bBlBteJU0-hover\":{\"data-framer-name\":undefined},\"ocC7i1PLe-hover\":{\"data-framer-name\":undefined},\"sGMk43A7J-hover\":{\"data-framer-name\":undefined},bBlBteJU0:{\"data-framer-name\":\"Tablet\"},GpetBw01s:{\"data-framer-name\":\"Desktop Open\"},hlTqGcIMZ:{\"data-framer-name\":\"Mobile Open\"},qrYzBJJ5M:{\"data-framer-name\":\"Tablet Open\"},sGMk43A7J:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10lyfsa\",\"data-framer-name\":\"Brand Line\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vS1TjkxmP\",onTap:onTap8r1bvw,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-20c9c865-f712-4e96-8cd7-7f67933d8121, rgb(247, 247, 245))\"},variants:{\"ocC7i1PLe-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},bBlBteJU0:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},GpetBw01s:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},hlTqGcIMZ:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},qrYzBJJ5M:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},sGMk43A7J:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({bBlBteJU0:{onTap:onTapq1rnmd},GpetBw01s:{\"data-border\":true,onTap:onTap5hzne4},hlTqGcIMZ:{\"data-border\":true,onTap:onTap1xgld4w},qrYzBJJ5M:{\"data-border\":true,onTap:onTap1n2ht1q},sGMk43A7J:{onTap:onTapzc06mu}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k4u5uk\",\"data-framer-name\":\"Strokes Headline Copy\",layoutDependency:layoutDependency,layoutId:\"nNlxgq3tk\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-scds5s-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"P0SBFCEh1-container\",nodeId:\"P0SBFCEh1\",rendersWithMotion:true,scopeId:\"zqFjTTcgn\",children:/*#__PURE__*/_jsx(MagText,{color:\"rgba(209, 209, 209, 0)\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"100px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"},height:\"100%\",id:\"P0SBFCEh1\",layoutId:\"P0SBFCEh1\",outlineColor:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",outlineWidth:1,style:{width:\"100%\"},text:KT211s3sR,width:\"100%\",...addPropertyOverrides({\"bBlBteJU0-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},\"ocC7i1PLe-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},\"sGMk43A7J-hover\":{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},bBlBteJU0:{font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},GpetBw01s:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},hlTqGcIMZ:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"72px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},qrYzBJJ5M:{color:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}},sGMk43A7J:{font:{fontFamily:'\"Helvetica Neue Condensed Bold\", \"Helvetica Neue Condensed Bold Placeholder\", sans-serif',fontSize:\"72px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"}}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p16ea4\",\"data-framer-name\":\"Alles Anzeigen Desktop\",layoutDependency:layoutDependency,layoutId:\"HVSwO0fTD\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1htihd5\",\"data-styles-preset\":\"h17XaN2js\",children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"l_B0OOwYa\",openInNewTab:false,scopeId:\"zqFjTTcgn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"Mehr anzeigen\"})})})}),className:\"framer-l7zwku\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"l_B0OOwYa\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ars3x6\",\"data-border\":true,\"data-framer-name\":\"Collection\",layoutDependency:layoutDependency,layoutId:\"aTI_m75rc\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{GpetBw01s:{\"--border-bottom-width\":\"0px\"},qrYzBJJ5M:{\"--border-bottom-width\":\"0px\"}},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"aTI_m75rc\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"aTI_m75rc\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"aTI_m75rc\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},operator:\"and\",right:{left:{collection:\"aTI_m75rc\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"yjTLUhgD7\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},...addPropertyOverrides({GpetBw01s:{query:{from:{alias:\"aTI_m75rc\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"aTI_m75rc\",direction:\"desc\",name:\"mz9kVlpKW\",type:\"Identifier\"}],select:[{collection:\"aTI_m75rc\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"aTI_m75rc\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"yjTLUhgD7\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"aTI_m75rc\",name:\"OX0D0Ivq9\",type:\"Identifier\"}},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"aTI_m75rc\",name:\"U_fqU98P9\",type:\"Identifier\"},type:\"BinaryOperation\"}}},hlTqGcIMZ:{query:{from:{alias:\"aTI_m75rc\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"aTI_m75rc\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"aTI_m75rc\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"yjTLUhgD7\"},type:\"BinaryOperation\"}}},qrYzBJJ5M:{query:{from:{alias:\"aTI_m75rc\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"aTI_m75rc\",name:\"uulcserP6\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"GSEMEwnpz\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"SNzXc9qW1\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"vaSY19i4P\",type:\"Identifier\"},{collection:\"aTI_m75rc\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"aTI_m75rc\",name:\"yY_LYPfWj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"yjTLUhgD7\"},type:\"BinaryOperation\"}}}},baseVariant,gestureVariant),children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({GSEMEwnpz:GSEMEwnpzaTI_m75rc,id:idaTI_m75rc,SNzXc9qW1:SNzXc9qW1aTI_m75rc,uulcserP6:uulcserP6aTI_m75rc,vaSY19i4P:vaSY19i4PaTI_m75rc},index)=>{uulcserP6aTI_m75rc??=\"\";vaSY19i4PaTI_m75rc??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`aTI_m75rc-${idaTI_m75rc}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uulcserP6:uulcserP6aTI_m75rc},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2vobx6\",layoutDependency:layoutDependency,layoutId:\"BZizBtgDZ\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{uulcserP6:uulcserP6aTI_m75rc},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6aTI_m75rc},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6aTI_m75rc},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined},{href:{pathVariables:{uulcserP6:uulcserP6aTI_m75rc},webPageId:\"t_aDJe_UU\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,...addPropertyOverrides({GpetBw01s:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 200px)`},hlTqGcIMZ:{width:`max(${componentViewport?.width||\"100vw\"}, 200px)`},qrYzBJJ5M:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 200px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1h7d65y-container\",layoutDependency:layoutDependency,layoutId:\"RspiFetzc-container\",nodeId:\"RspiFetzc\",rendersWithMotion:true,scopeId:\"zqFjTTcgn\",style:{transformPerspective:1200},variants:{GpetBw01s:{transformPerspective:undefined},hlTqGcIMZ:{transformPerspective:undefined},qrYzBJJ5M:{transformPerspective:undefined}},...addPropertyOverrides({GpetBw01s:{__framer__styleAppearEffectEnabled:undefined},hlTqGcIMZ:{__framer__styleAppearEffectEnabled:undefined},qrYzBJJ5M:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(CardBrand,{FGBLuU585:resolvedLinks[0],G6l67NRzN:enumToDisplayNameFunctions[\"SNzXc9qW1\"]?.(SNzXc9qW1aTI_m75rc,activeLocale),height:\"100%\",id:\"RspiFetzc\",layoutId:\"RspiFetzc\",LRL_mvDaJ:vaSY19i4PaTI_m75rc,style:{width:\"100%\"},variant:\"Jhx9P6akf\",width:\"100%\",xuMNzM7cK:toResponsiveImage(GSEMEwnpzaTI_m75rc),...addPropertyOverrides({GpetBw01s:{FGBLuU585:resolvedLinks[1]},hlTqGcIMZ:{FGBLuU585:resolvedLinks[2]},qrYzBJJ5M:{FGBLuU585:resolvedLinks[3]}},baseVariant,gestureVariant)})})})})})})},idaTI_m75rc);})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qijxus\",\"data-framer-name\":\"Alles Anzeigen Mobile\",layoutDependency:layoutDependency,layoutId:\"TiOGibx7y\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIENvbXBhY3QgRGlzcGxheSBTZW1pYm9sZA==\",\"--framer-font-family\":'\"SF Compact Display Semibold\", \"SF Compact Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:wNjwE3uYr,motionChild:true,nodeId:\"L23WjkxYA\",openInNewTab:false,scopeId:\"zqFjTTcgn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1rbm6jn\",\"data-styles-preset\":\"FP95AICZ2\",children:\"mehr anzeigen \"})})})}),className:\"framer-u1lkvm\",fonts:[\"CUSTOM;SF Compact Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"L23WjkxYA\",style:{\"--extracted-r6o4lv\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-83X8i.framer-cpoml, .framer-83X8i .framer-cpoml { display: block; }\",\".framer-83X8i.framer-1g621it { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1140px; }\",\".framer-83X8i .framer-10lyfsa { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-83X8i .framer-k4u5uk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-83X8i .framer-scds5s-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-83X8i .framer-1p16ea4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-83X8i .framer-l7zwku, .framer-83X8i .framer-u1lkvm { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-83X8i .framer-1ars3x6 { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: start; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-83X8i .framer-2vobx6 { align-self: start; display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: auto; justify-content: center; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-83X8i .framer-1h7d65y-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 1fr; }\",\".framer-83X8i .framer-1qijxus { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 35px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-83X8i.framer-1g621it, .framer-83X8i .framer-10lyfsa, .framer-83X8i .framer-k4u5uk, .framer-83X8i .framer-1p16ea4, .framer-83X8i .framer-1qijxus { gap: 0px; } .framer-83X8i.framer-1g621it > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-83X8i.framer-1g621it > :first-child { margin-top: 0px; } .framer-83X8i.framer-1g621it > :last-child { margin-bottom: 0px; } .framer-83X8i .framer-10lyfsa > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-83X8i .framer-10lyfsa > :first-child, .framer-83X8i .framer-k4u5uk > :first-child, .framer-83X8i .framer-1p16ea4 > :first-child, .framer-83X8i .framer-1qijxus > :first-child { margin-left: 0px; } .framer-83X8i .framer-10lyfsa > :last-child, .framer-83X8i .framer-k4u5uk > :last-child, .framer-83X8i .framer-1p16ea4 > :last-child, .framer-83X8i .framer-1qijxus > :last-child { margin-right: 0px; } .framer-83X8i .framer-k4u5uk > *, .framer-83X8i .framer-1p16ea4 > *, .framer-83X8i .framer-1qijxus > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-83X8i.framer-v-1ico4kq.framer-1g621it, .framer-83X8i.framer-v-xgl1l3.framer-1g621it { cursor: unset; gap: 25px; }\",\".framer-83X8i.framer-v-1ico4kq .framer-10lyfsa { overflow: visible; position: sticky; top: 68px; z-index: 1; }\",\".framer-83X8i.framer-v-1ico4kq .framer-l7zwku { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-83X8i.framer-v-1ico4kq.framer-1g621it { gap: 0px; } .framer-83X8i.framer-v-1ico4kq.framer-1g621it > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-83X8i.framer-v-1ico4kq.framer-1g621it > :first-child { margin-top: 0px; } .framer-83X8i.framer-v-1ico4kq.framer-1g621it > :last-child { margin-bottom: 0px; } }\",\".framer-83X8i.framer-v-19946pk.framer-1g621it { width: 380px; }\",\".framer-83X8i.framer-v-19946pk .framer-k4u5uk, .framer-83X8i.framer-v-pvrvt7 .framer-k4u5uk { padding: 15px 0px 15px 0px; }\",\".framer-83X8i.framer-v-pvrvt7.framer-1g621it { align-content: flex-end; align-items: flex-end; cursor: unset; gap: 0px; width: 380px; }\",\".framer-83X8i.framer-v-pvrvt7 .framer-10lyfsa { position: sticky; top: 69px; z-index: 1; }\",\".framer-83X8i.framer-v-pvrvt7 .framer-1ars3x6 { gap: 0px; grid-template-columns: repeat(1, minmax(200px, 1fr)); }\",\".framer-83X8i.framer-v-pvrvt7 .framer-2vobx6 { gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-83X8i.framer-v-pvrvt7.framer-1g621it, .framer-83X8i.framer-v-pvrvt7 .framer-1ars3x6, .framer-83X8i.framer-v-pvrvt7 .framer-2vobx6 { gap: 0px; } .framer-83X8i.framer-v-pvrvt7.framer-1g621it > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-83X8i.framer-v-pvrvt7.framer-1g621it > :first-child { margin-top: 0px; } .framer-83X8i.framer-v-pvrvt7.framer-1g621it > :last-child { margin-bottom: 0px; } .framer-83X8i.framer-v-pvrvt7 .framer-1ars3x6 > *, .framer-83X8i.framer-v-pvrvt7 .framer-1ars3x6 > :first-child, .framer-83X8i.framer-v-pvrvt7 .framer-1ars3x6 > :last-child, .framer-83X8i.framer-v-pvrvt7 .framer-2vobx6 > *, .framer-83X8i.framer-v-pvrvt7 .framer-2vobx6 > :first-child, .framer-83X8i.framer-v-pvrvt7 .framer-2vobx6 > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-83X8i.framer-v-xgl1l3.framer-1g621it { gap: 0px; } .framer-83X8i.framer-v-xgl1l3.framer-1g621it > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-83X8i.framer-v-xgl1l3.framer-1g621it > :first-child { margin-top: 0px; } .framer-83X8i.framer-v-xgl1l3.framer-1g621it > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-83X8i[data-border=\"true\"]::after, .framer-83X8i [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 140\n * @framerIntrinsicWidth 1140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GpetBw01s\":{\"layout\":[\"fixed\",\"auto\"]},\"sGMk43A7J\":{\"layout\":[\"fixed\",\"auto\"]},\"hlTqGcIMZ\":{\"layout\":[\"fixed\",\"auto\"]},\"bBlBteJU0\":{\"layout\":[\"fixed\",\"auto\"]},\"qrYzBJJ5M\":{\"layout\":[\"fixed\",\"auto\"]},\"GujQNIs6F\":{\"layout\":[\"fixed\",\"auto\"]},\"W4GM6dMls\":{\"layout\":[\"fixed\",\"auto\"]},\"i73_93rfy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"KT211s3sR\":\"text\",\"wNjwE3uYr\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerzqFjTTcgn=withCSS(Component,css,\"framer-83X8i\");export default FramerzqFjTTcgn;FramerzqFjTTcgn.displayName=\"Brand Row Prada\";FramerzqFjTTcgn.defaultProps={height:140,width:1140};addPropertyControls(FramerzqFjTTcgn,{variant:{options:[\"ocC7i1PLe\",\"GpetBw01s\",\"sGMk43A7J\",\"hlTqGcIMZ\",\"bBlBteJU0\",\"qrYzBJJ5M\"],optionTitles:[\"Desktop\",\"Desktop Open\",\"Mobile\",\"Mobile Open\",\"Tablet\",\"Tablet Open\"],title:\"Variant\",type:ControlType.Enum},KT211s3sR:{defaultValue:\"BRAND\",displayTextArea:true,title:\"Text\",type:ControlType.String},wNjwE3uYr:{title:\"Link\",type:ControlType.Link}});addFonts(FramerzqFjTTcgn,[{explicitInter:true,fonts:[{family:\"Helvetica Neue Condensed Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/m51RfBUZWFtucHm4D3e07GJwU.otf\"},{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:\"SF Compact Display Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZPX5QyU8gHyYADt5u1je3kqbnvc.otf\"}]},...MagTextFonts,...CardBrandFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzqFjTTcgn\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1140\",\"framerIntrinsicHeight\":\"140\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GpetBw01s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sGMk43A7J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hlTqGcIMZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bBlBteJU0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qrYzBJJ5M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GujQNIs6F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W4GM6dMls\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i73_93rfy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"KT211s3sR\\\":\\\"text\\\",\\\"wNjwE3uYr\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "zoom", "radius", "border", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "MagTextFonts", "getFonts", "MagText", "CardBrandFonts", "rWlPZbm7N_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "border", "height", "id", "link", "text", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "KT211s3sR", "wNjwE3uYr", "NHgyWC94N", "uulcserP6eiHTFbV65", "GSEMEwnpzeiHTFbV65", "SNzXc9qW1eiHTFbV65", "vaSY19i4PeiHTFbV65", "ideiHTFbV65", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1an0gkc", "args", "onTap1snozca", "onTap24eljh", "onTapfbv9ab", "onTapvdlj9s", "onTapw999yy", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "MagText", "RichText", "Link", "ChildrenCanSuspend", "kFZ9bhFxc_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "SmartComponentScopedContainerWithFX", "transition2", "animation", "animation1", "rWlPZbm7N_default", "enumToDisplayNameFunctions", "toResponsiveImage", "css", "Framerad5gLOIn8", "withCSS", "ad5gLOIn8_default", "addPropertyControls", "ControlType", "addFonts", "MagTextFonts", "CardBrandFonts", "getFontsFromSharedStyle", "fonts", "MagTextFonts", "getFonts", "MagText", "CardBrandFonts", "rWlPZbm7N_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "KT211s3sR", "wNjwE3uYr", "uulcserP6IrdGA1w5l", "GSEMEwnpzIrdGA1w5l", "SNzXc9qW1IrdGA1w5l", "vaSY19i4PIrdGA1w5l", "idIrdGA1w5l", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapbvguzu", "args", "onTapeqlstq", "onTapi7cp9v", "onTap1p3tim7", "onTap1tex4nq", "onTapiydisv", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "MagText", "RichText", "Link", "ChildrenCanSuspend", "kFZ9bhFxc_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "SmartComponentScopedContainerWithFX", "transition2", "animation", "animation1", "rWlPZbm7N_default", "enumToDisplayNameFunctions", "toResponsiveImage", "css", "FramerB_AbXyhLc", "withCSS", "B_AbXyhLc_default", "addPropertyControls", "ControlType", "addFonts", "MagTextFonts", "CardBrandFonts", "getFontsFromSharedStyle", "fonts", "MagTextFonts", "getFonts", "MagText", "CardBrandFonts", "rWlPZbm7N_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "KT211s3sR", "wNjwE3uYr", "uulcserP6R_39g8bLo", "GSEMEwnpzR_39g8bLo", "SNzXc9qW1R_39g8bLo", "vaSY19i4PR_39g8bLo", "idR_39g8bLo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap12qd78i", "args", "onTap1bwvr91", "onTapucjuh5", "onTapnkgz5w", "onTapw4z9uc", "onTap9ntk16", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "MagText", "RichText", "Link", "ChildrenCanSuspend", "kFZ9bhFxc_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "SmartComponentScopedContainerWithFX", "transition2", "animation", "animation1", "rWlPZbm7N_default", "enumToDisplayNameFunctions", "toResponsiveImage", "css", "FramercvBLDx_ff", "withCSS", "cvBLDx_ff_default", "addPropertyControls", "ControlType", "addFonts", "MagTextFonts", "CardBrandFonts", "getFontsFromSharedStyle", "fonts", "MagTextFonts", "getFonts", "MagText", "CardBrandFonts", "rWlPZbm7N_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "KT211s3sR", "wNjwE3uYr", "uulcserP6tgEFeSGz8", "GSEMEwnpztgEFeSGz8", "SNzXc9qW1tgEFeSGz8", "vaSY19i4PtgEFeSGz8", "idtgEFeSGz8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1gxffj8", "args", "onTap1dhcu62", "onTapfa4a2m", "onTapcg31bh", "onTap6kwt4b", "onTaph8yegm", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "MagText", "RichText", "Link", "ChildrenCanSuspend", "kFZ9bhFxc_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "SmartComponentScopedContainerWithFX", "transition2", "animation", "animation1", "rWlPZbm7N_default", "enumToDisplayNameFunctions", "toResponsiveImage", "css", "Frameriw_bSNG5Z", "withCSS", "iw_bSNG5Z_default", "addPropertyControls", "ControlType", "addFonts", "MagTextFonts", "CardBrandFonts", "getFontsFromSharedStyle", "fonts", "MagTextFonts", "getFonts", "MagText", "CardBrandFonts", "rWlPZbm7N_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "KT211s3sR", "wNjwE3uYr", "uulcserP6LsF32zyF5", "GSEMEwnpzLsF32zyF5", "SNzXc9qW1LsF32zyF5", "vaSY19i4PLsF32zyF5", "idLsF32zyF5", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapitb3lv", "args", "onTap95qifx", "onTap1krw6wr", "onTap1lmtvmu", "onTap1pj7ktx", "onTap18s9f9d", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "MagText", "RichText", "Link", "ChildrenCanSuspend", "kFZ9bhFxc_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "SmartComponentScopedContainerWithFX", "transition2", "animation", "animation1", "rWlPZbm7N_default", "enumToDisplayNameFunctions", "toResponsiveImage", "css", "FramerJuyYeEj5K", "withCSS", "JuyYeEj5K_default", "addPropertyControls", "ControlType", "addFonts", "MagTextFonts", "CardBrandFonts", "getFontsFromSharedStyle", "fonts", "MagTextFonts", "getFonts", "MagText", "CardBrandFonts", "rWlPZbm7N_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "KT211s3sR", "wNjwE3uYr", "uulcserP6SHngXQ0S0", "GSEMEwnpzSHngXQ0S0", "SNzXc9qW1SHngXQ0S0", "vaSY19i4PSHngXQ0S0", "idSHngXQ0S0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapsdf1i", "args", "onTapqfyzed", "onTap1ixbd2p", "onTapacrgjl", "onTap1beje3z", "onTap15b923o", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "MagText", "RichText", "Link", "ChildrenCanSuspend", "kFZ9bhFxc_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "SmartComponentScopedContainerWithFX", "transition2", "animation", "animation1", "rWlPZbm7N_default", "enumToDisplayNameFunctions", "toResponsiveImage", "css", "FramerqTbMOsIW4", "withCSS", "qTbMOsIW4_default", "addPropertyControls", "ControlType", "addFonts", "MagTextFonts", "CardBrandFonts", "getFontsFromSharedStyle", "fonts", "ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "VideoFonts", "getFonts", "Video", "ElementsAvatarCopyFonts", "FqDwSbkX4_default", "CategoryHyperlinkFonts", "VRrVsG8d4_default", "Video1Controls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "brandLink", "brandLogo", "brandName", "category", "height", "id", "image", "link", "title", "video", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "FGBLuU585", "xuMNzM7cK", "G6l67NRzN", "LRL_mvDaJ", "mdVAR5_ZZ", "CjYBj7rBx", "bEd8uPVyM", "qara6xhl3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "visible", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "css", "FramertIjQbQAYo", "withCSS", "tIjQbQAYo_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "category", "height", "id", "image", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "I8p0dzc3B", "jlJ8s0aqJ", "cWEobvcG5", "w73TwTG4d", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "Framerv5Ua4OmU3", "withCSS", "v5Ua4OmU3_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Component", "IconInner", "Icon", "React", "props", "ref", "House_default", "Icon", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "radiusForCorner", "value", "cornerIndex", "segments", "transition1", "transition2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "borderRadius", "buttonLabel", "click", "height", "iconLeft", "iconLeftVisible", "iconRight", "iconRightVisible", "id", "labelText", "link", "newTab", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ewhxR7fOM", "TTxnyLF_5", "cqVn8zY_I", "H13AV0Kq9", "kAG7qdjE9", "IOCaLunmc", "aWw_6KcCZ", "tQqXqVioD", "VqIbSwMW5", "iHVTyAHVh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap9erjit", "args", "onTap1ukbect", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "css", "FramerYdrt0kReC", "withCSS", "Ydrt0kReC_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonCopyFonts", "getFonts", "Ydrt0kReC_default", "CardEditorsNotesFonts", "v5Ua4OmU3_default", "CarouselFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "click2", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "TLMtpFVQr", "D06xkLXgW", "uulcserP6Oxffzh5IR", "vaSY19i4POxffzh5IR", "GSEMEwnpzOxffzh5IR", "SNzXc9qW1Oxffzh5IR", "idOxffzh5IR", "uulcserP6gcvX5FL6q", "vaSY19i4PgcvX5FL6q", "GSEMEwnpzgcvX5FL6q", "SNzXc9qW1gcvX5FL6q", "idgcvX5FL6q", "uulcserP6xMhoQIa95", "vaSY19i4PxMhoQIa95", "GSEMEwnpzxMhoQIa95", "SNzXc9qW1xMhoQIa95", "idxMhoQIa95", "uulcserP6z2eGN4FG9", "vaSY19i4Pz2eGN4FG9", "GSEMEwnpzz2eGN4FG9", "SNzXc9qW1z2eGN4FG9", "idz2eGN4FG9", "uulcserP6V_zjexuvv", "vaSY19i4PV_zjexuvv", "GSEMEwnpzV_zjexuvv", "SNzXc9qW1V_zjexuvv", "idV_zjexuvv", "uulcserP6gUEVkbrbD", "vaSY19i4PgUEVkbrbD", "GSEMEwnpzgUEVkbrbD", "SNzXc9qW1gUEVkbrbD", "idgUEVkbrbD", "uulcserP6dBuAlyFSj", "vaSY19i4PdBuAlyFSj", "GSEMEwnpzdBuAlyFSj", "SNzXc9qW1dBuAlyFSj", "iddBuAlyFSj", "uulcserP6ewisNTJUE", "vaSY19i4PewisNTJUE", "GSEMEwnpzewisNTJUE", "SNzXc9qW1ewisNTJUE", "idewisNTJUE", "uulcserP6KAmoelhI9", "vaSY19i4PKAmoelhI9", "GSEMEwnpzKAmoelhI9", "SNzXc9qW1KAmoelhI9", "idKAmoelhI9", "uulcserP6qEb4REq79", "vaSY19i4PqEb4REq79", "GSEMEwnpzqEb4REq79", "SNzXc9qW1qEb4REq79", "idqEb4REq79", "uulcserP6p5ybFFQxC", "vaSY19i4Pp5ybFFQxC", "GSEMEwnpzp5ybFFQxC", "SNzXc9qW1p5ybFFQxC", "idp5ybFFQxC", "uulcserP6JHVL17uGu", "vaSY19i4PJHVL17uGu", "GSEMEwnpzJHVL17uGu", "SNzXc9qW1JHVL17uGu", "idJHVL17uGu", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "iHVTyAHVh1hq95ej", "args", "iHVTyAHVh1a83ber", "iHVTyAHVh15kyhcx", "iHVTyAHVhva3bsa", "iHVTyAHVhxwyim9", "iHVTyAHVh1evd3d4", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ydrt0kReC_default", "Carousel", "ChildrenCanSuspend", "QueryData", "kFZ9bhFxc_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "v5Ua4OmU3_default", "toResponsiveImage", "enumToDisplayNameFunctions", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks1", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks2", "collection3", "paginationInfo3", "loadMore3", "index3", "resolvedLinks3", "collection4", "paginationInfo4", "loadMore4", "index4", "resolvedLinks4", "collection5", "paginationInfo5", "loadMore5", "index5", "resolvedLinks5", "index6", "collection6", "paginationInfo6", "loadMore6", "index7", "resolvedLinks6", "collection7", "paginationInfo7", "loadMore7", "index8", "resolvedLinks7", "collection8", "paginationInfo8", "loadMore8", "index9", "resolvedLinks8", "collection9", "paginationInfo9", "loadMore9", "index10", "resolvedLinks9", "index11", "index12", "index13", "collection10", "paginationInfo10", "loadMore10", "index14", "resolvedLinks10", "index15", "index16", "index17", "index18", "collection11", "paginationInfo11", "loadMore11", "index19", "resolvedLinks11", "index20", "index21", "css", "FramerWyeTZ0F8x", "withCSS", "WyeTZ0F8x_default", "addPropertyControls", "ControlType", "addFonts", "ButtonCopyFonts", "CardEditorsNotesFonts", "CarouselFonts", "MagTextFonts", "getFonts", "MagText", "CardBrandFonts", "rWlPZbm7N_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "equals", "a", "b", "convertFromBoolean", "activeLocale", "getGridColumnCSSValue", "columnSpan", "optionalColumnCount", "spanCount", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "KT211s3sR", "wNjwE3uYr", "uulcserP6E5nCNVjLz", "GSEMEwnpzE5nCNVjLz", "SNzXc9qW1E5nCNVjLz", "vaSY19i4PE5nCNVjLz", "idE5nCNVjLz", "repeater_item_indexw0Uvk_HY8", "uulcserP6w0Uvk_HY8", "GSEMEwnpzw0Uvk_HY8", "SNzXc9qW1w0Uvk_HY8", "vaSY19i4Pw0Uvk_HY8", "idw0Uvk_HY8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapdx2zvo", "args", "onTaptytne4", "onTapqovzsk", "onTap19kvyji", "onTapsaakh6", "onTap11sj579", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "isDisplayed3", "isDisplayed4", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "MagText", "RichText", "Link", "ChildrenCanSuspend", "QueryData", "kFZ9bhFxc_default", "collection", "paginationInfo1", "loadMore1", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "SmartComponentScopedContainerWithFX", "transition2", "animation", "animation1", "rWlPZbm7N_default", "enumToDisplayNameFunctions", "toResponsiveImage", "collection1", "paginationInfo", "loadMore", "index1", "gridItemColumnSpan", "getGridColumnCSSValue", "convertFromBoolean", "equals", "gridItemColumnSpan1", "resolvedLinks1", "css", "FramerysaQdmCgY", "withCSS", "ysaQdmCgY_default", "addPropertyControls", "ControlType", "addFonts", "MagTextFonts", "CardBrandFonts", "getFontsFromSharedStyle", "fonts", "MagTextFonts", "getFonts", "MagText", "CardBrandFonts", "rWlPZbm7N_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "KT211s3sR", "wNjwE3uYr", "uulcserP6aTI_m75rc", "GSEMEwnpzaTI_m75rc", "SNzXc9qW1aTI_m75rc", "vaSY19i4PaTI_m75rc", "idaTI_m75rc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap8r1bvw", "args", "onTap5hzne4", "onTapzc06mu", "onTap1xgld4w", "onTapq1rnmd", "onTap1n2ht1q", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "MagText", "RichText", "Link", "ChildrenCanSuspend", "kFZ9bhFxc_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "SmartComponentScopedContainerWithFX", "transition2", "animation", "animation1", "rWlPZbm7N_default", "enumToDisplayNameFunctions", "toResponsiveImage", "css", "FramerzqFjTTcgn", "withCSS", "zqFjTTcgn_default", "addPropertyControls", "ControlType", "addFonts", "MagTextFonts", "CardBrandFonts", "getFontsFromSharedStyle", "fonts"]
}
