{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/q6TPcm1rVRPb4ymPsf0M/ukEM2DrdqZklbSePOgRx/TableOfContent.js", "ssg:https://framerusercontent.com/modules/k4kf0WYQMbdsLphevh0A/B8zWvaJCDthK4X6405oa/dwNCuzs7U.js", "ssg:https://framerusercontent.com/modules/2PygANdsvIk0aLaBiOls/6voS4RQvUEAg8xRvH1Mc/RfYbWN9Mu.js", "ssg:https://framerusercontent.com/modules/agt3M2ZZZdfvOMUoc7cp/T6Kl2S5E9UgOplbJbLgy/Link_copy.js", "ssg:https://framerusercontent.com/modules/o90AaMpWMiNfpQMcmt9D/xNnHxSfTSwkWmzxoGcrf/Share.js", "ssg:https://framerusercontent.com/modules/owoSn91RrGNKqDpIXIeA/Il1dcY2ws8Yr46My6m0V/X_or_Twitter.js", "ssg:https://framerusercontent.com/modules/pLNTku3VRu9dkw0WgzPY/Fg328IDZmEPKdslvAOp7/Facebook_Share.js", "ssg:https://framerusercontent.com/modules/qzDQE7x8UNj1Q5pIpbp0/wEuwvhj6RjJBwGJANd4L/Email_share.js", "ssg:https://framerusercontent.com/modules/sY6ZGIm80oC6QX52QNcD/ebuKBvlCb2B70HxHz36T/Xwe4dQVvm.js", "ssg:https://framerusercontent.com/modules/ikc1To8k9QWfFxE0h1mb/tYfYMUgYwV68LuyZNyOu/UK8V2guuc.js", "ssg:https://framerusercontent.com/modules/j7oRp5vBMPZa5Lno5sNX/evLgpLVMvkazuXt5GNoa/UQvNnAraO.js", "ssg:https://framerusercontent.com/modules/aquDhS2LTiJ4FZ3uPILr/MWbfWRDnolDR5Bv0EyAQ/BwAeQTkMY.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,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,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\";}}});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,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},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(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_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===null||iframeWindow===void 0?void 0:iframeWindow.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                min-height: 100vh;\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\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerIntrinsicWidth 600\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicHeight 400\n */export default function Table_of_Content(props){const[headers,setHeaders]=useState([]);const[activeId,setActiveId]=useState(\"\");const[firstHeadingLevel,setFirstHeadingLevel]=useState(null);const ignoreNextScrollEvent=useRef(false);const scrollTimeoutRef=useRef(null);useEffect(()=>{const sectionElement=document.getElementById(props.section_id)||document.body;const headingElements=Array.from(sectionElement.querySelectorAll(\"h1, h2, h3, h4, h5, h6\"));if(headingElements.length>0&&firstHeadingLevel===null){setFirstHeadingLevel(parseInt(headingElements[0].tagName[1],10));}const headers=headingElements.map((element,index)=>{if(!element.id){element.id=`header-${index}`;}return{id:element.id,text:element.innerText,level:parseInt(element.tagName[1],10)};});setHeaders(headers);},[props.section_id,firstHeadingLevel]);useEffect(()=>{const onScroll=()=>{if(ignoreNextScrollEvent.current){ignoreNextScrollEvent.current=false;return;}let currentSectionId=\"\";headers.forEach(header=>{const element=document.getElementById(header.id);const scrollPosition=element.getBoundingClientRect().top+window.scrollY;if(scrollPosition<window.scrollY+props.yOffset+5){currentSectionId=header.id;}});setActiveId(currentSectionId);};window.addEventListener(\"scroll\",onScroll);return()=>window.removeEventListener(\"scroll\",onScroll);},[headers,props.yOffset]);const getStyle=header=>{const indentation=firstHeadingLevel?header.level-firstHeadingLevel:0;const headerFont=props[`h${header.level}Font`]||{};return{display:\"block\",...headerFont,color:header.id===activeId?props.activeColor:props.fontColor,fontWeight:header.id===activeId?props.activeFontWeight:headerFont.fontWeight||\"normal\",textDecoration:\"none\",marginBottom:`${props.spacing}px`,marginLeft:`${indentation*props.indentation}px`};};const handleClick=headerId=>{ignoreNextScrollEvent.current=true;const element=document.getElementById(headerId);if(element){const y=element.getBoundingClientRect().top+window.pageYOffset-props.yOffset;window.scrollTo({top:y,behavior:\"smooth\"});checkIfScrollFinished(headerId);}};const checkIfScrollFinished=headerId=>{if(scrollTimeoutRef.current){clearTimeout(scrollTimeoutRef.current);}const isScrolled=()=>{const element=document.getElementById(headerId);if(element){const rect=element.getBoundingClientRect();return Math.abs(rect.top-props.yOffset)<=1;}return false;};const checkScroll=()=>{if(isScrolled()){setActiveId(headerId);}else{scrollTimeoutRef.current=setTimeout(()=>{requestAnimationFrame(checkScroll);},10);}};checkScroll();};return /*#__PURE__*/_jsx(\"div\",{children:headers.filter(header=>props[`showH${header.level}`]!==false).map(header=>/*#__PURE__*/_jsx(\"a\",{href:`#${header.id}`,style:getStyle(header),onMouseOver:e=>e.currentTarget.style.color=props.onHoverColor,onMouseOut:e=>{e.currentTarget.style.color=header.id===activeId?props.activeColor:props.fontColor;e.currentTarget.style.fontWeight=header.id===activeId?props.activeFontWeight:getStyle(header).fontWeight;},onClick:e=>{e.preventDefault();handleClick(header.id);},children:header.text},header.id))});}Table_of_Content.defaultProps={section_id:\"\",fontColor:\"#000000\",activeColor:\"#FF0000\",onHoverColor:\"#00FF00\",spacing:8,indentation:10,yOffset:0,activeFontWeight:\"bold\"};addPropertyControls(Table_of_Content,{section_id:{type:ControlType.String,title:\"Section ID\"},fontColor:{type:ControlType.Color,title:\"Font Color\"},activeColor:{type:ControlType.Color,title:\"Active Color\"},onHoverColor:{type:ControlType.Color,title:\"On Hover Color\"},spacing:{type:ControlType.Number,title:\"Spacing\"},indentation:{type:ControlType.Number,title:\"Indentation\"},yOffset:{type:ControlType.Number,title:\"Y Offset\",min:0,max:200,step:1},activeFontWeight:{type:ControlType.Enum,title:\"Active Font Weight\",options:[\"normal\",\"bold\",\"bolder\",\"lighter\",\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"],defaultValue:\"bold\"},showH1:{type:ControlType.Boolean,title:\"Show H1\",defaultValue:true},showH2:{type:ControlType.Boolean,title:\"Show H2\",defaultValue:true},showH3:{type:ControlType.Boolean,title:\"Show H3\",defaultValue:true},showH4:{type:ControlType.Boolean,title:\"Show H4\",defaultValue:true},showH5:{type:ControlType.Boolean,title:\"Show H5\",defaultValue:true},showH6:{type:ControlType.Boolean,title:\"Show H6\",defaultValue:true},h1Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H1 Font\"},h2Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H2 Font\"},h3Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H3 Font\"},h4Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H4 Font\"},h5Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H5 Font\"},h6Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H6 Font\",description:\"v1.0 \\n[via SegmentUI](https://www.segmentUI.com)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Table_of_Content\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContent.map", "// Generated by Framer (c56cc2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";const IconoirFonts=getFonts(Iconoir);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"jSjhQrbej\",\"cBDH_bg4q\",\"DY1Lwsq4p\",\"jlTUxLIiI\",\"Bptd8A13r\",\"flkgb6U69\",\"K3J9clZQA\",\"HrVIPzlkN\",\"zbUZ8LRs6\",\"tm1AafvCB\",\"p4sAX6Hdn\",\"nm0iEgiYP\",\"BiSdMcxYg\"];const serializationHash=\"framer-jClUF\";const variantClassNames={BiSdMcxYg:\"framer-v-1e6ihza\",Bptd8A13r:\"framer-v-1lu7aig\",cBDH_bg4q:\"framer-v-irh7it\",DY1Lwsq4p:\"framer-v-1golanj\",flkgb6U69:\"framer-v-1cz7jj0\",HrVIPzlkN:\"framer-v-1c9l85i\",jlTUxLIiI:\"framer-v-1uk1jq0\",jSjhQrbej:\"framer-v-dh2jm0\",K3J9clZQA:\"framer-v-kmdj1c\",nm0iEgiYP:\"framer-v-gfnw72\",p4sAX6Hdn:\"framer-v-1ev3nes\",tm1AafvCB:\"framer-v-1hml3sf\",zbUZ8LRs6:\"framer-v-1it0fyk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Facebook - Cream\":\"tm1AafvCB\",\"Facebook - Pink\":\"DY1Lwsq4p\",\"Facebook - White\":\"jSjhQrbej\",\"Instagram - Cream\":\"nm0iEgiYP\",\"Instagram - Pink\":\"flkgb6U69\",\"Instagram - White\":\"HrVIPzlkN\",\"Link - Pink\":\"Bptd8A13r\",\"X - Cream\":\"p4sAX6Hdn\",\"X - Pink\":\"jlTUxLIiI\",\"X - White\":\"cBDH_bg4q\",\"YouTube - Cream\":\"BiSdMcxYg\",\"Youtube - Pink\":\"K3J9clZQA\",\"YouTube White\":\"zbUZ8LRs6\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"jSjhQrbej\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jSjhQrbej\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isDisplayed=()=>{if(baseVariant===\"Bptd8A13r\")return false;return true;};const ref1=React.useRef(null);const isDisplayed1=()=>{if(baseVariant===\"DY1Lwsq4p\")return true;return false;};const isDisplayed2=()=>{if([\"flkgb6U69\",\"K3J9clZQA\",\"HrVIPzlkN\",\"zbUZ8LRs6\",\"nm0iEgiYP\",\"BiSdMcxYg\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"cBDH_bg4q\",\"DY1Lwsq4p\",\"jlTUxLIiI\",\"flkgb6U69\",\"K3J9clZQA\",\"HrVIPzlkN\",\"zbUZ8LRs6\",\"p4sAX6Hdn\",\"nm0iEgiYP\",\"BiSdMcxYg\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"cBDH_bg4q\",\"jlTUxLIiI\",\"p4sAX6Hdn\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/youtini/\",nodeId:\"jSjhQrbej\",openInNewTab:true,...addPropertyOverrides({BiSdMcxYg:{href:\"https://www.youtube.com/channel/UCXicvaZ39-OeUDjzzmztBUg/feature\"},cBDH_bg4q:{href:\"https://twitter.com/youtini_us\"},flkgb6U69:{href:\"https://www.instagram.com/youtini_us\"},HrVIPzlkN:{href:\"https://www.instagram.com/youtini_us\"},jlTUxLIiI:{href:\"https://twitter.com/youtini_us\"},K3J9clZQA:{href:\"https://www.youtube.com/channel/UCXicvaZ39-OeUDjzzmztBUg/feature\"},nm0iEgiYP:{href:\"https://www.instagram.com/youtini_us\"},p4sAX6Hdn:{href:\"https://twitter.com/youtini_us\"},zbUZ8LRs6:{href:\"https://www.youtube.com/channel/UCXicvaZ39-OeUDjzzmztBUg/feature\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-dh2jm0\",className,classNames)} framer-w07ir0`,\"data-border\":true,\"data-framer-name\":\"Facebook - White\",layoutDependency:layoutDependency,layoutId:\"jSjhQrbej\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-2e980aa7-cbec-439d-a121-25c531908ab0, rgb(245, 245, 245))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{BiSdMcxYg:{\"--border-color\":\"var(--token-33327397-4492-40f6-9bf2-16338d770024, rgb(255, 249, 236))\"},DY1Lwsq4p:{\"--border-color\":\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\"},flkgb6U69:{\"--border-color\":\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\"},jlTUxLIiI:{\"--border-color\":\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\"},K3J9clZQA:{\"--border-color\":\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\"},nm0iEgiYP:{\"--border-color\":\"var(--token-33327397-4492-40f6-9bf2-16338d770024, rgb(255, 249, 236))\"},p4sAX6Hdn:{\"--border-color\":\"var(--token-33327397-4492-40f6-9bf2-16338d770024, rgb(255, 249, 236))\"},tm1AafvCB:{\"--border-color\":\"var(--token-33327397-4492-40f6-9bf2-16338d770024, rgb(255, 249, 236))\"}},...addPropertyOverrides({BiSdMcxYg:{\"data-framer-name\":\"YouTube - Cream\"},cBDH_bg4q:{\"data-framer-name\":\"X - White\"},DY1Lwsq4p:{\"data-framer-name\":\"Facebook - Pink\"},flkgb6U69:{\"data-framer-name\":\"Instagram - Pink\"},HrVIPzlkN:{\"data-framer-name\":\"Instagram - White\"},jlTUxLIiI:{\"data-framer-name\":\"X - Pink\"},K3J9clZQA:{\"data-framer-name\":\"Youtube - Pink\"},nm0iEgiYP:{\"data-framer-name\":\"Instagram - Cream\"},p4sAX6Hdn:{\"data-framer-name\":\"X - Cream\"},tm1AafvCB:{\"data-framer-name\":\"Facebook - Cream\"},zbUZ8LRs6:{\"data-framer-name\":\"YouTube White\"}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-108qrv9\",\"data-framer-name\":\"Facebook Icon - Pink\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"w1ILS8slZ\",svg:'<svg width=\"8\" height=\"16\" viewBox=\"0 0 8 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.19264 15.1992V8.63071H7.55129L7.90441 6.07085H5.19264V4.43645C5.19264 3.69532 5.41283 3.19021 6.54986 3.19021L8 3.18958V0.900075C7.74909 0.868992 6.88833 0.799316 5.88691 0.799316C3.79614 0.799316 2.36475 1.99222 2.36475 4.18306V6.07092H0V8.63078H2.36467V15.1993L5.19264 15.1992Z\" fill=\"#954386\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1apnmg-container\",layoutDependency:layoutDependency,layoutId:\"brUC0esx7-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Instagram\",id:\"brUC0esx7\",layoutId:\"brUC0esx7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({BiSdMcxYg:{color:\"var(--token-2e980aa7-cbec-439d-a121-25c531908ab0, rgb(245, 245, 245))\",iconSelection:\"YouTube\"},HrVIPzlkN:{color:\"var(--token-2e980aa7-cbec-439d-a121-25c531908ab0, rgb(245, 245, 245))\"},K3J9clZQA:{iconSelection:\"YouTube\"},nm0iEgiYP:{color:\"var(--token-2e980aa7-cbec-439d-a121-25c531908ab0, rgb(245, 245, 245))\"},zbUZ8LRs6:{color:\"var(--token-2e980aa7-cbec-439d-a121-25c531908ab0, rgb(245, 245, 245))\",iconSelection:\"YouTube\"}},baseVariant,gestureVariant)})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-417grm-container\",layoutDependency:layoutDependency,layoutId:\"fXTZWkhY5-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-2e980aa7-cbec-439d-a121-25c531908ab0, rgb(245, 245, 245))\",height:\"100%\",iconSearch:\"facebook\",iconSelection:\"Facebook\",id:\"fXTZWkhY5\",layoutId:\"fXTZWkhY5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({tm1AafvCB:{color:\"var(--token-33327397-4492-40f6-9bf2-16338d770024, rgb(255, 249, 236))\"}},baseVariant,gestureVariant)})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-164wogs-container\",layoutDependency:layoutDependency,layoutId:\"XzTFRYk7d-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2e980aa7-cbec-439d-a121-25c531908ab0, rgb(245, 245, 245))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"XLogo\",id:\"XzTFRYk7d\",layoutId:\"XzTFRYk7d\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({jlTUxLIiI:{color:\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\"},p4sAX6Hdn:{color:\"var(--token-33327397-4492-40f6-9bf2-16338d770024, rgb(255, 249, 236))\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jClUF.framer-w07ir0, .framer-jClUF .framer-w07ir0 { display: block; }\",\".framer-jClUF.framer-dh2jm0 { height: 32px; overflow: hidden; position: relative; text-decoration: none; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jClUF .framer-108qrv9 { bottom: 9px; flex: none; left: 13px; position: absolute; right: 12px; top: 9px; }\",\".framer-jClUF .framer-1apnmg-container, .framer-jClUF .framer-417grm-container { flex: none; height: 19px; left: calc(50.00000000000002% - 19px / 2); position: absolute; top: calc(50.00000000000002% - 19px / 2); width: 19px; }\",\".framer-jClUF .framer-164wogs-container { flex: none; height: 17px; left: calc(50.00000000000002% - 17px / 2); position: absolute; top: calc(50.00000000000002% - 17px / 2); width: 17px; }\",\".framer-jClUF.framer-v-irh7it.framer-dh2jm0, .framer-jClUF.framer-v-1golanj.framer-dh2jm0, .framer-jClUF.framer-v-1uk1jq0.framer-dh2jm0, .framer-jClUF.framer-v-1cz7jj0.framer-dh2jm0, .framer-jClUF.framer-v-kmdj1c.framer-dh2jm0, .framer-jClUF.framer-v-1c9l85i.framer-dh2jm0, .framer-jClUF.framer-v-1it0fyk.framer-dh2jm0, .framer-jClUF.framer-v-1hml3sf.framer-dh2jm0, .framer-jClUF.framer-v-1ev3nes.framer-dh2jm0, .framer-jClUF.framer-v-gfnw72.framer-dh2jm0, .framer-jClUF.framer-v-1e6ihza.framer-dh2jm0 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 32px); }\",'.framer-jClUF[data-border=\"true\"]::after, .framer-jClUF [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 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"cBDH_bg4q\":{\"layout\":[\"fixed\",\"fixed\"]},\"DY1Lwsq4p\":{\"layout\":[\"fixed\",\"fixed\"]},\"jlTUxLIiI\":{\"layout\":[\"fixed\",\"fixed\"]},\"Bptd8A13r\":{\"layout\":[\"fixed\",\"fixed\"]},\"flkgb6U69\":{\"layout\":[\"fixed\",\"fixed\"]},\"K3J9clZQA\":{\"layout\":[\"fixed\",\"fixed\"]},\"HrVIPzlkN\":{\"layout\":[\"fixed\",\"fixed\"]},\"zbUZ8LRs6\":{\"layout\":[\"fixed\",\"fixed\"]},\"tm1AafvCB\":{\"layout\":[\"fixed\",\"fixed\"]},\"p4sAX6Hdn\":{\"layout\":[\"fixed\",\"fixed\"]},\"nm0iEgiYP\":{\"layout\":[\"fixed\",\"fixed\"]},\"BiSdMcxYg\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdwNCuzs7U=withCSS(Component,css,\"framer-jClUF\");export default FramerdwNCuzs7U;FramerdwNCuzs7U.displayName=\"Component/Social Logo\";FramerdwNCuzs7U.defaultProps={height:32,width:32};addPropertyControls(FramerdwNCuzs7U,{variant:{options:[\"jSjhQrbej\",\"cBDH_bg4q\",\"DY1Lwsq4p\",\"jlTUxLIiI\",\"Bptd8A13r\",\"flkgb6U69\",\"K3J9clZQA\",\"HrVIPzlkN\",\"zbUZ8LRs6\",\"tm1AafvCB\",\"p4sAX6Hdn\",\"nm0iEgiYP\",\"BiSdMcxYg\"],optionTitles:[\"Facebook - White\",\"X - White\",\"Facebook - Pink\",\"X - Pink\",\"Link - Pink\",\"Instagram - Pink\",\"Youtube - Pink\",\"Instagram - White\",\"YouTube White\",\"Facebook - Cream\",\"X - Cream\",\"Instagram - Cream\",\"YouTube - Cream\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerdwNCuzs7U,[{explicitInter:true,fonts:[]},...IconoirFonts,...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdwNCuzs7U\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"32\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cBDH_bg4q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DY1Lwsq4p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jlTUxLIiI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Bptd8A13r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"flkgb6U69\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"K3J9clZQA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HrVIPzlkN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zbUZ8LRs6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tm1AafvCB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"p4sAX6Hdn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nm0iEgiYP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BiSdMcxYg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"32\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dwNCuzs7U.map", "// Generated by Framer (c56cc2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ComponentSocialLogo from\"https://framerusercontent.com/modules/k4kf0WYQMbdsLphevh0A/B8zWvaJCDthK4X6405oa/dwNCuzs7U.js\";const ComponentSocialLogoFonts=getFonts(ComponentSocialLogo);const serializationHash=\"framer-psTbj\";const variantClassNames={uYWgTyLJx:\"framer-v-1lju8dt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"uYWgTyLJx\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1lju8dt\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"uYWgTyLJx\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Subscribe\"})}),className:\"framer-sp9cas\",\"data-framer-name\":\"Subscribe\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"kXWIrLIUh\",style:{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19cwixk\",\"data-framer-name\":\"Frame 24443\",layoutDependency:layoutDependency,layoutId:\"T3Ie7ZWQB\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"32px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+159+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dauo96-container\",layoutDependency:layoutDependency,layoutId:\"LjOumNPlk-container\",children:/*#__PURE__*/_jsx(ComponentSocialLogo,{height:\"100%\",id:\"LjOumNPlk\",layoutId:\"LjOumNPlk\",style:{height:\"100%\",width:\"100%\"},variant:\"jlTUxLIiI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"32px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+159+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fn15c2-container\",layoutDependency:layoutDependency,layoutId:\"ghQra3BBy-container\",children:/*#__PURE__*/_jsx(ComponentSocialLogo,{height:\"100%\",id:\"ghQra3BBy\",layoutId:\"ghQra3BBy\",style:{height:\"100%\",width:\"100%\"},variant:\"flkgb6U69\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"32px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+159+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y2d64i-container\",layoutDependency:layoutDependency,layoutId:\"zqW1SaWSa-container\",children:/*#__PURE__*/_jsx(ComponentSocialLogo,{height:\"100%\",id:\"zqW1SaWSa\",layoutId:\"zqW1SaWSa\",style:{height:\"100%\",width:\"100%\"},variant:\"K3J9clZQA\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"32px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+159+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r65pjt-container\",layoutDependency:layoutDependency,layoutId:\"NtJJ3P_Qj-container\",children:/*#__PURE__*/_jsx(ComponentSocialLogo,{height:\"100%\",id:\"NtJJ3P_Qj\",layoutId:\"NtJJ3P_Qj\",style:{height:\"100%\",width:\"100%\"},variant:\"DY1Lwsq4p\",width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-psTbj.framer-90lr1r, .framer-psTbj .framer-90lr1r { display: block; }\",\".framer-psTbj.framer-1lju8dt { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 882px; }\",\".framer-psTbj .framer-sp9cas { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-psTbj .framer-19cwixk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-psTbj .framer-1dauo96-container, .framer-psTbj .framer-fn15c2-container, .framer-psTbj .framer-y2d64i-container, .framer-psTbj .framer-r65pjt-container { flex: none; height: 32px; position: relative; width: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-psTbj.framer-1lju8dt, .framer-psTbj .framer-19cwixk { gap: 0px; } .framer-psTbj.framer-1lju8dt > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-psTbj.framer-1lju8dt > :first-child { margin-top: 0px; } .framer-psTbj.framer-1lju8dt > :last-child { margin-bottom: 0px; } .framer-psTbj .framer-19cwixk > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-psTbj .framer-19cwixk > :first-child { margin-left: 0px; } .framer-psTbj .framer-19cwixk > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 77\n * @framerIntrinsicWidth 882\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRfYbWN9Mu=withCSS(Component,css,\"framer-psTbj\");export default FramerRfYbWN9Mu;FramerRfYbWN9Mu.displayName=\"Component/Post Content Social Subscribe\";FramerRfYbWN9Mu.defaultProps={height:77,width:882};addFonts(FramerRfYbWN9Mu,[{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/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\"}]},...ComponentSocialLogoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRfYbWN9Mu\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"882\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"77\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RfYbWN9Mu.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useCallback}from\"react\";import{addPropertyControls,ControlType}from\"framer\";export default function CopyLinkButton(props){var _props_iconproperties,_props_iconproperties1,_props_borderproperties,_props_borderproperties1,_props_borderproperties2,_props_padding,_props_padding1,_props_padding2,_props_padding3;const[isHovered,setIsHovered]=useState(false);const[isCopied,setIsCopied]=useState(false);const handleMouseEnter=()=>setIsHovered(true);const handleMouseLeave=()=>setIsHovered(false);const handleCopyLink=useCallback(()=>{const currentUrl=window.location.href;navigator.clipboard.writeText(currentUrl).then(()=>{setIsCopied(true);setTimeout(()=>setIsCopied(false),2e3)// Reset after 2 seconds\n;},err=>{console.error(\"Could not copy text: \",err);});},[]);const iconColor=((_props_iconproperties=props.iconproperties)===null||_props_iconproperties===void 0?void 0:_props_iconproperties.color)||\"#FFFFFF\";const iconWidth=((_props_iconproperties1=props.iconproperties)===null||_props_iconproperties1===void 0?void 0:_props_iconproperties1.width)||16;const borderColor=((_props_borderproperties=props.borderproperties)===null||_props_borderproperties===void 0?void 0:_props_borderproperties.color)||\"#4A4A4A\";const borderWidth=((_props_borderproperties1=props.borderproperties)===null||_props_borderproperties1===void 0?void 0:_props_borderproperties1.width)||0;const borderStyle=((_props_borderproperties2=props.borderproperties)===null||_props_borderproperties2===void 0?void 0:_props_borderproperties2.style)||\"solid\";const renderIcon=()=>{if(props.customIcon){return /*#__PURE__*/_jsx(\"img\",{src:props.customIcon,alt:\"Custom Copy Link Icon\",style:{width:`${iconWidth}px`,height:\"auto\",filter:props.useIconColor?`invert(1) brightness(100)`:\"none\"}});}else{return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",style:{width:`${iconWidth}px`,height:\"auto\"},fill:\"currentColor\",viewBox:\"0 0 24 24\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z\"})});}};return /*#__PURE__*/_jsxs(\"button\",{onClick:handleCopyLink,onMouseEnter:handleMouseEnter,onMouseLeave:handleMouseLeave,title:isCopied?props.copiedTitle:props.hoverTitle,style:{color:iconColor,width:\"auto\",height:\"auto\",backgroundColor:props.backgroundcolor||\"#4A4A4A\",borderRadius:props.radius||16,paddingTop:((_props_padding=props.padding)===null||_props_padding===void 0?void 0:_props_padding.top)||16,paddingRight:((_props_padding1=props.padding)===null||_props_padding1===void 0?void 0:_props_padding1.right)||16,paddingBottom:((_props_padding2=props.padding)===null||_props_padding2===void 0?void 0:_props_padding2.bottom)||16,paddingLeft:((_props_padding3=props.padding)===null||_props_padding3===void 0?void 0:_props_padding3.left)||16,borderColor:borderColor,borderWidth:borderWidth,borderStyle:borderStyle,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",cursor:\"pointer\",opacity:isHovered?.8:1,transition:\"all 0.3s ease\"},children:[renderIcon(),props.showLabel&&/*#__PURE__*/_jsx(\"span\",{style:{marginLeft:8},children:isCopied?props.copiedLabel:props.label})]});}CopyLinkButton.defaultProps={iconproperties:{color:\"#FFFFFF\",width:16},backgroundcolor:\"#4A4A4A\",radius:16,padding:{top:16,right:16,bottom:16,left:16},borderproperties:{color:\"#4A4A4A\",width:0,style:\"solid\"},hoverTitle:\"Copy Link\",copiedTitle:\"Link Copied!\",customIcon:null,useIconColor:true,showLabel:false,label:\"Copy Link\",copiedLabel:\"Copied!\"};addPropertyControls(CopyLinkButton,{customIcon:{type:ControlType.Image,title:\"Custom Icon\"},useIconColor:{type:ControlType.Boolean,title:\"Apply Icon Color\",defaultValue:true,hidden:props=>!props.customIcon},hoverTitle:{type:ControlType.String,title:\"Hover Title\",defaultValue:\"Copy Link\"},copiedTitle:{type:ControlType.String,title:\"Copied Title\",defaultValue:\"Link Copied!\"},showLabel:{type:ControlType.Boolean,title:\"Show Label\",defaultValue:false},label:{type:ControlType.String,title:\"Label\",defaultValue:\"Copy Link\",hidden:props=>!props.showLabel},copiedLabel:{type:ControlType.String,title:\"Copied Label\",defaultValue:\"Copied!\",hidden:props=>!props.showLabel},iconproperties:{type:ControlType.Object,title:\"Icons\",controls:{color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFFFFF\"},width:{type:ControlType.Number,title:\"Width\",defaultValue:16}}},backgroundcolor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#4A4A4A\"},radius:{type:ControlType.Number,title:\"Radius\",defaultValue:16,min:0},padding:{type:ControlType.Object,title:\"Padding\",controls:{top:{type:ControlType.Number,title:\"Top\",defaultValue:16,min:0},right:{type:ControlType.Number,title:\"Right\",defaultValue:16,min:0},bottom:{type:ControlType.Number,title:\"Bottom\",defaultValue:16,min:0},left:{type:ControlType.Number,title:\"Left\",defaultValue:16,min:0}}},borderproperties:{type:ControlType.Object,title:\"Border\",controls:{color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#4A4A4A\"},width:{type:ControlType.Number,title:\"Width\",defaultValue:0,min:0},style:{type:ControlType.Enum,title:\"Style\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],defaultValue:\"solid\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CopyLinkButton\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Link_copy.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";export default function UniversalShareButton(props){var _props_iconproperties,_props_iconproperties1,_props_borderproperties,_props_borderproperties1,_props_borderproperties2,_props_padding,_props_padding1,_props_padding2,_props_padding3;const[isHovered,setIsHovered]=useState(false);const handleMouseEnter=()=>setIsHovered(true);const handleMouseLeave=()=>setIsHovered(false);const handleShare=async()=>{const shareData={title:props.shareTitle||document.title,text:props.shareText||\"Check this out!\",url:props.shareUrl||window.location.href};if(navigator.share){try{await navigator.share(shareData);console.log(\"Content shared successfully\");}catch(err){console.log(\"Error sharing: \",err);}}else{console.log(\"Web Share API not supported\");// Fallback for desktop or unsupported browsers\nalert(\"Sharing is not supported on this device or browser. You can copy the link manually.\");}};const iconColor=((_props_iconproperties=props.iconproperties)===null||_props_iconproperties===void 0?void 0:_props_iconproperties.color)||\"#FFFFFF\";const iconWidth=((_props_iconproperties1=props.iconproperties)===null||_props_iconproperties1===void 0?void 0:_props_iconproperties1.width)||16;const borderColor=((_props_borderproperties=props.borderproperties)===null||_props_borderproperties===void 0?void 0:_props_borderproperties.color)||\"#007AFF\";const borderWidth=((_props_borderproperties1=props.borderproperties)===null||_props_borderproperties1===void 0?void 0:_props_borderproperties1.width)||0;const borderStyle=((_props_borderproperties2=props.borderproperties)===null||_props_borderproperties2===void 0?void 0:_props_borderproperties2.style)||\"solid\";const renderIcon=()=>{if(props.customIcon){return /*#__PURE__*/_jsx(\"img\",{src:props.customIcon,alt:\"Custom Share Icon\",style:{width:`${iconWidth}px`,height:\"auto\",filter:props.useIconColor?`invert(1) brightness(100)`:\"none\"}});}else{return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",style:{width:`${iconWidth}px`,height:\"auto\"},fill:\"currentColor\",viewBox:\"0 0 24 24\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92 1.61 0 2.92-1.31 2.92-2.92s-1.31-2.92-2.92-2.92z\"})});}};return /*#__PURE__*/_jsxs(\"button\",{onClick:handleShare,onMouseEnter:handleMouseEnter,onMouseLeave:handleMouseLeave,title:props.hoverTitle||\"Share\",style:{color:iconColor,width:\"auto\",height:\"auto\",backgroundColor:props.backgroundcolor||\"#007AFF\",borderRadius:props.radius||16,paddingTop:((_props_padding=props.padding)===null||_props_padding===void 0?void 0:_props_padding.top)||16,paddingRight:((_props_padding1=props.padding)===null||_props_padding1===void 0?void 0:_props_padding1.right)||16,paddingBottom:((_props_padding2=props.padding)===null||_props_padding2===void 0?void 0:_props_padding2.bottom)||16,paddingLeft:((_props_padding3=props.padding)===null||_props_padding3===void 0?void 0:_props_padding3.left)||16,borderColor:borderColor,borderWidth:borderWidth,borderStyle:borderStyle,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",cursor:\"pointer\",opacity:isHovered?.8:1,transition:\"all 0.3s ease\"},children:[renderIcon(),props.showLabel&&/*#__PURE__*/_jsx(\"span\",{style:{marginLeft:8},children:props.label})]});}UniversalShareButton.defaultProps={iconproperties:{color:\"#FFFFFF\",width:16},backgroundcolor:\"#007AFF\",radius:16,padding:{top:16,right:16,bottom:16,left:16},borderproperties:{color:\"#007AFF\",width:0,style:\"solid\"},hoverTitle:\"Share\",customIcon:null,useIconColor:true,shareTitle:\"\",shareText:\"Check this out!\",shareUrl:\"\",showLabel:false,label:\"Share\"};addPropertyControls(UniversalShareButton,{customIcon:{type:ControlType.Image,title:\"Custom Icon\"},useIconColor:{type:ControlType.Boolean,title:\"Apply Icon Color\",defaultValue:true,hidden:props=>!props.customIcon},hoverTitle:{type:ControlType.String,title:\"Hover Title\",defaultValue:\"Share\"},shareTitle:{type:ControlType.String,title:\"Share Title\"},shareText:{type:ControlType.String,title:\"Share Text\",defaultValue:\"Check this out!\"},shareUrl:{type:ControlType.String,title:\"Share URL\"},showLabel:{type:ControlType.Boolean,title:\"Show Label\",defaultValue:false},label:{type:ControlType.String,title:\"Label\",defaultValue:\"Share\",hidden:props=>!props.showLabel},iconproperties:{type:ControlType.Object,title:\"Icons\",controls:{color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFFFFF\"},width:{type:ControlType.Number,title:\"Width\",defaultValue:16}}},backgroundcolor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#007AFF\"},radius:{type:ControlType.Number,title:\"Radius\",defaultValue:16,min:0},padding:{type:ControlType.Object,title:\"Padding\",controls:{top:{type:ControlType.Number,title:\"Top\",defaultValue:16,min:0},right:{type:ControlType.Number,title:\"Right\",defaultValue:16,min:0},bottom:{type:ControlType.Number,title:\"Bottom\",defaultValue:16,min:0},left:{type:ControlType.Number,title:\"Left\",defaultValue:16,min:0}}},borderproperties:{type:ControlType.Object,title:\"Border\",controls:{color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#007AFF\"},width:{type:ControlType.Number,title:\"Width\",defaultValue:0,min:0},style:{type:ControlType.Enum,title:\"Style\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],defaultValue:\"solid\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"UniversalShareButton\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Share.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";export default function TwitterShare(props){var _props_iconproperties,_props_iconproperties1,_props_borderproperties,_props_borderproperties1,_props_borderproperties2,_props_padding,_props_padding1,_props_padding2,_props_padding3;const[isHovered,setIsHovered]=useState(false);const handleMouseEnter=()=>setIsHovered(true);const handleMouseLeave=()=>setIsHovered(false);const handleTwitterShare=()=>{const url=encodeURIComponent(window.location.href);const text=encodeURIComponent(props.shareText||\"Check this out!\");const twitterShareUrl=`https://twitter.com/intent/tweet?text=${text}&url=${url}`;window.open(twitterShareUrl,\"_blank\");};const iconColor=((_props_iconproperties=props.iconproperties)===null||_props_iconproperties===void 0?void 0:_props_iconproperties.color)||\"#FFFFFF\";const iconWidth=((_props_iconproperties1=props.iconproperties)===null||_props_iconproperties1===void 0?void 0:_props_iconproperties1.width)||16;const borderColor=((_props_borderproperties=props.borderproperties)===null||_props_borderproperties===void 0?void 0:_props_borderproperties.color)||\"#1DA1F2\";const borderWidth=((_props_borderproperties1=props.borderproperties)===null||_props_borderproperties1===void 0?void 0:_props_borderproperties1.width)||0;const borderStyle=((_props_borderproperties2=props.borderproperties)===null||_props_borderproperties2===void 0?void 0:_props_borderproperties2.style)||\"solid\";const renderIcon=()=>{if(props.customIcon){return /*#__PURE__*/_jsx(\"img\",{src:props.customIcon,alt:\"Custom Twitter Share Icon\",style:{width:`${iconWidth}px`,height:\"auto\",filter:props.useIconColor?`invert(1) brightness(100)`:\"none\"}});}else{return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",style:{width:`${iconWidth}px`,height:\"auto\"},fill:\"currentColor\",viewBox:\"0 0 24 24\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z\"})});}};return /*#__PURE__*/_jsx(\"button\",{onClick:handleTwitterShare,onMouseEnter:handleMouseEnter,onMouseLeave:handleMouseLeave,title:props.hoverTitle||\"Share on Twitter\",style:{color:iconColor,width:\"auto\",height:\"auto\",backgroundColor:props.backgroundcolor||\"#1DA1F2\",borderRadius:props.radius||16,paddingTop:((_props_padding=props.padding)===null||_props_padding===void 0?void 0:_props_padding.top)||16,paddingRight:((_props_padding1=props.padding)===null||_props_padding1===void 0?void 0:_props_padding1.right)||16,paddingBottom:((_props_padding2=props.padding)===null||_props_padding2===void 0?void 0:_props_padding2.bottom)||16,paddingLeft:((_props_padding3=props.padding)===null||_props_padding3===void 0?void 0:_props_padding3.left)||16,borderColor:borderColor,borderWidth:borderWidth,borderStyle:borderStyle,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",cursor:\"pointer\",opacity:isHovered?.8:1},children:renderIcon()});}TwitterShare.defaultProps={iconproperties:{color:\"#FFFFFF\",width:16},backgroundcolor:\"#1DA1F2\",radius:16,padding:{top:16,right:16,bottom:16,left:16},borderproperties:{color:\"#1DA1F2\",width:0,style:\"solid\"},hoverTitle:\"Share on Twitter\",customIcon:null,useIconColor:true,shareText:\"Check this out!\"};addPropertyControls(TwitterShare,{customIcon:{type:ControlType.Image,title:\"Custom Icon\"},useIconColor:{type:ControlType.Boolean,title:\"Apply Icon Color\",defaultValue:true,hidden:props=>!props.customIcon},hoverTitle:{type:ControlType.String,title:\"Hover Title\",defaultValue:\"Share on Twitter\"},shareText:{type:ControlType.String,title:\"Share Text\",defaultValue:\"Check this out!\"},iconproperties:{type:ControlType.Object,title:\"Icons\",controls:{color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFFFFF\"},width:{type:ControlType.Number,title:\"Width\",defaultValue:16}}},backgroundcolor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#1DA1F2\"},radius:{type:ControlType.Number,title:\"Radius\",defaultValue:16,min:0},padding:{type:ControlType.Object,title:\"Padding\",controls:{top:{type:ControlType.Number,title:\"Top\",defaultValue:16,min:0},right:{type:ControlType.Number,title:\"Right\",defaultValue:16,min:0},bottom:{type:ControlType.Number,title:\"Bottom\",defaultValue:16,min:0},left:{type:ControlType.Number,title:\"Left\",defaultValue:16,min:0}}},borderproperties:{type:ControlType.Object,title:\"Border\",controls:{color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#1DA1F2\"},width:{type:ControlType.Number,title:\"Width\",defaultValue:0,min:0},style:{type:ControlType.Enum,title:\"Style\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],defaultValue:\"solid\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TwitterShare\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./X_or_Twitter.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";export default function FacebookShare(props){var _props_iconproperties,_props_iconproperties1,_props_borderproperties,_props_borderproperties1,_props_borderproperties2,_props_padding,_props_padding1,_props_padding2,_props_padding3;const[isHovered,setIsHovered]=useState(false);const handleMouseEnter=()=>setIsHovered(true);const handleMouseLeave=()=>setIsHovered(false);const handleFacebookShare=()=>{const url=encodeURIComponent(window.location.href);const facebookShareUrl=`https://www.facebook.com/sharer/sharer.php?u=${url}`;window.open(facebookShareUrl,\"_blank\");};const iconColor=((_props_iconproperties=props.iconproperties)===null||_props_iconproperties===void 0?void 0:_props_iconproperties.color)||\"#FFFFFF\";const iconWidth=((_props_iconproperties1=props.iconproperties)===null||_props_iconproperties1===void 0?void 0:_props_iconproperties1.width)||16;const borderColor=((_props_borderproperties=props.borderproperties)===null||_props_borderproperties===void 0?void 0:_props_borderproperties.color)||\"#0E62CC\";const borderWidth=((_props_borderproperties1=props.borderproperties)===null||_props_borderproperties1===void 0?void 0:_props_borderproperties1.width)||0;const borderStyle=((_props_borderproperties2=props.borderproperties)===null||_props_borderproperties2===void 0?void 0:_props_borderproperties2.style)||\"solid\";const renderIcon=()=>{if(props.customIcon){return /*#__PURE__*/_jsx(\"img\",{src:props.customIcon,alt:\"Custom Facebook Share Icon\",style:{width:`${iconWidth}px`,height:\"auto\",filter:props.useIconColor?`invert(1) brightness(100)`:\"none\"}});}else{return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",style:{width:`${iconWidth}px`,height:\"auto\"},fill:\"currentColor\",viewBox:\"0 0 24 24\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z\"})});}};return /*#__PURE__*/_jsx(\"button\",{onClick:handleFacebookShare,onMouseEnter:handleMouseEnter,onMouseLeave:handleMouseLeave,title:props.hoverTitle||\"Share on Facebook\",style:{color:iconColor,width:\"auto\",height:\"auto\",backgroundColor:props.backgroundcolor||\"#1877F2\",borderRadius:props.radius||16,paddingTop:((_props_padding=props.padding)===null||_props_padding===void 0?void 0:_props_padding.top)||16,paddingRight:((_props_padding1=props.padding)===null||_props_padding1===void 0?void 0:_props_padding1.right)||16,paddingBottom:((_props_padding2=props.padding)===null||_props_padding2===void 0?void 0:_props_padding2.bottom)||16,paddingLeft:((_props_padding3=props.padding)===null||_props_padding3===void 0?void 0:_props_padding3.left)||16,borderColor:borderColor,borderWidth:borderWidth,borderStyle:borderStyle,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",cursor:\"pointer\",opacity:isHovered?.8:1},children:renderIcon()});}FacebookShare.defaultProps={iconproperties:{color:\"#FFFFFF\",width:16},backgroundcolor:\"#1877F2\",radius:16,padding:{top:16,right:16,bottom:16,left:16},borderproperties:{color:\"#0E62CC\",width:0,style:\"solid\"},hoverTitle:\"Share on Facebook\",customIcon:null,useIconColor:true};addPropertyControls(FacebookShare,{customIcon:{type:ControlType.Image,title:\"Custom Icon\"},useIconColor:{type:ControlType.Boolean,title:\"Apply Icon Color\",defaultValue:true,hidden:props=>!props.customIcon},hoverTitle:{type:ControlType.String,title:\"Hover Title\",defaultValue:\"Share on Facebook\"},iconproperties:{type:ControlType.Object,title:\"Icons\",controls:{color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFFFFF\"},width:{type:ControlType.Number,title:\"Width\",defaultValue:16}}},backgroundcolor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#1877F2\"},radius:{type:ControlType.Number,title:\"Radius\",defaultValue:16,min:0},padding:{type:ControlType.Object,title:\"Padding\",controls:{top:{type:ControlType.Number,title:\"Top\",defaultValue:16,min:0},right:{type:ControlType.Number,title:\"Right\",defaultValue:16,min:0},bottom:{type:ControlType.Number,title:\"Bottom\",defaultValue:16,min:0},left:{type:ControlType.Number,title:\"Left\",defaultValue:16,min:0}}},borderproperties:{type:ControlType.Object,title:\"Border\",controls:{color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#0E62CC\"},width:{type:ControlType.Number,title:\"Width\",defaultValue:0,min:0},style:{type:ControlType.Enum,title:\"Style\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],defaultValue:\"solid\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FacebookShare\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Facebook_Share.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";export default function EmailShare(props){var _props_iconproperties,_props_iconproperties1,_props_borderproperties,_props_borderproperties1,_props_borderproperties2,_props_padding,_props_padding1,_props_padding2,_props_padding3;const[isHovered,setIsHovered]=useState(false);const handleMouseEnter=()=>setIsHovered(true);const handleMouseLeave=()=>setIsHovered(false);const handleEmailShare=()=>{const subject=encodeURIComponent(props.emailSubject||document.title);const body=encodeURIComponent(props.emailBody||`Check out this link: ${window.location.href}`);const mailtoLink=`mailto:?subject=${subject}&body=${body}`;window.location.href=mailtoLink;};const iconColor=((_props_iconproperties=props.iconproperties)===null||_props_iconproperties===void 0?void 0:_props_iconproperties.color)||\"#FFFFFF\";const iconWidth=((_props_iconproperties1=props.iconproperties)===null||_props_iconproperties1===void 0?void 0:_props_iconproperties1.width)||16;const borderColor=((_props_borderproperties=props.borderproperties)===null||_props_borderproperties===void 0?void 0:_props_borderproperties.color)||\"#D44638\";const borderWidth=((_props_borderproperties1=props.borderproperties)===null||_props_borderproperties1===void 0?void 0:_props_borderproperties1.width)||0;const borderStyle=((_props_borderproperties2=props.borderproperties)===null||_props_borderproperties2===void 0?void 0:_props_borderproperties2.style)||\"solid\";const renderIcon=()=>{if(props.customIcon){return /*#__PURE__*/_jsx(\"img\",{src:props.customIcon,alt:\"Custom Email Share Icon\",style:{width:`${iconWidth}px`,height:\"auto\",filter:props.useIconColor?`invert(1) brightness(100)`:\"none\"}});}else{return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",style:{width:`${iconWidth}px`,height:\"auto\"},fill:\"currentColor\",viewBox:\"0 0 24 24\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M0 3v18h24v-18h-24zm6.623 7.929l-4.623 5.712v-9.458l4.623 3.746zm-4.141-5.929h19.035l-9.517 7.713-9.518-7.713zm5.694 7.188l3.824 3.099 3.83-3.104 5.612 6.817h-18.779l5.513-6.812zm9.208-1.264l4.616-3.741v9.348l-4.616-5.607z\"})});}};return /*#__PURE__*/_jsx(\"button\",{onClick:handleEmailShare,onMouseEnter:handleMouseEnter,onMouseLeave:handleMouseLeave,title:props.hoverTitle||\"Share via Email\",style:{color:iconColor,width:\"auto\",height:\"auto\",backgroundColor:props.backgroundcolor||\"#D44638\",borderRadius:props.radius||16,paddingTop:((_props_padding=props.padding)===null||_props_padding===void 0?void 0:_props_padding.top)||16,paddingRight:((_props_padding1=props.padding)===null||_props_padding1===void 0?void 0:_props_padding1.right)||16,paddingBottom:((_props_padding2=props.padding)===null||_props_padding2===void 0?void 0:_props_padding2.bottom)||16,paddingLeft:((_props_padding3=props.padding)===null||_props_padding3===void 0?void 0:_props_padding3.left)||16,borderColor:borderColor,borderWidth:borderWidth,borderStyle:borderStyle,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",cursor:\"pointer\",opacity:isHovered?.8:1},children:renderIcon()});}EmailShare.defaultProps={iconproperties:{color:\"#FFFFFF\",width:16},backgroundcolor:\"#D44638\",radius:16,padding:{top:16,right:16,bottom:16,left:16},borderproperties:{color:\"#D44638\",width:0,style:\"solid\"},hoverTitle:\"Share via Email\",customIcon:null,useIconColor:true,emailSubject:\"\",emailBody:\"\"};addPropertyControls(EmailShare,{customIcon:{type:ControlType.Image,title:\"Custom Icon\"},useIconColor:{type:ControlType.Boolean,title:\"Apply Icon Color\",defaultValue:true,hidden:props=>!props.customIcon},hoverTitle:{type:ControlType.String,title:\"Hover Title\",defaultValue:\"Share via Email\"},emailSubject:{type:ControlType.String,title:\"Email Subject\"},emailBody:{type:ControlType.String,title:\"Email Body\"},iconproperties:{type:ControlType.Object,title:\"Icons\",controls:{color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFFFFF\"},width:{type:ControlType.Number,title:\"Width\",defaultValue:16}}},backgroundcolor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#D44638\"},radius:{type:ControlType.Number,title:\"Radius\",defaultValue:16,min:0},padding:{type:ControlType.Object,title:\"Padding\",controls:{top:{type:ControlType.Number,title:\"Top\",defaultValue:16,min:0},right:{type:ControlType.Number,title:\"Right\",defaultValue:16,min:0},bottom:{type:ControlType.Number,title:\"Bottom\",defaultValue:16,min:0},left:{type:ControlType.Number,title:\"Left\",defaultValue:16,min:0}}},borderproperties:{type:ControlType.Object,title:\"Border\",controls:{color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#D44638\"},width:{type:ControlType.Number,title:\"Width\",defaultValue:0,min:0},style:{type:ControlType.Enum,title:\"Style\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],defaultValue:\"solid\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"EmailShare\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Email_share.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import CopyLinkButton from\"https://framerusercontent.com/modules/agt3M2ZZZdfvOMUoc7cp/T6Kl2S5E9UgOplbJbLgy/Link_copy.js\";import UniversalShareButton from\"https://framerusercontent.com/modules/o90AaMpWMiNfpQMcmt9D/xNnHxSfTSwkWmzxoGcrf/Share.js\";import TwitterShare from\"https://framerusercontent.com/modules/owoSn91RrGNKqDpIXIeA/Il1dcY2ws8Yr46My6m0V/X_or_Twitter.js\";import FacebookShare from\"https://framerusercontent.com/modules/pLNTku3VRu9dkw0WgzPY/Fg328IDZmEPKdslvAOp7/Facebook_Share.js\";import EmailShare from\"https://framerusercontent.com/modules/qzDQE7x8UNj1Q5pIpbp0/wEuwvhj6RjJBwGJANd4L/Email_share.js\";const FacebookShareFonts=getFonts(FacebookShare);const TwitterShareFonts=getFonts(TwitterShare);const EmailShareFonts=getFonts(EmailShare);const CopyLinkButtonFonts=getFonts(CopyLinkButton);const UniversalShareButtonFonts=getFonts(UniversalShareButton);const serializationHash=\"framer-iLMr2\";const variantClassNames={m4NfPsobe:\"framer-v-mfkq7o\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"m4NfPsobe\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-mfkq7o\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"m4NfPsobe\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-awqpjv-container\",layoutDependency:layoutDependency,layoutId:\"oJhynOfRR-container\",children:/*#__PURE__*/_jsx(FacebookShare,{backgroundcolor:\"rgba(24, 119, 242, 0)\",borderproperties:{color:\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\",style:\"solid\",width:2},height:\"100%\",hoverTitle:\"Share on Facebook\",iconproperties:{color:\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\",width:18},id:\"oJhynOfRR\",layoutId:\"oJhynOfRR\",padding:{bottom:6,left:6,right:6,top:6},radius:100,useIconColor:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qgg0wi-container\",layoutDependency:layoutDependency,layoutId:\"EToXRDzJa-container\",children:/*#__PURE__*/_jsx(TwitterShare,{backgroundcolor:\"rgba(148, 67, 133, 0)\",borderproperties:{color:\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\",style:\"solid\",width:2},customIcon:\"https://framerusercontent.com/images/aPe4qX0E19BoiQSylcrD3IEs.svg\",height:\"100%\",hoverTitle:\"Share on Twitter\",iconproperties:{color:\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\",width:18},id:\"EToXRDzJa\",layoutId:\"EToXRDzJa\",padding:{bottom:6,left:6,right:6,top:6},radius:100,shareText:\"Check this out!\",useIconColor:false,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bcd17d-container\",layoutDependency:layoutDependency,layoutId:\"uoCr6inbC-container\",children:/*#__PURE__*/_jsx(EmailShare,{backgroundcolor:\"rgba(212, 68, 55, 0)\",borderproperties:{color:\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\",style:\"solid\",width:2},emailBody:\"\",emailSubject:\"\",height:\"100%\",hoverTitle:\"Share via Email\",iconproperties:{color:\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\",width:18},id:\"uoCr6inbC\",layoutId:\"uoCr6inbC\",padding:{bottom:6,left:6,right:6,top:6},radius:100,useIconColor:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-c7vtut-container\",layoutDependency:layoutDependency,layoutId:\"K3dg_d3Bg-container\",children:/*#__PURE__*/_jsx(CopyLinkButton,{backgroundcolor:\"rgba(74, 74, 74, 0)\",borderproperties:{color:\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\",style:\"solid\",width:2},copiedLabel:\"Copied!\",copiedTitle:\"Link Copied!\",height:\"100%\",hoverTitle:\"Copy Link\",iconproperties:{color:\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\",width:18},id:\"K3dg_d3Bg\",label:\"Copy Link\",layoutId:\"K3dg_d3Bg\",padding:{bottom:6,left:6,right:6,top:6},radius:100,showLabel:false,useIconColor:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a6oja6-container\",layoutDependency:layoutDependency,layoutId:\"GvNIDC8EM-container\",children:/*#__PURE__*/_jsx(UniversalShareButton,{backgroundcolor:\"rgba(0, 123, 255, 0)\",borderproperties:{color:\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\",style:\"solid\",width:2},height:\"100%\",hoverTitle:\"Share\",iconproperties:{color:\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\",width:18},id:\"GvNIDC8EM\",label:\"Share\",layoutId:\"GvNIDC8EM\",padding:{bottom:6,left:6,right:6,top:6},radius:100,shareText:\"Check this out!\",shareTitle:\"\",shareUrl:\"\",showLabel:false,useIconColor:true,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iLMr2.framer-1tu7vym, .framer-iLMr2 .framer-1tu7vym { display: block; }\",\".framer-iLMr2.framer-mfkq7o { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-iLMr2 .framer-awqpjv-container, .framer-iLMr2 .framer-qgg0wi-container, .framer-iLMr2 .framer-1bcd17d-container, .framer-iLMr2 .framer-c7vtut-container, .framer-iLMr2 .framer-1a6oja6-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iLMr2.framer-mfkq7o { gap: 0px; } .framer-iLMr2.framer-mfkq7o > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-iLMr2.framer-mfkq7o > :first-child { margin-left: 0px; } .framer-iLMr2.framer-mfkq7o > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 34\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXwe4dQVvm=withCSS(Component,css,\"framer-iLMr2\");export default FramerXwe4dQVvm;FramerXwe4dQVvm.displayName=\"Component/Social Share\";FramerXwe4dQVvm.defaultProps={height:34,width:1200};addFonts(FramerXwe4dQVvm,[{explicitInter:true,fonts:[]},...FacebookShareFonts,...TwitterShareFonts,...EmailShareFonts,...CopyLinkButtonFonts,...UniversalShareButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXwe4dQVvm\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"34\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Xwe4dQVvm.map", "// Generated by Framer (ddd30d5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Source Serif 4-regular\",\"GF;Source Serif 4-700\",\"GF;Source Serif 4-700italic\",\"GF;Source Serif 4-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Source Serif 4\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhlXD-wGvjU.woff2\",weight:\"400\"},{family:\"Source Serif 4\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjivBtrhlXD-wGvjU.woff2\",weight:\"700\"},{family:\"Source Serif 4\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98poVhdDs4DrjXEXw.woff2\",weight:\"700\"},{family:\"Source Serif 4\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pRl9dDs4DrjXEXw.woff2\",weight:\"400\"}]}];export const css=['.framer-Ytrj3 .framer-styles-preset-179kqif:not(.rich-text-wrapper), .framer-Ytrj3 .framer-styles-preset-179kqif.rich-text-wrapper p { --framer-font-family: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-family-bold: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-family-bold-italic: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-family-italic: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --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: 0px; --framer-line-height: 155%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-8ba56df2-a7ed-442b-8814-8a5c9139f733, #68656b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-Ytrj3 .framer-styles-preset-179kqif:not(.rich-text-wrapper), .framer-Ytrj3 .framer-styles-preset-179kqif.rich-text-wrapper p { --framer-font-family: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-family-bold: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-family-bold-italic: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-family-italic: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --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: 0px; --framer-line-height: 155%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-8ba56df2-a7ed-442b-8814-8a5c9139f733, #68656b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-Ytrj3 .framer-styles-preset-179kqif:not(.rich-text-wrapper), .framer-Ytrj3 .framer-styles-preset-179kqif.rich-text-wrapper p { --framer-font-family: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-family-bold: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-family-bold-italic: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-family-italic: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 155%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-8ba56df2-a7ed-442b-8814-8a5c9139f733, #68656b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Ytrj3 .framer-styles-preset-179kqif:not(.rich-text-wrapper), .framer-Ytrj3 .framer-styles-preset-179kqif.rich-text-wrapper p { --framer-font-family: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-family-bold: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-family-bold-italic: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-family-italic: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 155%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-8ba56df2-a7ed-442b-8814-8a5c9139f733, #68656b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Ytrj3\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ddd30d5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Source Serif 4-italic\",\"GF;Source Serif 4-700italic\",\"GF;Source Serif 4-700italic\",\"GF;Source Serif 4-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Source Serif 4\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pRl9dDs4DrjXEXw.woff2\",weight:\"400\"},{family:\"Source Serif 4\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98poVhdDs4DrjXEXw.woff2\",weight:\"700\"}]}];export const css=['.framer-YKnIm .framer-styles-preset-okj9ba:not(.rich-text-wrapper), .framer-YKnIm .framer-styles-preset-okj9ba.rich-text-wrapper p { --framer-font-family: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-family-bold: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-family-bold-italic: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-family-italic: \"Source Serif 4\", \"Source Serif 4 Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: italic; --framer-font-style-bold: italic; --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: 0px; --framer-line-height: 155%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-8ba56df2-a7ed-442b-8814-8a5c9139f733, #68656b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-YKnIm\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Image1 from\"https://framerusercontent.com/modules/4FYXL5lQz9cgJ2BJkaNV/uQoXZ4NvFasfJqYRTeHn/Image.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Table_of_Content from\"https://framerusercontent.com/modules/q6TPcm1rVRPb4ymPsf0M/ukEM2DrdqZklbSePOgRx/TableOfContent.js\";import NavMainNavbar from\"#framer/local/canvasComponent/BUlIUJC1B/BUlIUJC1B.js\";import NavFooter from\"#framer/local/canvasComponent/HcZl6hGnN/HcZl6hGnN.js\";import LayoutBeehiivSidebar from\"#framer/local/canvasComponent/KBHC2PY2M/KBHC2PY2M.js\";import LayoutRecentArticles from\"#framer/local/canvasComponent/Ku3lRALIs/Ku3lRALIs.js\";import NavLightsaberButton from\"#framer/local/canvasComponent/N1IqGZ4DN/N1IqGZ4DN.js\";import LayoutCommunityCTABanner from\"#framer/local/canvasComponent/Pyq_O2z3H/Pyq_O2z3H.js\";import ComponentPostContentSocialSubscribe from\"#framer/local/canvasComponent/RfYbWN9Mu/RfYbWN9Mu.js\";import NavNavV2Sidebar from\"#framer/local/canvasComponent/sK38PBSpY/sK38PBSpY.js\";import LayoutContentCardVertical from\"#framer/local/canvasComponent/W_vY6TcZ7/W_vY6TcZ7.js\";import ComponentSocialShare from\"#framer/local/canvasComponent/Xwe4dQVvm/Xwe4dQVvm.js\";import MainAdComponent from\"#framer/local/canvasComponent/YRGLURA0w/YRGLURA0w.js\";import{withClass}from\"#framer/local/codeFile/nJNELbr/ImageTarget.js\";import{withClass as withClass1}from\"#framer/local/codeFile/lkrhcpv/ToCTarget.js\";import StaffMembers from\"#framer/local/collection/ckC6Stctk/ckC6Stctk.js\";import Articles from\"#framer/local/collection/qGKKRJbyV/qGKKRJbyV.js\";import Tags from\"#framer/local/collection/yR4cdS7al/yR4cdS7al.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle10 from\"#framer/local/css/A4XJq5Y2V/A4XJq5Y2V.js\";import*as sharedStyle7 from\"#framer/local/css/A6iQhuSWf/A6iQhuSWf.js\";import*as sharedStyle4 from\"#framer/local/css/aE0mqRSOD/aE0mqRSOD.js\";import*as sharedStyle12 from\"#framer/local/css/AndROT5aY/AndROT5aY.js\";import*as sharedStyle16 from\"#framer/local/css/cOu7oxRHw/cOu7oxRHw.js\";import*as sharedStyle from\"#framer/local/css/EmVcWRhmV/EmVcWRhmV.js\";import*as sharedStyle18 from\"#framer/local/css/gewdxTCAy/gewdxTCAy.js\";import*as sharedStyle15 from\"#framer/local/css/h5fRexwvE/h5fRexwvE.js\";import*as sharedStyle5 from\"#framer/local/css/iEhb2vNoa/iEhb2vNoa.js\";import*as sharedStyle8 from\"#framer/local/css/K2dgsWTtV/K2dgsWTtV.js\";import*as sharedStyle13 from\"#framer/local/css/k7IhzbU8X/k7IhzbU8X.js\";import*as sharedStyle2 from\"#framer/local/css/kuQnpffLl/kuQnpffLl.js\";import*as sharedStyle11 from\"#framer/local/css/mKNfJLwWc/mKNfJLwWc.js\";import*as sharedStyle14 from\"#framer/local/css/nv2JkrsfM/nv2JkrsfM.js\";import*as sharedStyle1 from\"#framer/local/css/skTl3OL6m/skTl3OL6m.js\";import*as sharedStyle17 from\"#framer/local/css/u5h3AhArG/u5h3AhArG.js\";import*as sharedStyle3 from\"#framer/local/css/UK8V2guuc/UK8V2guuc.js\";import*as sharedStyle6 from\"#framer/local/css/UQvNnAraO/UQvNnAraO.js\";import*as sharedStyle9 from\"#framer/local/css/vGz9Z_y1e/vGz9Z_y1e.js\";import metadataProvider from\"#framer/local/webPageMetadata/BwAeQTkMY/BwAeQTkMY.js\";const NavLightsaberButtonFonts=getFonts(NavLightsaberButton);const NavNavV2SidebarFonts=getFonts(NavNavV2Sidebar);const NavMainNavbarFonts=getFonts(NavMainNavbar);const ComponentSocialShareFonts=getFonts(ComponentSocialShare);const Table_of_ContentFonts=getFonts(Table_of_Content);const LayoutBeehiivSidebarFonts=getFonts(LayoutBeehiivSidebar);const MainAdComponentFonts=getFonts(MainAdComponent);const YouTubeFonts=getFonts(YouTube);const Image1Fonts=getFonts(Image1);const EmbedFonts=getFonts(Embed);const RichTextWithClass1g8ha2i=withCodeBoundaryForOverrides(RichText,{nodeId:\"YlSoinh7r\",override:withClass,scopeId:\"BwAeQTkMY\"});const MotionDivWithClass11bi1lk=withCodeBoundaryForOverrides(motion.div,{nodeId:\"cAU8OHWd5\",override:withClass1,scopeId:\"BwAeQTkMY\"});const ComponentPostContentSocialSubscribeFonts=getFonts(ComponentPostContentSocialSubscribe);const LayoutCommunityCTABannerFonts=getFonts(LayoutCommunityCTABanner);const LayoutRecentArticlesFonts=getFonts(LayoutRecentArticles);const LayoutContentCardVerticalFonts=getFonts(LayoutContentCardVertical);const NavFooterFonts=getFonts(NavFooter);const breakpoints={ihttA2eWk:\"(max-width: 809px)\",J_nCaAxdW:\"(min-width: 1200px) and (max-width: 1439px)\",JQWmjlcCO:\"(min-width: 1440px)\",nyrxHpPuL:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-IVVqq\";const variantClassNames={ihttA2eWk:\"framer-v-1e9spwn\",J_nCaAxdW:\"framer-v-y45l87\",JQWmjlcCO:\"framer-v-10c3ii6\",nyrxHpPuL:\"framer-v-13cpy5p\"};const transition1={damping:40,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:400,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:400,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const negate=value=>{return!value;};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"xyNriqtdd\":return true;case\"uCClDujQo\":return true;case\"lHLAMXUdi\":return false;case\"r3BLmzvRu\":return true;case\"u8GXgL_Gy\":return true;case\"LY0sbahUz\":return true;case\"fJF_PcAf4\":return true;case\"X_UEJUrfN\":return true;case\"XImPzncYp\":return false;default:return true;}};const toBoolean=value=>{return Boolean(value);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop Small\":\"J_nCaAxdW\",Desktop:\"JQWmjlcCO\",Phone:\"ihttA2eWk\",Tablet:\"nyrxHpPuL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"JQWmjlcCO\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"BwAeQTkMY\",name:\"PaFrknkFc\",type:\"Identifier\"},operator:\"==\",right:{collection:\"PaFrknkFc\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"BwAeQTkMY\",data:Articles,type:\"Collection\"},right:{alias:\"PaFrknkFc\",data:StaffMembers,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"BwAeQTkMY\",name:\"afENSngMS\",type:\"Identifier\"},{collection:\"BwAeQTkMY\",name:\"K0ISycnZA\",type:\"Identifier\"},{collection:\"BwAeQTkMY\",name:\"fw3wvsveL\",type:\"Identifier\"},{alias:\"rQLvNz2AO\",arguments:[{from:{alias:\"rQLvNz2AO\",data:Tags,type:\"Collection\"},orderBy:[{arguments:[{collection:\"BwAeQTkMY\",name:\"rQLvNz2AO\",type:\"Identifier\"},{collection:\"rQLvNz2AO\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"rQLvNz2AO\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"rQLvNz2AO\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"BwAeQTkMY\",name:\"rQLvNz2AO\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{alias:\"PaFrknkFc.ib_5S5LhF\",collection:\"PaFrknkFc\",name:\"ib_5S5LhF\",type:\"Identifier\"},{alias:\"PaFrknkFc\",collection:\"PaFrknkFc\",name:\"id\",type:\"Identifier\"},{collection:\"BwAeQTkMY\",name:\"Y6wbwCj86\",type:\"Identifier\"},{collection:\"BwAeQTkMY\",name:\"cQ0jzJKbH\",type:\"Identifier\"},{collection:\"BwAeQTkMY\",name:\"giQy2V1jO\",type:\"Identifier\"},{collection:\"BwAeQTkMY\",name:\"kNMInxXjJ\",type:\"Identifier\"},{collection:\"BwAeQTkMY\",name:\"RHN8Rs32h\",type:\"Identifier\"},{collection:\"BwAeQTkMY\",name:\"uVvNaOeQu\",type:\"Identifier\"},{collection:\"BwAeQTkMY\",name:\"FM4tj0NZJ\",type:\"Identifier\"},{collection:\"BwAeQTkMY\",name:\"sy9UDGPEL\",type:\"Identifier\"},{collection:\"BwAeQTkMY\",name:\"LuirtEPNh\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"BwAeQTkMY\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,Bwjqhgx2TcYIyDkKZX,u_qq4BqpUcYIyDkKZX,idcYIyDkKZX,rQLvNz2AO=getFromCurrentRouteData(\"rQLvNz2AO\"),afENSngMS=getFromCurrentRouteData(\"afENSngMS\")??\"\",FM4tj0NZJ=getFromCurrentRouteData(\"FM4tj0NZJ\")??\"\",PaFrknkFc=getFromCurrentRouteData(\"PaFrknkFc\"),zQSMJtq7JJTQlzU_MC,PaFrknkFc_ib_5S5LhF=getFromCurrentRouteData(\"PaFrknkFc.ib_5S5LhF\")??\"\",idJTQlzU_MC,fw3wvsveL=getFromCurrentRouteData(\"fw3wvsveL\"),giQy2V1jO=getFromCurrentRouteData(\"giQy2V1jO\"),Y6wbwCj86=getFromCurrentRouteData(\"Y6wbwCj86\"),cQ0jzJKbH=getFromCurrentRouteData(\"cQ0jzJKbH\")??\"\",sy9UDGPEL=getFromCurrentRouteData(\"sy9UDGPEL\")??true,kNMInxXjJ=getFromCurrentRouteData(\"kNMInxXjJ\")??\"\",RHN8Rs32h=getFromCurrentRouteData(\"RHN8Rs32h\"),uVvNaOeQu=getFromCurrentRouteData(\"uVvNaOeQu\")??\"\",LuirtEPNh=getFromCurrentRouteData(\"LuirtEPNh\")??\"\",IqFUtJbndkvTAZ51rn,zQSMJtq7JkvTAZ51rn,idkvTAZ51rn,K0ISycnZA=getFromCurrentRouteData(\"K0ISycnZA\")??\"\",Y6wbwCj86vStHSVawE,afENSngMSvStHSVawE,K0ISycnZAvStHSVawE,idvStHSVawE,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const Xq97zv5wj3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className,sharedStyle16.className,sharedStyle17.className,sharedStyle18.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(PaFrknkFc);const activeLocaleCode=useLocaleCode();const textContent=toDateString(fw3wvsveL,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const visible1=equals(giQy2V1jO,\"fINr4QR_9\");const isDisplayed=value=>{if(!isBrowser())return true;if([\"nyrxHpPuL\",\"ihttA2eWk\"].includes(baseVariant))return false;return value;};const elementId=useRouteElementId(\"b4SsuJjRo\");const ref1=React.useRef(null);const visible2=negate(equals(giQy2V1jO,\"fINr4QR_9\"));const elementId1=useRouteElementId(\"G7rwOdUij\");const ref2=React.useRef(null);const visible3=equals(giQy2V1jO,\"RPiGhoxYV\");const visible4=isSet(kNMInxXjJ);const visible5=toBoolean(convertFromEnum(RHN8Rs32h,activeLocale));const visible6=equals(giQy2V1jO,\"QZR4yV_ru\");const isDisplayed1=value=>{if(!isBrowser())return true;if(baseVariant===\"ihttA2eWk\")return true;return value;};const elementId2=useRouteElementId(\"QGIXZHEBa\");const ref3=React.useRef(null);const visible7=isSet(uVvNaOeQu);const elementId3=useRouteElementId(\"YlSoinh7r\");const ref4=React.useRef(null);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"JQWmjlcCO\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-10c3ii6\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,y:16,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-18p8ocv-container\",\"data-framer-name\":\"Lightsaber Button\",id:\"18p8ocv\",layoutScroll:true,name:\"Lightsaber Button\",nodeId:\"z5LU4jBa0\",scopeId:\"BwAeQTkMY\",children:[/*#__PURE__*/_jsx(NavLightsaberButton,{height:\"100%\",id:\"z5LU4jBa0\",layoutId:\"z5LU4jBa0\",name:\"Lightsaber Button\",variant:\"vpUQpUmbL\",width:\"100%\",Xq97zv5wj:Xq97zv5wj3bnx0g({overlay})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.1,ease:[0,0,1,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-3bropx\"),\"data-framer-portal-id\":\"18p8ocv\",exit:{opacity:0,transition:{delay:0,duration:.1,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"a47P6SggW\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{exit:animation3,initial:animation4}},children:/*#__PURE__*/_jsx(Container,{animate:animation1,className:cx(scopingClassNames,\"framer-16yjkr5-container\"),\"data-framer-portal-id\":\"18p8ocv\",exit:animation,inComponentSlot:true,initial:animation2,nodeId:\"k5f0Y86_0\",rendersWithMotion:true,scopeId:\"BwAeQTkMY\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{ngOznVt81:true,style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(NavNavV2Sidebar,{height:\"100%\",id:\"k5f0Y86_0\",layoutId:\"k5f0Y86_0\",ngOznVt81:false,style:{height:\"100%\"},variant:\"ppupZpVbf\",width:\"100%\"})})})})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:149,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m7x9t6-container\",layoutScroll:true,nodeId:\"VXTnYHqRX\",scopeId:\"BwAeQTkMY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{variant:\"omY4AFkkM\"}},children:/*#__PURE__*/_jsx(NavMainNavbar,{height:\"100%\",id:\"VXTnYHqRX\",layoutId:\"VXTnYHqRX\",style:{width:\"100%\"},variant:\"CJqduyvvU\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"article\",{className:\"framer-1mz0eiq\",\"data-framer-name\":\"Contents\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rb9buk\",\"data-framer-name\":\"Hero section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zcnv09\",\"data-framer-name\":\"Hero Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-n2zn94\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"cYIyDkKZX\",data:Tags,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{arguments:[{type:\"LiteralValue\",value:rQLvNz2AO},{collection:\"cYIyDkKZX\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"cYIyDkKZX\",name:\"Bwjqhgx2T\",type:\"Identifier\"},{collection:\"cYIyDkKZX\",name:\"u_qq4BqpU\",type:\"Identifier\"},{collection:\"cYIyDkKZX\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"cYIyDkKZX\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:rQLvNz2AO},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({Bwjqhgx2T:Bwjqhgx2TcYIyDkKZX,id:idcYIyDkKZX,u_qq4BqpU:u_qq4BqpUcYIyDkKZX},index)=>{Bwjqhgx2TcYIyDkKZX??=\"\";u_qq4BqpUcYIyDkKZX??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`cYIyDkKZX-${idcYIyDkKZX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Bwjqhgx2T:Bwjqhgx2TcYIyDkKZX},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1prggh2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gx0lp3\",\"data-styles-preset\":\"EmVcWRhmV\",style:{\"--framer-text-color\":\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Bwjqhgx2T:Bwjqhgx2TcYIyDkKZX},webPageId:\"HvO4zzymK\"},motionChild:true,nodeId:\"S9yz8B5ip\",openInNewTab:false,scopeId:\"BwAeQTkMY\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10gu9yh\",\"data-styles-preset\":\"skTl3OL6m\",children:\"Comic Review\"})})})}),className:\"framer-19eyu7a\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],text:u_qq4BqpUcYIyDkKZX,verticalAlignment:\"top\",withExternalLayout:true})})})},idcYIyDkKZX);})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-ndp0i7\",\"data-framer-name\":\"Hero Text Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5vhuik\",\"data-framer-name\":\"Title/Summary Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-sw8gm9\",\"data-styles-preset\":\"kuQnpffLl\",children:\"Comic Review: The High Republic: Fear of the Jedi #2 \u2013 The Nihil\u2019s Last Stand?!\"})}),className:\"framer-1do86n3\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:afENSngMS,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-179kqif\",\"data-styles-preset\":\"UK8V2guuc\",children:\"Cavan Scott\u2019s epic run on Marvel\u2019s The High Republic continues its final arc \u2013 will this be the last battle between Jedi and Nihil?\"})}),className:\"framer-1r1o1la\",\"data-framer-name\":\"Summary\",fonts:[\"Inter\"],text:FM4tj0NZJ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1djc1fr\",\"data-framer-name\":\"Frame 24295\",children:[visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1te433w\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JTQlzU_MC\",data:StaffMembers,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"JTQlzU_MC\",name:\"zQSMJtq7J\",type:\"Identifier\"},{collection:\"JTQlzU_MC\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"JTQlzU_MC\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:PaFrknkFc},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idJTQlzU_MC,zQSMJtq7J:zQSMJtq7JJTQlzU_MC},index1)=>{zQSMJtq7JJTQlzU_MC??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JTQlzU_MC-${idJTQlzU_MC}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{zQSMJtq7J:zQSMJtq7JJTQlzU_MC},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jlo07y\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h5epny\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yn9uvi\",\"data-styles-preset\":\"aE0mqRSOD\",style:{\"--framer-text-color\":\"var(--token-8ba56df2-a7ed-442b-8814-8a5c9139f733, rgb(104, 101, 107))\"},children:\"By\"})}),className:\"framer-7wymp8\",\"data-framer-name\":\"By\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yn9uvi\",\"data-styles-preset\":\"aE0mqRSOD\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{zQSMJtq7J:zQSMJtq7JJTQlzU_MC},webPageId:\"pA68BENfS\"},motionChild:true,nodeId:\"CsGHkHdQx\",openInNewTab:false,scopeId:\"BwAeQTkMY\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10gu9yh\",\"data-styles-preset\":\"skTl3OL6m\",children:\"Oz Davis\"})})})}),className:\"framer-bfvh5k\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],text:PaFrknkFc_ib_5S5LhF,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9t2779\",\"data-framer-name\":\"Frame 24292\"})]})})},idJTQlzU_MC);})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1u8ifhx\",\"data-styles-preset\":\"iEhb2vNoa\",style:{\"--framer-text-color\":\"var(--token-8ba56df2-a7ed-442b-8814-8a5c9139f733, rgb(104, 101, 107))\"},children:\"Mar 26, 2025\"})}),className:\"framer-133k4h1\",\"data-framer-name\":\"June 26, 2024\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+0+88+-227.4+64+0+0+45.7+0+301.4},J_nCaAxdW:{width:`calc(${componentViewport?.width||\"100vw\"} - 160px)`},nyrxHpPuL:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,width:`min(${componentViewport?.width||\"100vw\"} - 240px, 1200px)`,y:(componentViewport?.y||0)+0+0+89+-507.4+80+0+0+45.7+0+301.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cjd3bz-container\",nodeId:\"sIWk7XjAQ\",scopeId:\"BwAeQTkMY\",children:/*#__PURE__*/_jsx(ComponentSocialShare,{height:\"100%\",id:\"sIWk7XjAQ\",layoutId:\"sIWk7XjAQ\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1niofbr\",\"data-framer-name\":\"Guide Image Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+88+249.7+0+0),pixelHeight:1600,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(Y6wbwCj86)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+89+-14.3+0+0),pixelHeight:1600,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(Y6wbwCj86)},className:\"framer-1a60sw1\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rxx4gd\",\"data-framer-name\":\"Cover image source wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-okj9ba\",\"data-styles-preset\":\"UQvNnAraO\",children:\"Marvel Comics/Youtini Illustration\"})}),className:\"framer-pwb4c2\",fonts:[\"Inter\"],text:cQ0jzJKbH,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7pwlou\",\"data-framer-name\":\"News section\",children:[isDisplayed(visible1)&&/*#__PURE__*/_jsxs(\"div\",{className:cx(\"framer-1py3uqb\",\"hidden-13cpy5p\",\"hidden-1e9spwn\",!visible1&&\"hidden-10c3ii6\",!visible1&&\"hidden-y45l87\"),\"data-framer-name\":\"Guide Sidebar\",\"data-hide-scrollbars\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18ru2c9\",\"data-framer-name\":\"Frame 24326\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vpo2jw\",\"data-framer-name\":\"Frame 24325\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(18, 18, 18)\"},children:\"Must Read\"})}),className:\"framer-grptva\",\"data-framer-name\":\"Releasing soon\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-imvqcy\",\"data-framer-name\":\"Table of Contents - Sticky\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xh321f\",\"data-framer-name\":\"Frame 23937\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"155%\",\"--framer-text-color\":\"rgb(18, 18, 18)\"},children:\"WHAT\u2019S INSIDE\"})}),className:\"framer-vvudnw\",\"data-framer-name\":\"WHAT\u2019S INSIDE\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xd52pk\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1btmigb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"B0Nsa1rFK\",scopeId:\"BwAeQTkMY\",children:/*#__PURE__*/_jsx(Table_of_Content,{activeColor:\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\",activeFontWeight:\"bold\",fontColor:\"rgb(0, 0, 0)\",h1Font:{},h2Font:{fontFamily:'\"Source Serif 4\", \"Source Serif 4 Placeholder\", serif',fontSize:\"15px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"125%\",textAlign:\"left\"},h3Font:{fontFamily:'\"Source Serif 4\", \"Source Serif 4 Placeholder\", serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},h4Font:{},h5Font:{},h6Font:{},height:\"100%\",id:\"B0Nsa1rFK\",indentation:0,layoutId:\"B0Nsa1rFK\",onHoverColor:\"var(--token-494a1393-2879-4477-9cc7-bac49cd8481b, rgb(149, 67, 134))\",section_id:\"main-rich-text\",showH1:false,showH2:true,showH3:sy9UDGPEL,showH4:false,showH5:false,showH6:false,spacing:12,style:{width:\"100%\"},width:\"100%\",yOffset:125})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:366,width:\"294px\",y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+764.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rh13yb-container\",nodeId:\"PAMfibUGq\",scopeId:\"BwAeQTkMY\",children:/*#__PURE__*/_jsx(LayoutBeehiivSidebar,{height:\"100%\",id:\"PAMfibUGq\",layoutId:\"PAMfibUGq\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-usswnk\",\"data-framer-name\":\"Sidebar Ad Unit\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J_nCaAxdW:{width:`min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 294px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 294px)`,y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+1154.5+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oklav-container\",nodeId:\"yixfhzxVw\",scopeId:\"BwAeQTkMY\",children:/*#__PURE__*/_jsx(MainAdComponent,{height:\"100%\",id:\"yixfhzxVw\",layoutId:\"yixfhzxVw\",style:{width:\"100%\"},variant:\"XfZ_k6npG\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lga65c\",\"data-framer-name\":\"Blog Contents\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2xgje2\",children:[/*#__PURE__*/_jsxs(MotionDivWithClass11bi1lk,{className:\"framer-1bi1lk\",\"data-framer-name\":\"TextContent\",children:[visible2&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u2ygvd\",\"data-framer-name\":\"Image Wrapper\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-i96jwu\",\"data-framer-name\":\"Banner Ad Unit\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px, 1px), 930px)`,y:(componentViewport?.y||0)+0+0+88+704.5+0+0+0+0+0+0+0+0+0+0+0},J_nCaAxdW:{width:`min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 930px)`},nyrxHpPuL:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 96px, 1px), 930px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 930px)`,y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+0+0+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lswqxj-container\",nodeId:\"GCJfQZVRF\",rendersWithMotion:true,scopeId:\"BwAeQTkMY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{variant:\"q5Cc48hoT\"}},children:/*#__PURE__*/_jsx(MainAdComponent,{height:\"100%\",id:\"GCJfQZVRF\",layoutId:\"GCJfQZVRF\",style:{height:\"100%\",width:\"100%\"},variant:\"LSx_b5ftV\",width:\"100%\"})})})})})}),visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+88+704.5+0+0+0+0+0+0+0+0+110),sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px, 1px), 930px)`,...toResponsiveImage(Y6wbwCj86),...{positionX:\"center\",positionY:\"center\"}}},J_nCaAxdW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+89+1000.5+0+0+0+0+0+0+0+0+110),sizes:`min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 930px)`,...toResponsiveImage(Y6wbwCj86),...{positionX:\"center\",positionY:\"center\"}}},nyrxHpPuL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+89+1000.5+0+0+0+0+0+0+0+0+110),sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 96px, 1px), 930px)`,...toResponsiveImage(Y6wbwCj86),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+89+1000.5+0+0+0+0+0+0+0+0+110),sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 930px)`,...toResponsiveImage(Y6wbwCj86),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-52gm7v\",\"data-framer-name\":\"Article Cover Image\"})}),visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a78vwu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"e2rL4rBi0\",rendersWithMotion:true,scopeId:\"BwAeQTkMY\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"e2rL4rBi0\",isMixedBorderRadius:false,isRed:true,layoutId:\"e2rL4rBi0\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:kNMInxXjJ,width:\"100%\"})})}),visible5&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pp3ha4\",\"data-framer-name\":\"Podcast Cover Image Wrapper\",children:visible6&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c8sd7n-container\",\"data-framer-name\":\"Podcast Cover Image\",isAuthoredByUser:true,isModuleExternal:true,name:\"Podcast Cover Image\",nodeId:\"omvTUaYld\",rendersWithMotion:true,scopeId:\"BwAeQTkMY\",children:/*#__PURE__*/_jsx(Image1,{alt:afENSngMS,height:\"100%\",id:\"omvTUaYld\",image:toResponsiveImage(Y6wbwCj86),layoutId:\"omvTUaYld\",name:\"Podcast Cover Image\",newTab:true,padding:0,radius:24,style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pyelo7\",\"data-framer-name\":\"Cover image source wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-okj9ba\",\"data-styles-preset\":\"UQvNnAraO\",children:\"Marvel Comics/Youtini Illustration\"})}),className:\"framer-599rvf\",fonts:[\"Inter\"],text:cQ0jzJKbH,verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed1(visible1)&&/*#__PURE__*/_jsx(motion.div,{className:cx(\"framer-18tuo26\",!visible1&&\"hidden-10c3ii6\",!visible1&&\"hidden-y45l87\",!visible1&&\"hidden-13cpy5p\"),\"data-framer-name\":\"Banner Ad Unit\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px, 1px), 930px)`,y:(componentViewport?.y||0)+0+0+88+704.5+0+0+0+0+0+0+516.8+0+0},J_nCaAxdW:{width:`min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 930px)`,y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+0+0+0+0+666.8+0+0},nyrxHpPuL:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 96px, 1px), 930px)`,y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+0+0+0+0+616.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 930px)`,y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+0+0+0+0+761.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m46cqy-container\",nodeId:\"jdiSViIHp\",rendersWithMotion:true,scopeId:\"BwAeQTkMY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{variant:\"q5Cc48hoT\"}},children:/*#__PURE__*/_jsx(MainAdComponent,{height:\"100%\",id:\"jdiSViIHp\",layoutId:\"jdiSViIHp\",style:{height:\"100%\",width:\"100%\"},variant:\"LSx_b5ftV\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18vjcn8\",\"data-styles-preset\":\"A6iQhuSWf\",children:[/*#__PURE__*/_jsx(\"em\",{children:\"Note: This article may contain affiliate links, meaning we may earn a commission if you purchase through them at no extra cost to you. See our \"}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rJtf3gl40\"},motionChild:true,nodeId:\"pBvLKOz2B\",openInNewTab:false,scopeId:\"BwAeQTkMY\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10gu9yh\",\"data-styles-preset\":\"skTl3OL6m\",children:/*#__PURE__*/_jsx(\"em\",{children:\"disclaimers\"})})}),/*#__PURE__*/_jsx(\"em\",{children:\" for more information.\"})]})}),className:\"framer-1im1hh1\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xtbuzv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CYby2M58R\",rendersWithMotion:true,scopeId:\"BwAeQTkMY\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:uVvNaOeQu,id:\"CYby2M58R\",layoutId:\"CYby2M58R\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"qPTXFidVd\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"YGs5l9FqA\"]},children:/*#__PURE__*/_jsx(RichTextWithClass1g8ha2i,{__fromCanvasComponent:true,children:LuirtEPNh,className:\"framer-1g8ha2i\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],id:elementId3,ref:ref4,stylesPresetsClassNames:{a:\"framer-styles-preset-10gu9yh\",blockquote:\"framer-styles-preset-kru9vb\",code:\"framer-styles-preset-1ndwll4\",h1:\"framer-styles-preset-sw8gm9\",h2:\"framer-styles-preset-2tumkn\",h3:\"framer-styles-preset-11v7c31\",h4:\"framer-styles-preset-lir3uc\",h5:\"framer-styles-preset-12rdpoq\",h6:\"framer-styles-preset-114f1cf\",img:\"framer-styles-preset-1ytybwn\",p:\"framer-styles-preset-18vjcn8\",table:\"framer-styles-preset-1uendqw\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cj862c\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"kvTAZ51rn\",data:StaffMembers,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"kvTAZ51rn\",name:\"IqFUtJbnd\",type:\"Identifier\"},{collection:\"kvTAZ51rn\",name:\"zQSMJtq7J\",type:\"Identifier\"},{collection:\"kvTAZ51rn\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"kvTAZ51rn\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:PaFrknkFc},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idkvTAZ51rn,IqFUtJbnd:IqFUtJbndkvTAZ51rn,zQSMJtq7J:zQSMJtq7JkvTAZ51rn},index2)=>{IqFUtJbndkvTAZ51rn??=\"\";zQSMJtq7JkvTAZ51rn??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`kvTAZ51rn-${idkvTAZ51rn}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{zQSMJtq7J:zQSMJtq7JkvTAZ51rn},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15z69vb\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"qPTXFidVd\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"YGs5l9FqA\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:IqFUtJbndkvTAZ51rn,className:\"framer-1o58x9h\",\"data-framer-name\":\"Staff Member Name\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-10gu9yh\",blockquote:\"framer-styles-preset-kru9vb\",code:\"framer-styles-preset-1ndwll4\",h1:\"framer-styles-preset-e5r0it\",h2:\"framer-styles-preset-2tumkn\",h3:\"framer-styles-preset-1cm1601\",h4:\"framer-styles-preset-lir3uc\",h5:\"framer-styles-preset-12rdpoq\",h6:\"framer-styles-preset-114f1cf\",img:\"framer-styles-preset-1ytybwn\",p:\"framer-styles-preset-18vjcn8\",table:\"framer-styles-preset-1uendqw\"},verticalAlignment:\"top\",withExternalLayout:true})})})})},idkvTAZ51rn);})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px, 1px), 930px)`,y:(componentViewport?.y||0)+0+0+88+704.5+0+0+0+0+1118.3},J_nCaAxdW:{width:`min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 930px)`,y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+0+0+1126.3},nyrxHpPuL:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 96px, 1px), 930px)`,y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+0+0+1076.3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:77,width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 930px)`,y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+0+0+1221.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lpi16-container\",nodeId:\"sywMiInXk\",scopeId:\"BwAeQTkMY\",children:/*#__PURE__*/_jsx(ComponentPostContentSocialSubscribe,{height:\"100%\",id:\"sywMiInXk\",layoutId:\"sywMiInXk\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lb6aORy2e\"},implicitPathVariables:undefined},{href:{webPageId:\"lb6aORy2e\"},implicitPathVariables:undefined},{href:{webPageId:\"lb6aORy2e\"},implicitPathVariables:undefined},{href:{webPageId:\"lb6aORy2e\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px, 1px), 930px)`,y:(componentViewport?.y||0)+0+0+88+704.5+0+0+0+0+1259.3},J_nCaAxdW:{width:`min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 930px)`,y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+0+0+1267.3},nyrxHpPuL:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 96px, 1px), 930px)`,y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+0+0+1217.3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:444,width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 930px)`,y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+0+0+1362.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-799ui4-container\",nodeId:\"tTIS2AYAT\",scopeId:\"BwAeQTkMY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{UAn2w6n6G:resolvedLinks[3],variant:\"EyANONI9y\"},J_nCaAxdW:{UAn2w6n6G:resolvedLinks[1]},nyrxHpPuL:{UAn2w6n6G:resolvedLinks[2],variant:\"uk3OxF1SG\"}},children:/*#__PURE__*/_jsx(LayoutCommunityCTABanner,{height:\"100%\",id:\"tTIS2AYAT\",KYXFCKqo3:\"Join Now\",layoutId:\"tTIS2AYAT\",MIbyzHnhg:\"Your adventure starts here! Join The Younited to connect with fellow fans, enjoy premium content, and never miss a moment from the galaxy we love.\",phCzCvMIV:\"Join The Younited Community\",style:{width:\"100%\"},UAn2w6n6G:resolvedLinks[0],variant:\"WzLKH1sfV\",width:\"100%\",XCBoYudJm:true})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px, 1px), 930px)`,y:(componentViewport?.y||0)+0+0+88+704.5+0+0+1767.3},J_nCaAxdW:{width:`min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 930px)`,y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+1775.3},nyrxHpPuL:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 96px, 1px), 930px)`,y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+1725.3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:727,width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 930px)`,y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+1870.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ed4xme-container\",nodeId:\"AngbkRoRQ\",scopeId:\"BwAeQTkMY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{variant:\"BCHWuFvPm\"}},children:/*#__PURE__*/_jsx(LayoutRecentArticles,{height:\"100%\",id:\"AngbkRoRQ\",layoutId:\"AngbkRoRQ\",RqhgH8USI:K0ISycnZA,style:{width:\"100%\"},variant:\"PDSo_dufV\",width:\"100%\"})})})})})]}),isDisplayed(visible2)&&/*#__PURE__*/_jsxs(\"div\",{className:cx(\"framer-5pwhk0\",\"hidden-13cpy5p\",\"hidden-1e9spwn\",!visible2&&\"hidden-10c3ii6\",!visible2&&\"hidden-y45l87\"),\"data-framer-name\":\"Article Sidebar\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e7e5so\",\"data-framer-name\":\"Frame 24326\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1257c1e\",\"data-framer-name\":\"Frame 24325\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(18, 18, 18)\"},children:\"Must Read\"})}),className:\"framer-1e3crl8\",\"data-framer-name\":\"Releasing soon\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8cncyr\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vStHSVawE\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"vStHSVawE\",name:\"Y6wbwCj86\",type:\"Identifier\"},{collection:\"vStHSVawE\",name:\"afENSngMS\",type:\"Identifier\"},{collection:\"vStHSVawE\",name:\"K0ISycnZA\",type:\"Identifier\"},{collection:\"vStHSVawE\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"vStHSVawE\",name:\"Y6wbwCj86\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"vStHSVawE\",name:\"Y6wbwCj86\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"vStHSVawE\",name:\"K0ISycnZA\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:K0ISycnZA},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({afENSngMS:afENSngMSvStHSVawE,id:idvStHSVawE,K0ISycnZA:K0ISycnZAvStHSVawE,Y6wbwCj86:Y6wbwCj86vStHSVawE},index3)=>{afENSngMSvStHSVawE??=\"\";K0ISycnZAvStHSVawE??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vStHSVawE-${idvStHSVawE}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{K0ISycnZA:K0ISycnZAvStHSVawE},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13u8cho\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{K0ISycnZA:K0ISycnZAvStHSVawE},webPageId:\"BwAeQTkMY\"},implicitPathVariables:undefined},{href:{pathVariables:{K0ISycnZA:K0ISycnZAvStHSVawE},webPageId:\"BwAeQTkMY\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J_nCaAxdW:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 294px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:655,width:`max(min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 294px), 1px)`,y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+223.5+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17csrk3-container\",nodeId:\"vLl5oaOIG\",scopeId:\"BwAeQTkMY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J_nCaAxdW:{v7BYFWmaC:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(LayoutContentCardVertical,{BcHjmIi6X:\"June 26, 2024\",FrloE0N0O:\"Default post summary\",gKR851l5a:\"Gaming\",height:\"100%\",id:\"vLl5oaOIG\",layoutId:\"vLl5oaOIG\",pNlyAvzNe:\"Youtini\",PRRtJbE1f:afENSngMSvStHSVawE,style:{width:\"100%\"},v7BYFWmaC:resolvedLinks1[0],variant:\"hB_l9gv2i\",width:\"100%\",z7VJOjuaW:toResponsiveImage(Y6wbwCj86vStHSVawE)})})})})})})})})},idvStHSVawE);})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:366,width:\"294px\",y:(componentViewport?.y||0)+0+0+89+1000.5+0+0+902.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5wh8bx-container\",nodeId:\"rvmfas_Np\",scopeId:\"BwAeQTkMY\",children:/*#__PURE__*/_jsx(LayoutBeehiivSidebar,{height:\"100%\",id:\"rvmfas_Np\",layoutId:\"rvmfas_Np\",style:{width:\"100%\"},width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q04lh5\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{height:1239,y:(componentViewport?.y||0)+0+3123.4+64},J_nCaAxdW:{y:(componentViewport?.y||0)+0+3244.4+0},nyrxHpPuL:{height:988,y:(componentViewport?.y||0)+0+3194.4+64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:865,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+3339.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nedy5w-container\",nodeId:\"QDPbtx_gB\",scopeId:\"BwAeQTkMY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihttA2eWk:{variant:\"t4nZODiGq\"},J_nCaAxdW:{variant:\"H3M5Zux2e\"},nyrxHpPuL:{variant:\"NGo9eyztz\"}},children:/*#__PURE__*/_jsx(NavFooter,{height:\"100%\",id:\"QDPbtx_gB\",layoutId:\"QDPbtx_gB\",style:{height:\"100%\",width:\"100%\"},variant:\"j9M_XvJkI\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IVVqq.framer-8qk8kv, .framer-IVVqq .framer-8qk8kv { display: block; }\",\".framer-IVVqq.framer-10c3ii6 { align-content: center; align-items: center; background-color: var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-IVVqq .framer-18p8ocv-container { flex: none; height: auto; position: fixed; right: 24px; top: 16px; width: auto; z-index: 7; }\",\".framer-IVVqq.framer-3bropx { background-color: rgba(0, 0, 0, 0.1); inset: 0px; position: fixed; user-select: none; z-index: 5; }\",\".framer-IVVqq.framer-16yjkr5-container { flex: none; height: 100%; position: fixed; right: 0px; top: 0px; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 6; }\",\".framer-IVVqq .framer-1m7x9t6-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 5; }\",\".framer-IVVqq .framer-1mz0eiq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 89px 0px 160px 0px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-1rb9buk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 120px 0px 120px; position: relative; width: 100%; z-index: 1; }\",\".framer-IVVqq .framer-zcnv09 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-n2zn94 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-IVVqq .framer-1prggh2 { align-content: center; align-items: center; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-IVVqq .framer-19eyu7a, .framer-IVVqq .framer-7wymp8, .framer-IVVqq .framer-bfvh5k, .framer-IVVqq .framer-133k4h1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IVVqq .framer-ndp0i7, .framer-IVVqq .framer-1xh321f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-5vhuik, .framer-IVVqq .framer-18ru2c9, .framer-IVVqq .framer-1e7e5so { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-1do86n3, .framer-IVVqq .framer-1r1o1la, .framer-IVVqq .framer-vvudnw { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IVVqq .framer-1djc1fr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-IVVqq .framer-1te433w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-IVVqq .framer-1jlo07y { 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; padding: 0px; position: relative; width: min-content; }\",\".framer-IVVqq .framer-1h5epny { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-IVVqq .framer-9t2779 { background-color: rgba(18, 18, 18, 0.32); flex: none; height: 16px; overflow: hidden; position: relative; width: 1px; }\",\".framer-IVVqq .framer-cjd3bz-container, .framer-IVVqq .framer-oklav-container, .framer-IVVqq .framer-1lpi16-container, .framer-IVVqq .framer-799ui4-container, .framer-IVVqq .framer-ed4xme-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-IVVqq .framer-1niofbr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-1a60sw1 { flex: none; height: 950px; overflow: hidden; position: relative; width: 100%; }\",\".framer-IVVqq .framer-1rxx4gd, .framer-IVVqq .framer-pyelo7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 15px; position: relative; width: min-content; }\",\".framer-IVVqq .framer-pwb4c2, .framer-IVVqq .framer-599rvf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IVVqq .framer-7pwlou { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-1py3uqb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-height: 85vh; max-width: 294px; overflow: hidden; overflow-y: auto; padding: 0px; position: sticky; top: 112px; width: 1px; z-index: 1; }\",\".framer-IVVqq .framer-vpo2jw, .framer-IVVqq .framer-1257c1e { background-color: #121212; flex: none; height: 2px; overflow: hidden; position: relative; width: 100%; }\",\".framer-IVVqq .framer-grptva, .framer-IVVqq .framer-1e3crl8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 294px; word-break: break-word; word-wrap: break-word; }\",\".framer-IVVqq .framer-imvqcy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-IVVqq .framer-1xd52pk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 10px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-1btmigb-container, .framer-IVVqq .framer-1c8sd7n-container, .framer-IVVqq .framer-17csrk3-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-IVVqq .framer-rh13yb-container, .framer-IVVqq .framer-5wh8bx-container { flex: none; height: auto; position: relative; width: 294px; }\",\".framer-IVVqq .framer-usswnk, .framer-IVVqq .framer-i96jwu, .framer-IVVqq .framer-18tuo26 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-lga65c { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 930px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-IVVqq .framer-2xgje2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-1bi1lk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-1u2ygvd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-lswqxj-container, .framer-IVVqq .framer-1m46cqy-container { flex: none; height: 90px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-52gm7v { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 595px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-1a78vwu-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 100%; }\",\".framer-IVVqq .framer-1pp3ha4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; min-height: 512px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-1im1hh1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IVVqq .framer-xtbuzv-container { flex: none; height: 161px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-1g8ha2i { --framer-paragraph-spacing: 20px; flex: none; height: auto; max-width: 930px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IVVqq .framer-1cj862c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-15z69vb, .framer-IVVqq .framer-13u8cho { 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; position: relative; width: 100%; }\",\".framer-IVVqq .framer-1o58x9h { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-IVVqq .framer-5pwhk0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 294px; overflow: visible; padding: 0px; position: sticky; top: 112px; width: 1px; z-index: 1; }\",\".framer-IVVqq .framer-8cncyr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-q04lh5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IVVqq .framer-1nedy5w-container { flex: 1 0 0px; height: 865px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-IVVqq.framer-10c3ii6, .framer-IVVqq .framer-1mz0eiq, .framer-IVVqq .framer-1rb9buk, .framer-IVVqq .framer-zcnv09, .framer-IVVqq .framer-n2zn94, .framer-IVVqq .framer-1prggh2, .framer-IVVqq .framer-ndp0i7, .framer-IVVqq .framer-5vhuik, .framer-IVVqq .framer-1djc1fr, .framer-IVVqq .framer-1te433w, .framer-IVVqq .framer-1jlo07y, .framer-IVVqq .framer-1h5epny, .framer-IVVqq .framer-1niofbr, .framer-IVVqq .framer-1rxx4gd, .framer-IVVqq .framer-7pwlou, .framer-IVVqq .framer-1py3uqb, .framer-IVVqq .framer-18ru2c9, .framer-IVVqq .framer-imvqcy, .framer-IVVqq .framer-1xh321f, .framer-IVVqq .framer-1xd52pk, .framer-IVVqq .framer-usswnk, .framer-IVVqq .framer-lga65c, .framer-IVVqq .framer-2xgje2, .framer-IVVqq .framer-1bi1lk, .framer-IVVqq .framer-1u2ygvd, .framer-IVVqq .framer-i96jwu, .framer-IVVqq .framer-1pp3ha4, .framer-IVVqq .framer-pyelo7, .framer-IVVqq .framer-18tuo26, .framer-IVVqq .framer-1cj862c, .framer-IVVqq .framer-15z69vb, .framer-IVVqq .framer-5pwhk0, .framer-IVVqq .framer-1e7e5so, .framer-IVVqq .framer-8cncyr, .framer-IVVqq .framer-13u8cho, .framer-IVVqq .framer-q04lh5 { gap: 0px; } .framer-IVVqq.framer-10c3ii6 > *, .framer-IVVqq .framer-1u2ygvd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-IVVqq.framer-10c3ii6 > :first-child, .framer-IVVqq .framer-1mz0eiq > :first-child, .framer-IVVqq .framer-1rb9buk > :first-child, .framer-IVVqq .framer-zcnv09 > :first-child, .framer-IVVqq .framer-ndp0i7 > :first-child, .framer-IVVqq .framer-5vhuik > :first-child, .framer-IVVqq .framer-1te433w > :first-child, .framer-IVVqq .framer-1niofbr > :first-child, .framer-IVVqq .framer-1py3uqb > :first-child, .framer-IVVqq .framer-18ru2c9 > :first-child, .framer-IVVqq .framer-imvqcy > :first-child, .framer-IVVqq .framer-1xh321f > :first-child, .framer-IVVqq .framer-usswnk > :first-child, .framer-IVVqq .framer-lga65c > :first-child, .framer-IVVqq .framer-2xgje2 > :first-child, .framer-IVVqq .framer-1bi1lk > :first-child, .framer-IVVqq .framer-1u2ygvd > :first-child, .framer-IVVqq .framer-i96jwu > :first-child, .framer-IVVqq .framer-18tuo26 > :first-child, .framer-IVVqq .framer-1cj862c > :first-child, .framer-IVVqq .framer-5pwhk0 > :first-child, .framer-IVVqq .framer-1e7e5so > :first-child, .framer-IVVqq .framer-8cncyr > :first-child { margin-top: 0px; } .framer-IVVqq.framer-10c3ii6 > :last-child, .framer-IVVqq .framer-1mz0eiq > :last-child, .framer-IVVqq .framer-1rb9buk > :last-child, .framer-IVVqq .framer-zcnv09 > :last-child, .framer-IVVqq .framer-ndp0i7 > :last-child, .framer-IVVqq .framer-5vhuik > :last-child, .framer-IVVqq .framer-1te433w > :last-child, .framer-IVVqq .framer-1niofbr > :last-child, .framer-IVVqq .framer-1py3uqb > :last-child, .framer-IVVqq .framer-18ru2c9 > :last-child, .framer-IVVqq .framer-imvqcy > :last-child, .framer-IVVqq .framer-1xh321f > :last-child, .framer-IVVqq .framer-usswnk > :last-child, .framer-IVVqq .framer-lga65c > :last-child, .framer-IVVqq .framer-2xgje2 > :last-child, .framer-IVVqq .framer-1bi1lk > :last-child, .framer-IVVqq .framer-1u2ygvd > :last-child, .framer-IVVqq .framer-i96jwu > :last-child, .framer-IVVqq .framer-18tuo26 > :last-child, .framer-IVVqq .framer-1cj862c > :last-child, .framer-IVVqq .framer-5pwhk0 > :last-child, .framer-IVVqq .framer-1e7e5so > :last-child, .framer-IVVqq .framer-8cncyr > :last-child { margin-bottom: 0px; } .framer-IVVqq .framer-1mz0eiq > *, .framer-IVVqq .framer-1bi1lk > *, .framer-IVVqq .framer-8cncyr > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-IVVqq .framer-1rb9buk > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-IVVqq .framer-zcnv09 > *, .framer-IVVqq .framer-ndp0i7 > *, .framer-IVVqq .framer-1py3uqb > *, .framer-IVVqq .framer-imvqcy > *, .framer-IVVqq .framer-1xh321f > *, .framer-IVVqq .framer-5pwhk0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-IVVqq .framer-n2zn94 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-IVVqq .framer-n2zn94 > :first-child, .framer-IVVqq .framer-1prggh2 > :first-child, .framer-IVVqq .framer-1djc1fr > :first-child, .framer-IVVqq .framer-1jlo07y > :first-child, .framer-IVVqq .framer-1h5epny > :first-child, .framer-IVVqq .framer-1rxx4gd > :first-child, .framer-IVVqq .framer-7pwlou > :first-child, .framer-IVVqq .framer-1xd52pk > :first-child, .framer-IVVqq .framer-1pp3ha4 > :first-child, .framer-IVVqq .framer-pyelo7 > :first-child, .framer-IVVqq .framer-15z69vb > :first-child, .framer-IVVqq .framer-13u8cho > :first-child, .framer-IVVqq .framer-q04lh5 > :first-child { margin-left: 0px; } .framer-IVVqq .framer-n2zn94 > :last-child, .framer-IVVqq .framer-1prggh2 > :last-child, .framer-IVVqq .framer-1djc1fr > :last-child, .framer-IVVqq .framer-1jlo07y > :last-child, .framer-IVVqq .framer-1h5epny > :last-child, .framer-IVVqq .framer-1rxx4gd > :last-child, .framer-IVVqq .framer-7pwlou > :last-child, .framer-IVVqq .framer-1xd52pk > :last-child, .framer-IVVqq .framer-1pp3ha4 > :last-child, .framer-IVVqq .framer-pyelo7 > :last-child, .framer-IVVqq .framer-15z69vb > :last-child, .framer-IVVqq .framer-13u8cho > :last-child, .framer-IVVqq .framer-q04lh5 > :last-child { margin-right: 0px; } .framer-IVVqq .framer-1prggh2 > *, .framer-IVVqq .framer-1rxx4gd > *, .framer-IVVqq .framer-pyelo7 > *, .framer-IVVqq .framer-q04lh5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-IVVqq .framer-5vhuik > *, .framer-IVVqq .framer-18ru2c9 > *, .framer-IVVqq .framer-1e7e5so > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-IVVqq .framer-1djc1fr > *, .framer-IVVqq .framer-1jlo07y > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-IVVqq .framer-1te433w > *, .framer-IVVqq .framer-1cj862c > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-IVVqq .framer-1h5epny > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-IVVqq .framer-1niofbr > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-IVVqq .framer-7pwlou > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-IVVqq .framer-1xd52pk > *, .framer-IVVqq .framer-1pp3ha4 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-IVVqq .framer-usswnk > *, .framer-IVVqq .framer-i96jwu > *, .framer-IVVqq .framer-18tuo26 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-IVVqq .framer-lga65c > *, .framer-IVVqq .framer-2xgje2 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-IVVqq .framer-15z69vb > *, .framer-IVVqq .framer-13u8cho > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css,...sharedStyle17.css,...sharedStyle18.css,'.framer-IVVqq[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-IVVqq [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-IVVqq[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-IVVqq [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-IVVqq[data-hide-scrollbars=\"true\"], .framer-IVVqq [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-IVVqq.framer-10c3ii6 { width: 1200px; } .framer-IVVqq .framer-1rb9buk { padding: 80px 80px 0px 80px; } .framer-IVVqq .framer-zcnv09 { max-width: unset; } .framer-IVVqq .framer-7pwlou { max-width: unset; padding: 0px 80px 0px 80px; } .framer-IVVqq .framer-52gm7v { height: 500px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-IVVqq.framer-10c3ii6 { width: 810px; } .framer-IVVqq .framer-1rb9buk { padding: 80px 40px 0px 40px; } .framer-IVVqq .framer-7pwlou { padding: 0px 48px 0px 48px; } .framer-IVVqq .framer-52gm7v { height: 450px; } .framer-IVVqq .framer-q04lh5 { padding: 64px 0px 0px 0px; } .framer-IVVqq .framer-1nedy5w-container { height: 988px; z-index: 0; }}\",\"@media (max-width: 809px) { .framer-IVVqq.framer-10c3ii6 { width: 390px; } .framer-IVVqq.framer-16yjkr5-container { left: calc(50.00000000000002% - 100% / 2); right: unset; width: 100%; } .framer-IVVqq .framer-1mz0eiq { padding: 88px 0px 64px 0px; } .framer-IVVqq .framer-1rb9buk { padding: 64px 24px 0px 24px; } .framer-IVVqq .framer-1a60sw1 { height: 390px; } .framer-IVVqq .framer-7pwlou { padding: 0px 24px 0px 24px; } .framer-IVVqq .framer-52gm7v { height: 350px; } .framer-IVVqq .framer-1g8ha2i { --framer-paragraph-spacing: 24px; } .framer-IVVqq .framer-q04lh5 { padding: 64px 0px 0px 0px; } .framer-IVVqq .framer-1nedy5w-container { height: 1239px; z-index: 0; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5425\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"J_nCaAxdW\":{\"layout\":[\"fixed\",\"auto\"]},\"nyrxHpPuL\":{\"layout\":[\"fixed\",\"auto\"]},\"ihttA2eWk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"b4SsuJjRo\":{\"pattern\":\":b4SsuJjRo\",\"name\":\"sidebar-ad-unit\"},\"G7rwOdUij\":{\"pattern\":\":G7rwOdUij\",\"name\":\"banner-ad-unit\"},\"QGIXZHEBa\":{\"pattern\":\":QGIXZHEBa\",\"name\":\"banner-ad-unit\"},\"YlSoinh7r\":{\"pattern\":\":YlSoinh7r\",\"name\":\"main-rich-text\"}}\n * @framerResponsiveScreen\n */const FramerBwAeQTkMY=withCSS(Component,css,\"framer-IVVqq\");export default FramerBwAeQTkMY;FramerBwAeQTkMY.displayName=\"News & Reviews\";FramerBwAeQTkMY.defaultProps={height:5425,width:1440};addFonts(FramerBwAeQTkMY,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Source Serif 4\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourceserif4/v13/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhlXD-wGvjU.woff2\",weight:\"400\"},{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\"}]},...NavLightsaberButtonFonts,...NavNavV2SidebarFonts,...NavMainNavbarFonts,...ComponentSocialShareFonts,...Table_of_ContentFonts,...LayoutBeehiivSidebarFonts,...MainAdComponentFonts,...YouTubeFonts,...Image1Fonts,...EmbedFonts,...ComponentPostContentSocialSubscribeFonts,...LayoutCommunityCTABannerFonts,...LayoutRecentArticlesFonts,...LayoutContentCardVerticalFonts,...NavFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...getFontsFromSharedStyle(sharedStyle16.fonts),...getFontsFromSharedStyle(sharedStyle17.fonts),...getFontsFromSharedStyle(sharedStyle18.fonts),...componentPresets.fonts?.[\"qPTXFidVd\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"qPTXFidVd\"]):[],...componentPresets.fonts?.[\"YGs5l9FqA\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"YGs5l9FqA\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBwAeQTkMY\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J_nCaAxdW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nyrxHpPuL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ihttA2eWk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"b4SsuJjRo\\\":{\\\"pattern\\\":\\\":b4SsuJjRo\\\",\\\"name\\\":\\\"sidebar-ad-unit\\\"},\\\"G7rwOdUij\\\":{\\\"pattern\\\":\\\":G7rwOdUij\\\",\\\"name\\\":\\\"banner-ad-unit\\\"},\\\"QGIXZHEBa\\\":{\\\"pattern\\\":\\\":QGIXZHEBa\\\",\\\"name\\\":\\\"banner-ad-unit\\\"},\\\"YlSoinh7r\\\":{\\\"pattern\\\":\\\":YlSoinh7r\\\",\\\"name\\\":\\\"main-rich-text\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"5425\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "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", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "Table_of_Content", "props", "headers", "setHeaders", "ye", "activeId", "setActiveId", "firstHeadingLevel", "setFirstHeadingLevel", "ignoreNextScrollEvent", "pe", "scrollTimeoutRef", "ue", "sectionElement", "headingElements", "element", "index", "onScroll", "currentSectionId", "header", "window", "getStyle", "indentation", "headerFont", "handleClick", "headerId", "y", "checkIfScrollFinished", "isScrolled", "rect", "checkScroll", "p", "e", "addPropertyControls", "ControlType", "IconoirFonts", "getFonts", "Icon", "PhosphorFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "isDisplayed", "ref1", "pe", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "SVG", "ComponentViewportProvider", "css", "FramerdwNCuzs7U", "withCSS", "dwNCuzs7U_default", "addPropertyControls", "ControlType", "addFonts", "ComponentSocialLogoFonts", "getFonts", "dwNCuzs7U_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "RichText2", "ComponentViewportProvider", "dwNCuzs7U_default", "css", "FramerRfYbWN9Mu", "withCSS", "RfYbWN9Mu_default", "addFonts", "ComponentSocialLogoFonts", "CopyLinkButton", "props", "_props_iconproperties", "_props_iconproperties1", "_props_borderproperties", "_props_borderproperties1", "_props_borderproperties2", "_props_padding", "_props_padding1", "_props_padding2", "_props_padding3", "isHovered", "setIsHovered", "ye", "isCopied", "setIsCopied", "handleMouseEnter", "handleMouseLeave", "handleCopyLink", "te", "currentUrl", "window", "navigator", "err", "iconColor", "iconWidth", "borderColor", "borderWidth", "borderStyle", "renderIcon", "p", "u", "addPropertyControls", "ControlType", "UniversalShareButton", "props", "_props_iconproperties", "_props_iconproperties1", "_props_borderproperties", "_props_borderproperties1", "_props_borderproperties2", "_props_padding", "_props_padding1", "_props_padding2", "_props_padding3", "isHovered", "setIsHovered", "ye", "handleMouseEnter", "handleMouseLeave", "handleShare", "shareData", "window", "navigator", "err", "iconColor", "iconWidth", "borderColor", "borderWidth", "borderStyle", "renderIcon", "p", "u", "addPropertyControls", "ControlType", "TwitterShare", "props", "_props_iconproperties", "_props_iconproperties1", "_props_borderproperties", "_props_borderproperties1", "_props_borderproperties2", "_props_padding", "_props_padding1", "_props_padding2", "_props_padding3", "isHovered", "setIsHovered", "ye", "handleMouseEnter", "handleMouseLeave", "handleTwitterShare", "url", "window", "twitterShareUrl", "iconColor", "iconWidth", "borderColor", "borderWidth", "borderStyle", "renderIcon", "p", "addPropertyControls", "ControlType", "FacebookShare", "props", "_props_iconproperties", "_props_iconproperties1", "_props_borderproperties", "_props_borderproperties1", "_props_borderproperties2", "_props_padding", "_props_padding1", "_props_padding2", "_props_padding3", "isHovered", "setIsHovered", "ye", "handleMouseEnter", "handleMouseLeave", "handleFacebookShare", "facebookShareUrl", "window", "iconColor", "iconWidth", "borderColor", "borderWidth", "borderStyle", "renderIcon", "p", "addPropertyControls", "ControlType", "EmailShare", "props", "_props_iconproperties", "_props_iconproperties1", "_props_borderproperties", "_props_borderproperties1", "_props_borderproperties2", "_props_padding", "_props_padding1", "_props_padding2", "_props_padding3", "isHovered", "setIsHovered", "ye", "handleMouseEnter", "handleMouseLeave", "handleEmailShare", "subject", "body", "window", "mailtoLink", "iconColor", "iconWidth", "borderColor", "borderWidth", "borderStyle", "renderIcon", "p", "addPropertyControls", "ControlType", "FacebookShareFonts", "getFonts", "FacebookShare", "TwitterShareFonts", "TwitterShare", "EmailShareFonts", "EmailShare", "CopyLinkButtonFonts", "CopyLinkButton", "UniversalShareButtonFonts", "UniversalShareButton", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "FacebookShare", "TwitterShare", "EmailShare", "CopyLinkButton", "UniversalShareButton", "css", "FramerXwe4dQVvm", "withCSS", "Xwe4dQVvm_default", "addFonts", "FacebookShareFonts", "TwitterShareFonts", "EmailShareFonts", "CopyLinkButtonFonts", "UniversalShareButtonFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavLightsaberButtonFonts", "getFonts", "N1IqGZ4DN_default", "NavNavV2SidebarFonts", "sK38PBSpY_default", "NavMainNavbarFonts", "BUlIUJC1B_default", "ComponentSocialShareFonts", "Xwe4dQVvm_default", "Table_of_ContentFonts", "Table_of_Content", "LayoutBeehiivSidebarFonts", "KBHC2PY2M_default", "MainAdComponentFonts", "YRGLURA0w_default", "YouTubeFonts", "Youtube", "Image1Fonts", "Image", "EmbedFonts", "Embed", "RichTextWithClass1g8ha2i", "withCodeBoundaryForOverrides", "RichText2", "withClass", "MotionDivWithClass11bi1lk", "motion", "ComponentPostContentSocialSubscribeFonts", "RfYbWN9Mu_default", "LayoutCommunityCTABannerFonts", "Pyq_O2z3H_default", "LayoutRecentArticlesFonts", "Ku3lRALIs_default", "LayoutContentCardVerticalFonts", "W_vY6TcZ7_default", "NavFooterFonts", "HcZl6hGnN_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "animation3", "animation4", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "QueryData", "query", "pageSize", "data", "useQueryData", "isSet", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "equals", "a", "b", "toResponsiveImage", "negate", "convertFromEnum", "toBoolean", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "qGKKRJbyV_default", "ckC6Stctk_default", "yR4cdS7al_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "Bwjqhgx2TcYIyDkKZX", "u_qq4BqpUcYIyDkKZX", "idcYIyDkKZX", "rQLvNz2AO", "afENSngMS", "FM4tj0NZJ", "PaFrknkFc", "zQSMJtq7JJTQlzU_MC", "PaFrknkFc_ib_5S5LhF", "idJTQlzU_MC", "fw3wvsveL", "giQy2V1jO", "Y6wbwCj86", "cQ0jzJKbH", "sy9UDGPEL", "kNMInxXjJ", "RHN8Rs32h", "uVvNaOeQu", "LuirtEPNh", "IqFUtJbndkvTAZ51rn", "zQSMJtq7JkvTAZ51rn", "idkvTAZ51rn", "K0ISycnZA", "Y6wbwCj86vStHSVawE", "afENSngMSvStHSVawE", "K0ISycnZAvStHSVawE", "idvStHSVawE", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "Xq97zv5wj3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "activeLocaleCode", "useLocaleCode", "textContent", "visible1", "isDisplayed", "elementId", "useRouteElementId", "ref1", "visible2", "elementId1", "ref2", "visible3", "visible4", "visible5", "visible6", "isDisplayed1", "elementId2", "ref3", "visible7", "elementId3", "ref4", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "l", "ComponentViewportProvider", "Container", "AnimatePresence", "Ga", "x", "PropertyOverrides2", "ChildrenCanSuspend", "collection", "paginationInfo", "index", "PathVariablesContext", "Link", "collection1", "paginationInfo1", "loadMore1", "index1", "getLoadingLazyAtYPosition", "Image2", "ComponentPresetsProvider", "collection2", "paginationInfo2", "loadMore2", "index2", "ResolveLinks", "resolvedLinks", "collection3", "paginationInfo3", "loadMore3", "index3", "resolvedLinks1", "css", "FramerBwAeQTkMY", "withCSS", "BwAeQTkMY_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
