{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/vGNboIIzJuMCUXRsQ1wD/nOjVfza03HyLoa98bfM8/TableOfContents_v2.js", "ssg:https://framerusercontent.com/modules/5KrMvHv8W4tbzdR0wLVD/JoYnlnpkFvM9o6q9BVgI/OUEByDEY4.js", "ssg:https://framerusercontent.com/modules/j3ZY1MgL7ia1SD0V6pVk/JjsJjELRLoU9Zzdz12wt/ILu32PLDd.js", "ssg:https://framerusercontent.com/modules/99oNwSn8A610gIzU9Yeg/QJlo1YypClgwsOwHmfsa/QGe5olY3x.js", "ssg:https://framerusercontent.com/modules/9YBTY9G6NmlzBtizRosj/5BxlCmxAxQs0KLFg9S09/g68CkqrRm.js", "ssg:https://framerusercontent.com/modules/V4PQ6tchY8ry8Z2fGJ5d/HEv35fk5PMHGYldtJbNn/kgmjFZnI7.js", "ssg:https://framerusercontent.com/modules/nmglVdgFbEwyHjzWQOfO/QIr04bCFi2ox01mh8XPE/NhHFO9QSy.js", "ssg:https://framerusercontent.com/modules/tQOpwWxid9rNgd8U2wHF/tGfXpdpXBG22rI47aDuL/u3fjKEcEz.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{useEffect,useRef,useState}from\"react\";// Track the headings we care about (h2 and h3)\nconst HEADING_TO_DISPLAY=[\"h2\",\"h3\"];const SCROLL_MARGIN_TOP=80;const useStore=createStore({headings:[]});const handleUseEffect=(store,observerRef,visibleHeadings,setActiveId)=>{if(store.headings.length>0){const observerOptions={root:null,rootMargin:`-${SCROLL_MARGIN_TOP}px 0px 0px 0px`,threshold:[0,.25,.5,.75,1]};observerRef.current=new IntersectionObserver(entries=>{entries.forEach(entry=>{const{target}=entry;if(entry.isIntersecting){visibleHeadings.current.push(target.id);}else{visibleHeadings.current=visibleHeadings.current.filter(id=>id!==target.id);}// Find the closest heading to the top\nif(visibleHeadings.current.length>0){const nearestHeading=visibleHeadings.current.reduce((closest,id)=>{const element=document.getElementById(id);const rect=element.getBoundingClientRect();return!closest||rect.top<closest.top?{id,top:rect.top}:closest;},null);if(nearestHeading){setActiveId(nearestHeading.id);}}});},observerOptions);store.headings.forEach(({id})=>{const element=document.getElementById(id);if(element){observerRef.current.observe(element);}});return()=>{if(observerRef.current){observerRef.current.disconnect();}};}};const getComponent=(id,heading,type,index,activeId,store,props,Component,isMobile)=>{let variant=type;if(isMobile){variant=`${type}-mobile`;}else{if(id===activeId){variant=`${type}-active`;}if(type===\"h3\"){var _store_headings_h2ParentIndex;// Only show H3 if its parent H2 or one of its sibling H3s is active\nconst h2ParentIndex=findParentH2(store.headings,index);const isActiveGroup=((_store_headings_h2ParentIndex=store.headings[h2ParentIndex])===null||_store_headings_h2ParentIndex===void 0?void 0:_store_headings_h2ParentIndex.id)===activeId||isActiveH3InGroup(store.headings,h2ParentIndex,activeId);if(!isActiveGroup){return null// Hide the H3 if its H2 parent or sibling H3 is not active\n;}}}return /*#__PURE__*/_jsx(Component,{...props,title:heading,link:`${window.location.pathname}#${id}`,variant:variant},id);};export function withTableOfContent(Component){return props=>{const[store]=useStore();const[activeId,setActiveId]=useState(null);const observerRef=useRef(null);const visibleHeadings=useRef([]);const isMobile=false;useEffect(()=>{handleUseEffect(store,observerRef,visibleHeadings,setActiveId);},[store.headings]);return /*#__PURE__*/_jsx(_Fragment,{children:store.headings.length>0&&window?store.headings.sort((a,b)=>a.originalIndex-b.originalIndex).filter(({type})=>HEADING_TO_DISPLAY.includes(type)).map(({id,heading,type},index)=>{return getComponent(id,heading,type,index,activeId,store,props,Component,isMobile);}):null});};}export function withTableOfContentMobile(Component){return props=>{const[store]=useStore();const[activeId,setActiveId]=useState(null);const observerRef=useRef(null);const visibleHeadings=useRef([]);const isMobile=true;useEffect(()=>{handleUseEffect(store,observerRef,visibleHeadings,setActiveId);},[store.headings]);return /*#__PURE__*/_jsx(_Fragment,{children:store.headings.length>0&&window?store.headings.sort((a,b)=>a.originalIndex-b.originalIndex).filter(({type})=>HEADING_TO_DISPLAY.includes(type)).map(({id,heading,type},index)=>{return getComponent(id,heading,type,index,activeId,store,props,Component,isMobile);}):null});};}// Helper function to find the parent H2 of an H3\nconst findParentH2=(headings,h3Index)=>{for(let i=h3Index-1;i>=0;i--){if(headings[i].type===\"h2\"){return i;}}return-1// If no H2 is found, return -1\n;};// Helper function to check if any H3 in the group is active\nconst isActiveH3InGroup=(headings,h2ParentIndex,activeId)=>{for(let i=h2ParentIndex+1;i<headings.length;i++){if(headings[i].type===\"h2\")break;// Stop when we reach the next H2\nif(headings[i].id===activeId&&headings[i].type===\"h3\")return true;}return false;};export function withContent(Component){return props=>{const[store,setStore]=useStore();const[newProps,setNewProps]=useState(props);useEffect(()=>{setStore({headings:formatTableOfContent(newProps.children.props.children)});},[newProps]);useEffect(()=>{const formatHeadings=()=>{const newChildren=[];let headingIndex=0// Counter to track headings only\n;props.children.props.children.length>0&&props.children.props.children.forEach((item,index)=>{const children=item.props.children;if(HEADING_TO_DISPLAY.includes(item.type)){const{formattedId}=formatHeading(children,headingIndex);headingIndex++// Increment after assigning ID\n;// Create a new object for the modified item\nconst newItem={...item,props:{...item.props,id:formattedId}};newChildren.push(newItem);}else{newChildren.push(item);}});// Return a new props object with the modified children\nreturn{...props,children:{...props.children,props:{...props.children.props,children:newChildren}}};};setNewProps(formatHeadings());},[props]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:`\n                    .framer-text {\n                        scroll-margin-top: ${SCROLL_MARGIN_TOP}px;\n                    }\n                    [data-framer-name=\"h2\"],\n                    [data-framer-name=\"h3\"],\n                    [data-framer-name=\"h2-mobile\"],\n                    [data-framer-name=\"h3-mobile\"],\n                    [data-framer-name=\"h2-active\"],\n                    [data-framer-name=\"h3-active\"],\n                    [data-framer-name=\"h2\"] > div,\n                    [data-framer-name=\"h3\"] > div,\n                    [data-framer-name=\"h2-mobile\"] > div,\n                    [data-framer-name=\"h3-mobile\"] > div,\n                    [data-framer-name=\"h2-active\"] > div,\n                    [data-framer-name=\"h3-active\"] > div {\n                        opacity: 1 !important;\n                        transform: none !important;\n                        pointer-events: auto !important;\n                    }\n                `}),/*#__PURE__*/_jsx(Component,{...newProps})]});};}const formatTableOfContent=children=>{const result=[];children.length>0&&children.filter(({type})=>HEADING_TO_DISPLAY.includes(type)).map((item,index)=>{const children=item.props.children;const{formattedId,formattedHeading}=formatHeading(children,index);result.push({id:formattedId,heading:formattedHeading,type:item.type,originalIndex:index});});return result;};const formatHeading=(children,index)=>{const extractText=child=>{if(typeof child===\"string\"){return child.trim();}if(Array.isArray(child)){return child.map(extractText).join(\" \");}if(typeof child===\"object\"&&child!==null){return extractText(child.props.children);}return\"\";};let formattedHeading=\"\";let formattedId=\"\";if(typeof children===\"string\"){formattedHeading=children.trim();}else if(Array.isArray(children)){formattedHeading=children.map(extractText).join(\" \");}else if(typeof children===\"object\"&&children!==null){formattedHeading=extractText(children.props.children);}else{formattedHeading=index.toString();}// Append index to the ID to ensure uniqueness\nformattedId=formattedHeading.trim().toLowerCase().replace(/[^a-z]+/g,\"-\").replace(/^-+|-+$/g,\"\")+`-${index}`;return{formattedId,formattedHeading};};\nexport const __FramerMetadata__ = {\"exports\":{\"withContent\":{\"type\":\"reactHoc\",\"name\":\"withContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTableOfContent\":{\"type\":\"reactHoc\",\"name\":\"withTableOfContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTableOfContentMobile\":{\"type\":\"reactHoc\",\"name\":\"withTableOfContentMobile\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContents_v2.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import TextWithTruncate from\"https://framerusercontent.com/modules/5qIu1pi9eql0m4kX0Hi0/TGKVAl10qcAmw7EsQAkS/Text_with_truncate.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/4LdNz8NIJKNzZXBM9U9a/x4mSxJaHAXTbawmWk36z/iaUverFYE.js\";const TextWithTruncateFonts=getFonts(TextWithTruncate);const enabledGestures={FSOspZCI7:{hover:true},hi3lokoL3:{hover:true},n6fxnFoF6:{hover:true},P3Y8fCDSz:{hover:true},pfBMnI0dE:{hover:true}};const cycleOrder=[\"pfBMnI0dE\",\"FSOspZCI7\",\"hi3lokoL3\",\"n6fxnFoF6\",\"P3Y8fCDSz\",\"o9CCD9jP7\",\"seITwIqFS\"];const serializationHash=\"framer-sUNnx\";const variantClassNames={FSOspZCI7:\"framer-v-1mw9w24\",hi3lokoL3:\"framer-v-1fze55t\",n6fxnFoF6:\"framer-v-wr57w\",o9CCD9jP7:\"framer-v-djk2wm\",P3Y8fCDSz:\"framer-v-yhs5hy\",pfBMnI0dE:\"framer-v-1uzn5xl\",seITwIqFS:\"framer-v-bnxlki\"};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={duration:0,type:\"tween\"};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={\"h2-active\":\"n6fxnFoF6\",\"h2-mobile\":\"o9CCD9jP7\",\"h3-active\":\"P3Y8fCDSz\",\"h3-mobile\":\"seITwIqFS\",h1:\"pfBMnI0dE\",h2:\"FSOspZCI7\",h3:\"hi3lokoL3\"};const getProps=({height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,CQcsVc51n:link!==null&&link!==void 0?link:props.CQcsVc51n,ppjZk9Muv:(_ref=title!==null&&title!==void 0?title:props.ppjZk9Muv)!==null&&_ref!==void 0?_ref:\"This is my heading\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"pfBMnI0dE\"};};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,ppjZk9Muv,CQcsVc51n,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pfBMnI0dE\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"n6fxnFoF6-hover\",\"P3Y8fCDSz-hover\"].includes(gestureVariant))return true;if([\"n6fxnFoF6\",\"P3Y8fCDSz\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"o9CCD9jP7\",\"seITwIqFS\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"o9CCD9jP7\",\"seITwIqFS\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:CQcsVc51n,nodeId:\"pfBMnI0dE\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1uzn5xl\",className,classNames)} framer-1f6rxu`,\"data-framer-name\":\"h1\",layoutDependency:layoutDependency,layoutId:\"pfBMnI0dE\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"FSOspZCI7-hover\":{\"data-framer-name\":undefined},\"hi3lokoL3-hover\":{\"data-framer-name\":undefined},\"n6fxnFoF6-hover\":{\"data-framer-name\":undefined},\"P3Y8fCDSz-hover\":{\"data-framer-name\":undefined},\"pfBMnI0dE-hover\":{\"data-framer-name\":undefined},FSOspZCI7:{\"data-framer-name\":\"h2\"},hi3lokoL3:{\"data-framer-name\":\"h3\"},n6fxnFoF6:{\"data-framer-name\":\"h2-active\"},o9CCD9jP7:{\"data-framer-name\":\"h2-mobile\"},P3Y8fCDSz:{\"data-framer-name\":\"h3-active\"},seITwIqFS:{\"data-framer-name\":\"h3-mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ff0rfy\",layoutDependency:layoutDependency,layoutId:\"YV6pmYg9F\",style:{backgroundColor:\"var(--token-514dc49b-3152-4818-9c82-768711f5431e, rgb(20, 20, 31))\"}}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-t6cigr-container\",layoutDependency:layoutDependency,layoutId:\"sglxsPbbF-container\",children:/*#__PURE__*/_jsx(TextWithTruncate,{color:\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\",font:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},fontSize:14,height:\"100%\",id:\"sglxsPbbF\",layoutId:\"sglxsPbbF\",lineHeight:20,lines:1,style:{width:\"100%\"},text:ppjZk9Muv,width:\"100%\",...addPropertyOverrides({\"FSOspZCI7-hover\":{color:\"var(--token-514dc49b-3152-4818-9c82-768711f5431e, rgb(20, 20, 31))\"},\"hi3lokoL3-hover\":{color:\"var(--token-514dc49b-3152-4818-9c82-768711f5431e, rgb(20, 20, 31))\"},\"pfBMnI0dE-hover\":{color:\"var(--token-514dc49b-3152-4818-9c82-768711f5431e, rgb(20, 20, 31))\"},n6fxnFoF6:{color:\"var(--token-514dc49b-3152-4818-9c82-768711f5431e, rgb(20, 20, 31))\"},P3Y8fCDSz:{color:\"var(--token-514dc49b-3152-4818-9c82-768711f5431e, rgb(20, 20, 31))\"}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",children:\"qweqwe\"})}),className:\"framer-1mckukm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fGDgeOZY5\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ppjZk9Muv,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({o9CCD9jP7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",children:\"This is my heading\"})})},seITwIqFS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",children:\"This is my heading\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sUNnx.framer-1f6rxu, .framer-sUNnx .framer-1f6rxu { display: block; }\",\".framer-sUNnx.framer-1uzn5xl { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 0px 8px 0px; position: relative; text-decoration: none; width: 92px; }\",\".framer-sUNnx .framer-ff0rfy { flex: none; height: 24px; left: -20px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 1px; z-index: 1; }\",\".framer-sUNnx .framer-t6cigr-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-sUNnx .framer-1mckukm { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sUNnx.framer-1uzn5xl { gap: 0px; } .framer-sUNnx.framer-1uzn5xl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sUNnx.framer-1uzn5xl > :first-child { margin-left: 0px; } .framer-sUNnx.framer-1uzn5xl > :last-child { margin-right: 0px; } }\",\".framer-sUNnx.framer-v-1fze55t.framer-1uzn5xl, .framer-sUNnx.framer-v-yhs5hy.framer-1uzn5xl { padding: 8px 0px 8px 16px; }\",\".framer-sUNnx.framer-v-djk2wm.framer-1uzn5xl { cursor: unset; }\",\".framer-sUNnx.framer-v-bnxlki.framer-1uzn5xl { cursor: unset; padding: 8px 0px 8px 20px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 92\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FSOspZCI7\":{\"layout\":[\"fixed\",\"auto\"]},\"hi3lokoL3\":{\"layout\":[\"fixed\",\"auto\"]},\"n6fxnFoF6\":{\"layout\":[\"fixed\",\"auto\"]},\"P3Y8fCDSz\":{\"layout\":[\"fixed\",\"auto\"]},\"o9CCD9jP7\":{\"layout\":[\"fixed\",\"auto\"]},\"seITwIqFS\":{\"layout\":[\"fixed\",\"auto\"]},\"lYYzUQ05k\":{\"layout\":[\"fixed\",\"auto\"]},\"Aed20X274\":{\"layout\":[\"fixed\",\"auto\"]},\"aws66AJpQ\":{\"layout\":[\"fixed\",\"auto\"]},\"IB00BxvLY\":{\"layout\":[\"fixed\",\"auto\"]},\"Yp4Mx5MyR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ppjZk9Muv\":\"title\",\"CQcsVc51n\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOUEByDEY4=withCSS(Component,css,\"framer-sUNnx\");export default FramerOUEByDEY4;FramerOUEByDEY4.displayName=\"Resources / Table of Contents -> Link\";FramerOUEByDEY4.defaultProps={height:36,width:92};addPropertyControls(FramerOUEByDEY4,{variant:{options:[\"pfBMnI0dE\",\"FSOspZCI7\",\"hi3lokoL3\",\"n6fxnFoF6\",\"P3Y8fCDSz\",\"o9CCD9jP7\",\"seITwIqFS\"],optionTitles:[\"h1\",\"h2\",\"h3\",\"h2-active\",\"h3-active\",\"h2-mobile\",\"h3-mobile\"],title:\"Variant\",type:ControlType.Enum},ppjZk9Muv:{defaultValue:\"This is my heading\",displayTextArea:false,placeholder:\"\",title:\"Title\",type:ControlType.String},CQcsVc51n:{title:\"Link\",type:ControlType.Link}});addFonts(FramerOUEByDEY4,[{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\"}]},...TextWithTruncateFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOUEByDEY4\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"ppjZk9Muv\\\":\\\"title\\\",\\\"CQcsVc51n\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FSOspZCI7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hi3lokoL3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n6fxnFoF6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P3Y8fCDSz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"o9CCD9jP7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"seITwIqFS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lYYzUQ05k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Aed20X274\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aws66AJpQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IB00BxvLY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Yp4Mx5MyR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"92\",\"framerIntrinsicHeight\":\"36\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a2fb474)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVGIcon from\"https://framerusercontent.com/modules/nCHxtXz6uqq1WVU5GP8Z/EQnJn75w9rD6j2U8enWU/SVG_Icon.js\";import{withTableOfContent,withTableOfContentMobile}from\"https://framerusercontent.com/modules/vGNboIIzJuMCUXRsQ1wD/nOjVfza03HyLoa98bfM8/TableOfContents_v2.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/df7IEQ8Ji4uu4emZck8k/uICuaDFGyFLPIhxSygtU/ePIpxDSFU.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/1qnp8WD8qvq9p8B870G3/2gfeJkzEO7eRgOM3EEEw/phgGDd4KA.js\";import ResourcesTableOfContentsLink,*as ResourcesTableOfContentsLinkInfo from\"https://framerusercontent.com/modules/5KrMvHv8W4tbzdR0wLVD/JoYnlnpkFvM9o6q9BVgI/OUEByDEY4.js\";const ResourcesTableOfContentsLinkFonts=getFonts(ResourcesTableOfContentsLink);const ResourcesTableOfContentsLinkWithTableOfContentWithMappedReactProps1pue9wp=withMappedReactProps(withTableOfContent(ResourcesTableOfContentsLink),ResourcesTableOfContentsLinkInfo);const SVGIconFonts=getFonts(SVGIcon);const ResourcesTableOfContentsLinkWithTableOfContentMobileWithMappedReactProps1pue9wp=withMappedReactProps(withTableOfContentMobile(ResourcesTableOfContentsLink),ResourcesTableOfContentsLinkInfo);const cycleOrder=[\"MyNzZMSxZ\",\"gO4KHrAWv\",\"D4F20KQrh\"];const serializationHash=\"framer-q3KHs\";const variantClassNames={D4F20KQrh:\"framer-v-fb9lu6\",gO4KHrAWv:\"framer-v-lu3snx\",MyNzZMSxZ:\"framer-v-uhc81b\"};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={duration:0,type:\"tween\"};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={\"Mobile closed\":\"gO4KHrAWv\",\"Mobile opened\":\"D4F20KQrh\",Desktop:\"MyNzZMSxZ\"};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:\"MyNzZMSxZ\"};};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:\"MyNzZMSxZ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1cjjeja=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"D4F20KQrh\");});const onTap20txw9=activeVariantCallback(async(...args)=>{setVariant(\"gO4KHrAWv\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"gO4KHrAWv\",\"D4F20KQrh\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"gO4KHrAWv\",\"D4F20KQrh\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"D4F20KQrh\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-uhc81b\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"MyNzZMSxZ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({D4F20KQrh:{\"data-framer-name\":\"Mobile opened\"},gO4KHrAWv:{\"data-framer-name\":\"Mobile closed\",\"data-highlight\":true,onTap:onTap1cjjeja}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sjv1eh\",\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"xYEVfspvi\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-1fb17d4a-a12d-4552-9431-5009236effce, rgba(0, 0, 0, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-c9uv66\",layoutDependency:layoutDependency,layoutId:\"bObSuMop5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xagz2v\",\"data-styles-preset\":\"ePIpxDSFU\",children:\"On this page\"})}),className:\"framer-15ojr49\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J1Csrw91n\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-146)/2+0+0)+0+110,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mpyjx8-container\",layoutDependency:layoutDependency,layoutId:\"xRbf3jsDz-container\",children:/*#__PURE__*/_jsx(ResourcesTableOfContentsLinkWithTableOfContentWithMappedReactProps1pue9wp,{height:\"100%\",id:\"xRbf3jsDz\",layoutId:\"xRbf3jsDz\",ppjZk9Muv:\" \",style:{width:\"100%\"},variant:\"pfBMnI0dE\",width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bzjg4j\",\"data-border\":true,\"data-framer-name\":\"Mobile\",layoutDependency:layoutDependency,layoutId:\"VWOvKjihT\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1fb17d4a-a12d-4552-9431-5009236effce, rgba(0, 0, 0, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fd9onf\",layoutDependency:layoutDependency,layoutId:\"l2j4dPJDg\",...addPropertyOverrides({D4F20KQrh:{\"data-highlight\":true,onTap:onTap20txw9}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jc9dtg-container\",layoutDependency:layoutDependency,layoutId:\"cxV648AKx-container\",children:/*#__PURE__*/_jsx(SVGIcon,{fillColor:\"var(--token-514dc49b-3152-4818-9c82-768711f5431e, rgb(20, 20, 31))\",height:\"100%\",id:\"cxV648AKx\",layoutId:\"cxV648AKx\",padding:0,strokeColor:\"var(--token-5946dd37-c90e-4d98-8476-93d5a54ee03a, rgba(255, 255, 255, 0))\",strokeWidth:1.5,style:{width:\"100%\"},svgCode:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 6.25C2 5.83579 2.33579 5.5 2.75 5.5H17.25C17.6642 5.5 18 5.83579 18 6.25C18 6.66421 17.6642 7 17.25 7H2.75C2.33579 7 2 6.66421 2 6.25ZM2 10.25C2 9.83579 2.33579 9.5 2.75 9.5H14.25C14.6642 9.5 15 9.83579 15 10.25C15 10.6642 14.6642 11 14.25 11H2.75C2.33579 11 2 10.6642 2 10.25ZM2.75 13.5C2.33579 13.5 2 13.8358 2 14.25C2 14.6642 2.33579 15 2.75 15H11.25C11.6642 15 12 14.6642 12 14.25C12 13.8358 11.6642 13.5 11.25 13.5H2.75Z\" fill=\"#18191B\"/> </svg>',width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-6a8jdj\",\"data-styles-preset\":\"phgGDd4KA\",children:\"Table of contents\"})}),className:\"framer-1gcg11b\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SlKTosbJL\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-56ct6b-container\",layoutDependency:layoutDependency,layoutId:\"MCJ8XaSmp-container\",children:/*#__PURE__*/_jsx(SVGIcon,{fillColor:\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\",height:\"100%\",id:\"MCJ8XaSmp\",layoutId:\"MCJ8XaSmp\",padding:0,strokeColor:\"var(--token-5946dd37-c90e-4d98-8476-93d5a54ee03a, rgba(255, 255, 255, 0))\",strokeWidth:1.5,style:{width:\"100%\"},svgCode:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.46967 8.46967C5.76256 8.17678 6.23744 8.17678 6.53033 8.46967L10 11.9393L13.4697 8.4697C13.7626 8.17681 14.2374 8.17681 14.5303 8.4697C14.8232 8.7626 14.8232 9.23747 14.5303 9.53036L10.5303 13.5303C10.2374 13.8232 9.76256 13.8232 9.46967 13.5303L5.46967 9.53033C5.17678 9.23744 5.17678 8.76256 5.46967 8.46967Z\" fill=\"#18191B\"/> </svg>',width:\"100%\",...addPropertyOverrides({D4F20KQrh:{style:{height:\"100%\",width:\"100%\"}},gO4KHrAWv:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-17ud7mi\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"XLzVGUvkt\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-1fb17d4a-a12d-4552-9431-5009236effce, rgba(0, 0, 0, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({D4F20KQrh:{height:36,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-284)/2+0+0)+0+224+12+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nzadcd-container\",layoutDependency:layoutDependency,layoutId:\"O1mpRSvaj-container\",children:/*#__PURE__*/_jsx(ResourcesTableOfContentsLinkWithTableOfContentMobileWithMappedReactProps1pue9wp,{height:\"100%\",id:\"O1mpRSvaj\",layoutId:\"O1mpRSvaj\",ppjZk9Muv:\" \",style:{width:\"100%\"},variant:\"pfBMnI0dE\",width:\"100%\"})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-q3KHs.framer-78kmn9, .framer-q3KHs .framer-78kmn9 { display: block; }\",\".framer-q3KHs.framer-uhc81b { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 320px; }\",\".framer-q3KHs .framer-sjv1eh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-q3KHs .framer-c9uv66 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-q3KHs .framer-15ojr49, .framer-q3KHs .framer-1gcg11b { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-q3KHs .framer-mpyjx8-container, .framer-q3KHs .framer-1nzadcd-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-q3KHs .framer-1bzjg4j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-q3KHs .framer-fd9onf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px 16px 12px 16px; position: relative; width: 100%; }\",\".framer-q3KHs .framer-jc9dtg-container, .framer-q3KHs .framer-56ct6b-container { flex: none; height: auto; position: relative; width: 20px; }\",\".framer-q3KHs .framer-17ud7mi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 201px; overflow: visible; padding: 12px 16px 12px 16px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-q3KHs.framer-uhc81b, .framer-q3KHs .framer-sjv1eh, .framer-q3KHs .framer-c9uv66, .framer-q3KHs .framer-1bzjg4j, .framer-q3KHs .framer-fd9onf, .framer-q3KHs .framer-17ud7mi { gap: 0px; } .framer-q3KHs.framer-uhc81b > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-q3KHs.framer-uhc81b > :first-child, .framer-q3KHs .framer-sjv1eh > :first-child, .framer-q3KHs .framer-1bzjg4j > :first-child, .framer-q3KHs .framer-17ud7mi > :first-child { margin-top: 0px; } .framer-q3KHs.framer-uhc81b > :last-child, .framer-q3KHs .framer-sjv1eh > :last-child, .framer-q3KHs .framer-1bzjg4j > :last-child, .framer-q3KHs .framer-17ud7mi > :last-child { margin-bottom: 0px; } .framer-q3KHs .framer-sjv1eh > *, .framer-q3KHs .framer-17ud7mi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-q3KHs .framer-c9uv66 > *, .framer-q3KHs .framer-fd9onf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-q3KHs .framer-c9uv66 > :first-child, .framer-q3KHs .framer-fd9onf > :first-child { margin-left: 0px; } .framer-q3KHs .framer-c9uv66 > :last-child, .framer-q3KHs .framer-fd9onf > :last-child { margin-right: 0px; } .framer-q3KHs .framer-1bzjg4j > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-q3KHs.framer-v-lu3snx.framer-uhc81b, .framer-q3KHs.framer-v-fb9lu6 .framer-fd9onf { cursor: pointer; }\",\".framer-q3KHs.framer-v-lu3snx .framer-56ct6b-container, .framer-q3KHs.framer-v-fb9lu6 .framer-56ct6b-container { height: 24px; width: 24px; }\",\".framer-q3KHs.framer-v-fb9lu6 .framer-17ud7mi { min-height: unset; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-q3KHs[data-border=\"true\"]::after, .framer-q3KHs [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 46\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gO4KHrAWv\":{\"layout\":[\"fixed\",\"auto\"]},\"D4F20KQrh\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerILu32PLDd=withCSS(Component,css,\"framer-q3KHs\");export default FramerILu32PLDd;FramerILu32PLDd.displayName=\"Resources / Table of Contents\";FramerILu32PLDd.defaultProps={height:46,width:320};addPropertyControls(FramerILu32PLDd,{variant:{options:[\"MyNzZMSxZ\",\"gO4KHrAWv\",\"D4F20KQrh\"],optionTitles:[\"Desktop\",\"Mobile closed\",\"Mobile opened\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerILu32PLDd,[{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\"}]},...ResourcesTableOfContentsLinkFonts,...SVGIconFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerILu32PLDd\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"320\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gO4KHrAWv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D4F20KQrh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"46\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ILu32PLDd.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVGIcon from\"https://framerusercontent.com/modules/nCHxtXz6uqq1WVU5GP8Z/EQnJn75w9rD6j2U8enWU/SVG_Icon.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ir6MyO8N4XBAv2p7iaZc/8Aly4yMxchibontjtJOq/tXDxbMvcb.js\";const SVGIconFonts=getFonts(SVGIcon);const cycleOrder=[\"yym6tKESQ\",\"UerHdNnot\"];const serializationHash=\"framer-e4pBX\";const variantClassNames={UerHdNnot:\"framer-v-13x5a0p\",yym6tKESQ:\"framer-v-hhkoua\"};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={ANZ:\"UerHdNnot\",UK:\"yym6tKESQ\"};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:\"yym6tKESQ\"};};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:\"yym6tKESQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapqrad2d=activeVariantCallback(async(...args)=>{setLocale(\"x7BYmUInu\");});const onTap17b0nju=activeVariantCallback(async(...args)=>{setLocale(\"default\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"UerHdNnot\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"UerHdNnot\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-hhkoua\",className,classNames),\"data-framer-name\":\"UK\",layoutDependency:layoutDependency,layoutId:\"yym6tKESQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-1e02a225-142c-4130-ae80-110e8b87527f, rgba(12, 82, 223, 0.1))\",...style},...addPropertyOverrides({UerHdNnot:{\"data-framer-name\":\"ANZ\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n6onqz-container\",layoutDependency:layoutDependency,layoutId:\"qp0cxTP3V-container\",children:/*#__PURE__*/_jsx(SVGIcon,{fillColor:\"var(--token-0cb4d99d-0a27-4823-aece-1be5e608e906, rgb(18, 88, 226))\",height:\"100%\",id:\"qp0cxTP3V\",layoutId:\"qp0cxTP3V\",padding:0,strokeColor:\"var(--token-5946dd37-c90e-4d98-8476-93d5a54ee03a, rgba(255, 255, 255, 0))\",strokeWidth:0,style:{width:\"100%\"},svgCode:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5 3C3.89543 3 3 3.89543 3 5V15C3 16.1046 3.89543 17 5 17H15C16.1046 17 17 16.1046 17 15V5C17 3.89543 16.1046 3 15 3H5ZM10 7.5C10.6904 7.5 11.25 6.94036 11.25 6.25C11.25 5.55964 10.6904 5 10 5C9.30964 5 8.75 5.55964 8.75 6.25C8.75 6.94036 9.30964 7.5 10 7.5ZM10.25 9C10.6642 9 11 9.33579 11 9.75V14.25C11 14.6642 10.6642 15 10.25 15C9.83579 15 9.5 14.6642 9.5 14.25V10.5H7.75C7.33579 10.5 7 10.1642 7 9.75C7 9.33579 7.33579 9 7.75 9H10.25Z\" fill=\"#18191B\"/> </svg>',width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-119qqsj\",layoutDependency:layoutDependency,layoutId:\"h1sodDAWH\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-6p3f3r\",\"data-styles-preset\":\"tXDxbMvcb\",children:\"This article is written specifically for UK students.\"})}),className:\"framer-393ycq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x47HGNK68\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-129pxd0\",\"data-framer-name\":\"ANZ link\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"TT_Ltv97H\",onTap:onTapqrad2d,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-514dc49b-3152-4818-9c82-768711f5431e, rgb(25, 25, 26)))\",\"--framer-text-decoration\":\"underline\"},children:\"Read the ANZ version here.\"})}),className:\"framer-1vo8qdv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hcyT1bSCU\",style:{\"--extracted-r6o4lv\":\"var(--token-514dc49b-3152-4818-9c82-768711f5431e, rgb(25, 25, 26))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-6p3f3r\",\"data-styles-preset\":\"tXDxbMvcb\",children:\"This article is written specifically for ANZ students.\"})}),className:\"framer-zafvkc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UtYOixSDe\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ekcma9\",\"data-framer-name\":\"UK link\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YcyF27vC2\",onTap:onTap17b0nju,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-514dc49b-3152-4818-9c82-768711f5431e, rgb(25, 25, 26)))\",\"--framer-text-decoration\":\"underline\"},children:\"Read the UK version here.\"})}),className:\"framer-mih8up\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"V0zvzp0Xy\",style:{\"--extracted-r6o4lv\":\"var(--token-514dc49b-3152-4818-9c82-768711f5431e, rgb(25, 25, 26))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-e4pBX.framer-20g48z, .framer-e4pBX .framer-20g48z { display: block; }\",\".framer-e4pBX.framer-hhkoua { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 800px; }\",\".framer-e4pBX .framer-1n6onqz-container { flex: none; height: auto; position: relative; width: 20px; }\",\".framer-e4pBX .framer-119qqsj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-e4pBX .framer-393ycq, .framer-e4pBX .framer-zafvkc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-e4pBX .framer-129pxd0, .framer-e4pBX .framer-ekcma9 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-e4pBX .framer-1vo8qdv, .framer-e4pBX .framer-mih8up { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-e4pBX.framer-hhkoua, .framer-e4pBX .framer-119qqsj, .framer-e4pBX .framer-129pxd0, .framer-e4pBX .framer-ekcma9 { gap: 0px; } .framer-e4pBX.framer-hhkoua > *, .framer-e4pBX .framer-129pxd0 > *, .framer-e4pBX .framer-ekcma9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-e4pBX.framer-hhkoua > :first-child, .framer-e4pBX .framer-129pxd0 > :first-child, .framer-e4pBX .framer-ekcma9 > :first-child { margin-left: 0px; } .framer-e4pBX.framer-hhkoua > :last-child, .framer-e4pBX .framer-129pxd0 > :last-child, .framer-e4pBX .framer-ekcma9 > :last-child { margin-right: 0px; } .framer-e4pBX .framer-119qqsj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-e4pBX .framer-119qqsj > :first-child { margin-top: 0px; } .framer-e4pBX .framer-119qqsj > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 90\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UerHdNnot\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQGe5olY3x=withCSS(Component,css,\"framer-e4pBX\");export default FramerQGe5olY3x;FramerQGe5olY3x.displayName=\"Resources / Localized Article Link\";FramerQGe5olY3x.defaultProps={height:90,width:800};addPropertyControls(FramerQGe5olY3x,{variant:{options:[\"yym6tKESQ\",\"UerHdNnot\"],optionTitles:[\"UK\",\"ANZ\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerQGe5olY3x,[{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\"}]},...SVGIconFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQGe5olY3x\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UerHdNnot\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"800\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"90\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QGe5olY3x.map", "// Generated by Framer (5bbf1f3)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3;import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,useComponentViewport,useLocaleCode,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{TableOverride}from\"https://framerusercontent.com/modules/4V4IN33efgPjQLJmwIax/JneZmAtTTkzOYePMdf3K/MarkdownTable.js\";import{withContent}from\"https://framerusercontent.com/modules/vGNboIIzJuMCUXRsQ1wD/nOjVfza03HyLoa98bfM8/TableOfContents_v2.js\";import*as componentPresets from\"https://framerusercontent.com/modules/6biyRnZrMUi0Twc9sqFN/5CZoYtA3pHRKvLHjvi4P/componentPresets.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2QNjAiPQ6ty36zIueYRI/vti1QQyj9ctRyNecY0KX/E59o5G4nK.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/87dywtfu7TWuydxXm73S/5j5WCcPuWXnScofMYtY7/EtW0ABcHc.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/Jn6D4ZW3nelvzJJwSO4a/nUkhEokqrKNewpjTGMcn/GlVddIzHC.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/4LdNz8NIJKNzZXBM9U9a/x4mSxJaHAXTbawmWk36z/iaUverFYE.js\";import*as sharedStyle13 from\"https://framerusercontent.com/modules/WwTyq3Hlgbad9GZxk5FS/qPHgPj0jLojXAGH4mzuJ/IBBYpaMGR.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/8VF9TgNjquOhoOewaK5v/3xSCN5FG6scilMQHGvl7/KYUG2OBH7.js\";import*as sharedStyle11 from\"https://framerusercontent.com/modules/woV2abVQi96oS4OIc48O/iMUoe2w4R2ejDIE92CV3/MhBlSz0LH.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/ufCPrUicKYPQquf3SkxU/DuTN73uXNlUAB3ExXgvq/n8_6SUGwJ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qRaEpLKlnQ59pGxhyhbx/pk3BlKyNDmyaqLNqUVNz/oSICPC3ba.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/yxIyC27VdOdcSadDlnm4/svFccJicya79v1f35Mj6/Qc6mHAJQM.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/NtRtkIXw5IRcalV7opnL/JD8hhOpxGiRdHVu49vDc/QERMAk2BM.js\";import*as sharedStyle12 from\"https://framerusercontent.com/modules/Fg88cg7AbiN9xRCV0dp1/iwt97rcUYofpaUj5fiaR/tLYzdQt8C.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/4607t6H3zZ6p1bN0lqGb/p9TSTNdopnCpMuQGmwSn/Zf1NeQxua.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/6Qt6sUMcPKnJGkZ8bPNe/cIheLrYtKsOKGuZefsaR/ZyFk3aYNb.js\";import SharedBackButton from\"https://framerusercontent.com/modules/8E0D7EF0RxusyiPNq5HV/VgNkddWoT3GQdScyyC9L/ejyewc2Ha.js\";import ResourcesTableOfContents from\"https://framerusercontent.com/modules/j3ZY1MgL7ia1SD0V6pVk/JjsJjELRLoU9Zzdz12wt/ILu32PLDd.js\";import ResourcesLocalizedArticleLink from\"https://framerusercontent.com/modules/99oNwSn8A610gIzU9Yeg/QJlo1YypClgwsOwHmfsa/QGe5olY3x.js\";const SharedBackButtonFonts=getFonts(SharedBackButton);const ResourcesLocalizedArticleLinkFonts=getFonts(ResourcesLocalizedArticleLink);const ResourcesTableOfContentsFonts=getFonts(ResourcesTableOfContents);const RichTextWithContent=withContent(RichText);const MotionDivTableOverride=TableOverride(motion.div);const cycleOrder=[\"zkgUN8l7U\",\"PQWbrvcVl\",\"dHp0628AT\"];const serializationHash=\"framer-lUmwo\";const variantClassNames={dHp0628AT:\"framer-v-s0u6ne\",PQWbrvcVl:\"framer-v-1hkhuqw\",zkgUN8l7U:\"framer-v-m77zie\"};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={duration:0,type:\"tween\"};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 prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"default\":return\"yym6tKESQ\";default:return\"UerHdNnot\";}};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 humanReadableVariantMap={Desktop:\"zkgUN8l7U\",Mobile:\"PQWbrvcVl\",Tablet:\"dHp0628AT\"};const getProps=({content,date,description,height,id,image,showLocalizationAlert,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5,_ref6;return{...props,bxSuWzrEJ:(_ref=date!==null&&date!==void 0?date:props.bxSuWzrEJ)!==null&&_ref!==void 0?_ref:\"2024-07-09T00:00:00.000Z\",C2WI9pfGs:(_ref1=showLocalizationAlert!==null&&showLocalizationAlert!==void 0?showLocalizationAlert:props.C2WI9pfGs)!==null&&_ref1!==void 0?_ref1:true,OqDnWuuN0:(_ref2=image!==null&&image!==void 0?image:props.OqDnWuuN0)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/lx2ldIIqcvIRlV0xCL5SZwKbtj4.png\",srcSet:\"https://framerusercontent.com/images/lx2ldIIqcvIRlV0xCL5SZwKbtj4.png?scale-down-to=512 512w,https://framerusercontent.com/images/lx2ldIIqcvIRlV0xCL5SZwKbtj4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lx2ldIIqcvIRlV0xCL5SZwKbtj4.png 1200w\"},UUMEk_5km:(_ref3=title!==null&&title!==void 0?title:props.UUMEk_5km)!==null&&_ref3!==void 0?_ref3:\"23 UCAT Verbal Reasoning Tips: Save Time and Boost Your Score\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"zkgUN8l7U\",WwaMiS9ib:(_ref5=description!==null&&description!==void 0?description:props.WwaMiS9ib)!==null&&_ref5!==void 0?_ref5:\"Ace the UCAT Verbal Reasoning section with our expert tips and techniques. From speed reading to totalising language, we\u2019ve got this difficult section covered.\",YdsbQ4qBT:(_ref6=content!==null&&content!==void 0?content:props.YdsbQ4qBT)!==null&&_ref6!==void 0?_ref6:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{children:\"A lot of students find Verbal Reasoning (VR) hard.\"}),/*#__PURE__*/_jsx(motion.h2,{children:\"Heading 1\"}),/*#__PURE__*/_jsxs(motion.p,{children:[\"It's the\",/*#__PURE__*/_jsx(motion.em,{children:\" \"}),\"first section of an epic two-hour long exam, and that in itself creates some anxiety. You're immediately faced with a big block of text and a challenging time limit which can throw anyone off.\"]}),/*#__PURE__*/_jsx(motion.p,{children:\"So how can you ace the VR section of the UCAT?\"}),/*#__PURE__*/_jsx(motion.h3,{children:\"Heading 2\"})]})};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,UUMEk_5km,WwaMiS9ib,bxSuWzrEJ,OqDnWuuN0,C2WI9pfGs,YdsbQ4qBT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zkgUN8l7U\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const activeLocaleCode=useLocaleCode();const textContent=prefix(toDateString(bxSuWzrEJ,{dateStyle:\"long\",locale:\"\"},activeLocaleCode),\"Updated \");const isDisplayed=()=>{if([\"PQWbrvcVl\",\"dHp0628AT\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"PQWbrvcVl\",\"dHp0628AT\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-m77zie\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"zkgUN8l7U\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({dHp0628AT:{\"data-framer-name\":\"Tablet\"},PQWbrvcVl:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ktrapw\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"nr4UrTYjp\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fakxih\",layoutDependency:layoutDependency,layoutId:\"y9LAIsbny\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jm5nv3\",layoutDependency:layoutDependency,layoutId:\"j2Gl_PHOn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3fnq2n\",layoutDependency:layoutDependency,layoutId:\"J9O9HKf_W\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vb7cgp\",layoutDependency:layoutDependency,layoutId:\"F9yEIIvk8\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i4yvDsMBS\"},implicitPathVariables:undefined},{href:{webPageId:\"i4yvDsMBS\"},implicitPathVariables:undefined},{href:{webPageId:\"i4yvDsMBS\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||931)-0-1091)/2)+0+0+0+0+0+0+0,...addPropertyOverrides({dHp0628AT:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1011)-0-1169)/2)+0+0+0+0+0+0+0},PQWbrvcVl:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-1159)/2)+0+0+0+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1epvdby-container\",layoutDependency:layoutDependency,layoutId:\"DUMRgmYw7-container\",children:/*#__PURE__*/_jsx(SharedBackButton,{gDmW2JaB3:\"Back\",height:\"100%\",id:\"DUMRgmYw7\",layoutId:\"DUMRgmYw7\",tO_mfzutQ:resolvedLinks[0],width:\"100%\",...addPropertyOverrides({dHp0628AT:{tO_mfzutQ:resolvedLinks[2]},PQWbrvcVl:{tO_mfzutQ:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aqhz7k\",layoutDependency:layoutDependency,layoutId:\"gQ7nW5uwh\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-avcnak\",layoutDependency:layoutDependency,layoutId:\"bo7jFeJ9z\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d8bh98\",layoutDependency:layoutDependency,layoutId:\"nQcEJGxZx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-67qoye\",\"data-styles-preset\":\"E59o5G4nK\",style:{\"--framer-text-alignment\":\"left\"},children:\"23 UCAT Verbal Reasoning Tips: Save Time and Boost Your Score\"})}),className:\"framer-sd2jtc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mq_WAq5k6\",text:UUMEk_5km,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hdcfl6\",\"data-styles-preset\":\"oSICPC3ba\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"Ace the UCAT Verbal Reasoning section with our expert tips and techniques. From speed reading to totalising language, we\u2019ve got this difficult section covered.\"})}),className:\"framer-12wblpy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dSsUaajNP\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\"},text:WwaMiS9ib,verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19zafpz\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"kaP6vK3NG\",style:{backgroundColor:\"var(--token-1fb17d4a-a12d-4552-9431-5009236effce, rgba(0, 0, 0, 0.1))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ahrg1i\",layoutDependency:layoutDependency,layoutId:\"OkSwGg6xE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tQyrn1y5v\"},nodeId:\"SKOHFsRpu\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fgdjwy\",\"data-styles-preset\":\"QERMAk2BM\",children:\"Tips & tricks\"})})})}),className:\"framer-6g208m\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SKOHFsRpu\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"\\xb7\"})}),className:\"framer-s1949v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"f_ysrdEqa\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"Updated \"})}),className:\"framer-5pre7x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fXE7P1Uge\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mthfhn\",layoutDependency:layoutDependency,layoutId:\"iSZYSO5Ez\",style:{backgroundColor:\"rgb(242, 242, 243)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||931)-0-1091)/2)+0+0+0+336.6+0),sizes:`min(400px, max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1280px) - 384px, 1px))`,...toResponsiveImage(OqDnWuuN0),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-rcgoto\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ak6M0OOXL\",...addPropertyOverrides({dHp0628AT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1011)-0-1169)/2)+0+0+0+336.6+0),sizes:`min(400px, max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1280px), 1px))`,...toResponsiveImage(OqDnWuuN0),...{positionX:\"center\",positionY:\"center\"}}},PQWbrvcVl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-1159)/2)+0+0+0+0+336.6+0),sizes:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1280px), 1px)`,...toResponsiveImage(OqDnWuuN0)}}},baseVariant,gestureVariant)})}),C2WI9pfGs&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1280px) - 384px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||931)-0-1091)/2)+0+0+0+578.6,...addPropertyOverrides({dHp0628AT:{width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1280px), 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1011)-0-1169)/2)+0+0+0+578.6},PQWbrvcVl:{width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1280px), 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-1159)/2)+0+0+0+0+568.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y5ca9d-container\",layoutDependency:layoutDependency,layoutId:\"B29U5TXKm-container\",children:/*#__PURE__*/_jsx(ResourcesLocalizedArticleLink,{height:\"100%\",id:\"B29U5TXKm\",layoutId:\"B29U5TXKm\",style:{width:\"100%\"},variant:convertFromEnum(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale),width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({dHp0628AT:{height:46,width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1280px), 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1011)-0-1169)/2)+0+0+0+700.6},PQWbrvcVl:{height:46,width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1280px), 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-1159)/2)+0+0+0+0+690.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5048av-container\",layoutDependency:layoutDependency,layoutId:\"eQ6eQtScQ-container\",children:/*#__PURE__*/_jsx(ResourcesTableOfContents,{height:\"100%\",id:\"eQ6eQtScQ\",layoutId:\"eQ6eQtScQ\",style:{width:\"100%\"},variant:\"gO4KHrAWv\",width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivTableOverride,{className:\"framer-htlnw\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"NdcTU4Gaf\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"WpfFb0Er3\"],\"module:pVk4QsoHxASnVtUBp6jr/F3DAaPbkrr19izpZS3jO/CodeBlock.js:default\":componentPresets.props[\"EhLgzaN5e\"]},children:/*#__PURE__*/_jsx(RichTextWithContent,{__fromCanvasComponent:true,children:YdsbQ4qBT,className:\"framer-6m4s39\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"j12FSEVqt\",style:{\"--framer-paragraph-spacing\":\"16px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-3n7hhn\",blockquote:\"framer-styles-preset-v8r1fo\",code:\"framer-styles-preset-1ab3whw\",h1:\"framer-styles-preset-67qoye\",h2:\"framer-styles-preset-1ygbgwo\",h3:\"framer-styles-preset-1tndf8s\",h4:\"framer-styles-preset-mvjujt\",h5:\"framer-styles-preset-bq6kjk\",h6:\"framer-styles-preset-1rxir1t\",img:\"framer-styles-preset-1c3d7lq\",p:\"framer-styles-preset-uo0fi2\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:\"320px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||931)-0-1091)/2)+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vlb2lr-container\",layoutDependency:layoutDependency,layoutId:\"ym3_VN2oV-container\",children:/*#__PURE__*/_jsx(ResourcesTableOfContents,{height:\"100%\",id:\"ym3_VN2oV\",layoutId:\"ym3_VN2oV\",style:{width:\"100%\"},variant:\"MyNzZMSxZ\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lUmwo.framer-5rzlus, .framer-lUmwo .framer-5rzlus { display: block; }\",\".framer-lUmwo.framer-m77zie { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-lUmwo .framer-ktrapw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lUmwo .framer-1fakxih { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lUmwo .framer-1jm5nv3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lUmwo .framer-3fnq2n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lUmwo .framer-1vb7cgp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lUmwo .framer-1epvdby-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-lUmwo .framer-aqhz7k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lUmwo .framer-avcnak { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lUmwo .framer-1d8bh98 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lUmwo .framer-sd2jtc, .framer-lUmwo .framer-12wblpy { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-lUmwo .framer-19zafpz { flex: none; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-lUmwo .framer-1ahrg1i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lUmwo .framer-6g208m, .framer-lUmwo .framer-s1949v, .framer-lUmwo .framer-5pre7x { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: auto; }\",\".framer-lUmwo .framer-1mthfhn { 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-lUmwo .framer-rcgoto { aspect-ratio: 1.9047619047619047 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 210px); max-width: 100%; overflow: hidden; position: relative; width: 400px; }\",\".framer-lUmwo .framer-y5ca9d-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-lUmwo .framer-5048av-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-lUmwo .framer-htlnw { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lUmwo .framer-6m4s39 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lUmwo .framer-1vlb2lr-container { flex: none; height: auto; position: sticky; top: 100px; width: 320px; will-change: transform; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lUmwo.framer-m77zie, .framer-lUmwo .framer-ktrapw, .framer-lUmwo .framer-1fakxih, .framer-lUmwo .framer-1jm5nv3, .framer-lUmwo .framer-3fnq2n, .framer-lUmwo .framer-1vb7cgp, .framer-lUmwo .framer-aqhz7k, .framer-lUmwo .framer-avcnak, .framer-lUmwo .framer-1d8bh98, .framer-lUmwo .framer-1ahrg1i, .framer-lUmwo .framer-1mthfhn, .framer-lUmwo .framer-htlnw { gap: 0px; } .framer-lUmwo.framer-m77zie > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-lUmwo.framer-m77zie > :first-child, .framer-lUmwo .framer-ktrapw > :first-child, .framer-lUmwo .framer-1fakxih > :first-child, .framer-lUmwo .framer-3fnq2n > :first-child, .framer-lUmwo .framer-avcnak > :first-child, .framer-lUmwo .framer-1ahrg1i > :first-child, .framer-lUmwo .framer-1mthfhn > :first-child { margin-left: 0px; } .framer-lUmwo.framer-m77zie > :last-child, .framer-lUmwo .framer-ktrapw > :last-child, .framer-lUmwo .framer-1fakxih > :last-child, .framer-lUmwo .framer-3fnq2n > :last-child, .framer-lUmwo .framer-avcnak > :last-child, .framer-lUmwo .framer-1ahrg1i > :last-child, .framer-lUmwo .framer-1mthfhn > :last-child { margin-right: 0px; } .framer-lUmwo .framer-ktrapw > *, .framer-lUmwo .framer-1fakxih > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-lUmwo .framer-1jm5nv3 > *, .framer-lUmwo .framer-htlnw > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-lUmwo .framer-1jm5nv3 > :first-child, .framer-lUmwo .framer-1vb7cgp > :first-child, .framer-lUmwo .framer-aqhz7k > :first-child, .framer-lUmwo .framer-1d8bh98 > :first-child, .framer-lUmwo .framer-htlnw > :first-child { margin-top: 0px; } .framer-lUmwo .framer-1jm5nv3 > :last-child, .framer-lUmwo .framer-1vb7cgp > :last-child, .framer-lUmwo .framer-aqhz7k > :last-child, .framer-lUmwo .framer-1d8bh98 > :last-child, .framer-lUmwo .framer-htlnw > :last-child { margin-bottom: 0px; } .framer-lUmwo .framer-3fnq2n > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-lUmwo .framer-1vb7cgp > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-lUmwo .framer-aqhz7k > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-lUmwo .framer-avcnak > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-lUmwo .framer-1d8bh98 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-lUmwo .framer-1ahrg1i > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-lUmwo .framer-1mthfhn > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-lUmwo.framer-v-1hkhuqw.framer-m77zie { width: 390px; }\",\".framer-lUmwo.framer-v-1hkhuqw .framer-1fakxih { flex-direction: column; gap: 24px; }\",\".framer-lUmwo.framer-v-1hkhuqw .framer-1jm5nv3 { flex: none; order: 0; width: 100%; }\",\".framer-lUmwo.framer-v-1hkhuqw .framer-3fnq2n { flex-direction: column; }\",\".framer-lUmwo.framer-v-1hkhuqw .framer-1vb7cgp, .framer-lUmwo.framer-v-1hkhuqw .framer-1d8bh98 { flex: none; width: 100%; }\",\".framer-lUmwo.framer-v-1hkhuqw .framer-aqhz7k { gap: 16px; }\",\".framer-lUmwo.framer-v-1hkhuqw .framer-avcnak { flex-direction: column; gap: 16px; }\",\".framer-lUmwo.framer-v-1hkhuqw .framer-12wblpy, .framer-lUmwo.framer-v-s0u6ne .framer-12wblpy { --framer-text-wrap-override: none; }\",\".framer-lUmwo.framer-v-1hkhuqw .framer-rcgoto { aspect-ratio: 1.95 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 0px); width: 1px; }\",\".framer-lUmwo.framer-v-1hkhuqw .framer-htlnw, .framer-lUmwo.framer-v-s0u6ne .framer-htlnw { gap: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lUmwo.framer-v-1hkhuqw .framer-1fakxih, .framer-lUmwo.framer-v-1hkhuqw .framer-3fnq2n, .framer-lUmwo.framer-v-1hkhuqw .framer-aqhz7k, .framer-lUmwo.framer-v-1hkhuqw .framer-avcnak, .framer-lUmwo.framer-v-1hkhuqw .framer-htlnw { gap: 0px; } .framer-lUmwo.framer-v-1hkhuqw .framer-1fakxih > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-lUmwo.framer-v-1hkhuqw .framer-1fakxih > :first-child, .framer-lUmwo.framer-v-1hkhuqw .framer-3fnq2n > :first-child, .framer-lUmwo.framer-v-1hkhuqw .framer-aqhz7k > :first-child, .framer-lUmwo.framer-v-1hkhuqw .framer-avcnak > :first-child, .framer-lUmwo.framer-v-1hkhuqw .framer-htlnw > :first-child { margin-top: 0px; } .framer-lUmwo.framer-v-1hkhuqw .framer-1fakxih > :last-child, .framer-lUmwo.framer-v-1hkhuqw .framer-3fnq2n > :last-child, .framer-lUmwo.framer-v-1hkhuqw .framer-aqhz7k > :last-child, .framer-lUmwo.framer-v-1hkhuqw .framer-avcnak > :last-child, .framer-lUmwo.framer-v-1hkhuqw .framer-htlnw > :last-child { margin-bottom: 0px; } .framer-lUmwo.framer-v-1hkhuqw .framer-3fnq2n > *, .framer-lUmwo.framer-v-1hkhuqw .framer-htlnw > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-lUmwo.framer-v-1hkhuqw .framer-aqhz7k > *, .framer-lUmwo.framer-v-1hkhuqw .framer-avcnak > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-lUmwo.framer-v-s0u6ne.framer-m77zie { width: 810px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lUmwo.framer-v-s0u6ne .framer-htlnw { gap: 0px; } .framer-lUmwo.framer-v-s0u6ne .framer-htlnw > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-lUmwo.framer-v-s0u6ne .framer-htlnw > :first-child { margin-top: 0px; } .framer-lUmwo.framer-v-s0u6ne .framer-htlnw > :last-child { margin-bottom: 0px; } }\",...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];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 931\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PQWbrvcVl\":{\"layout\":[\"fixed\",\"auto\"]},\"dHp0628AT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"UUMEk_5km\":\"title\",\"WwaMiS9ib\":\"description\",\"bxSuWzrEJ\":\"date\",\"OqDnWuuN0\":\"image\",\"C2WI9pfGs\":\"showLocalizationAlert\",\"YdsbQ4qBT\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerg68CkqrRm=withCSS(Component,css,\"framer-lUmwo\");export default Framerg68CkqrRm;Framerg68CkqrRm.displayName=\"Resources / Article -> Tips & tricks\";Framerg68CkqrRm.defaultProps={height:931,width:1280};addPropertyControls(Framerg68CkqrRm,{variant:{options:[\"zkgUN8l7U\",\"PQWbrvcVl\",\"dHp0628AT\"],optionTitles:[\"Desktop\",\"Mobile\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum},UUMEk_5km:{defaultValue:\"23 UCAT Verbal Reasoning Tips: Save Time and Boost Your Score\",placeholder:\"\",title:\"Title\",type:ControlType.String},WwaMiS9ib:{defaultValue:\"Ace the UCAT Verbal Reasoning section with our expert tips and techniques. From speed reading to totalising language, we\u2019ve got this difficult section covered.\",description:\"\",displayTextArea:true,placeholder:\"\",title:\"Description\",type:ControlType.String},bxSuWzrEJ:{defaultValue:\"2024-07-09T00:00:00.000Z\",title:\"Date\",type:ControlType.Date},OqDnWuuN0:{__defaultAssetReference:\"data:framer/asset-reference,lx2ldIIqcvIRlV0xCL5SZwKbtj4.png?originalFilename=image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},C2WI9pfGs:{defaultValue:true,title:\"Show localization alert\",type:ControlType.Boolean},YdsbQ4qBT:{defaultValue:\"<p>A lot of students find Verbal Reasoning (VR) hard.</p><h2>Heading 1</h2><p>It's the<em> </em>first section of an epic two-hour long exam, and that in itself creates some anxiety. You're immediately faced with a big block of text and a challenging time limit which can throw anyone off.</p><p>So how can you ace the VR section of the UCAT?</p><h3>Heading 2</h3>\",title:\"Content\",type:ControlType.RichText}});addFonts(Framerg68CkqrRm,[{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\"}]},...SharedBackButtonFonts,...ResourcesLocalizedArticleLinkFonts,...ResourcesTableOfContentsFonts,...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),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"WpfFb0Er3\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"WpfFb0Er3\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"EhLgzaN5e\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"EhLgzaN5e\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg68CkqrRm\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PQWbrvcVl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dHp0628AT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"UUMEk_5km\\\":\\\"title\\\",\\\"WwaMiS9ib\\\":\\\"description\\\",\\\"bxSuWzrEJ\\\":\\\"date\\\",\\\"OqDnWuuN0\\\":\\\"image\\\",\\\"C2WI9pfGs\\\":\\\"showLocalizationAlert\\\",\\\"YdsbQ4qBT\\\":\\\"content\\\"}\",\"framerIntrinsicHeight\":\"931\",\"framerIntrinsicWidth\":\"1280\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g68CkqrRm.map", "// Generated by Framer (a2fb474)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3;import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,useComponentViewport,useLocaleCode,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{TableOverride}from\"https://framerusercontent.com/modules/4V4IN33efgPjQLJmwIax/JneZmAtTTkzOYePMdf3K/MarkdownTable.js\";import{withContent}from\"https://framerusercontent.com/modules/vGNboIIzJuMCUXRsQ1wD/nOjVfza03HyLoa98bfM8/TableOfContents_v2.js\";import*as componentPresets from\"https://framerusercontent.com/modules/6biyRnZrMUi0Twc9sqFN/5CZoYtA3pHRKvLHjvi4P/componentPresets.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2QNjAiPQ6ty36zIueYRI/vti1QQyj9ctRyNecY0KX/E59o5G4nK.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/87dywtfu7TWuydxXm73S/5j5WCcPuWXnScofMYtY7/EtW0ABcHc.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/Jn6D4ZW3nelvzJJwSO4a/nUkhEokqrKNewpjTGMcn/GlVddIzHC.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/4LdNz8NIJKNzZXBM9U9a/x4mSxJaHAXTbawmWk36z/iaUverFYE.js\";import*as sharedStyle13 from\"https://framerusercontent.com/modules/WwTyq3Hlgbad9GZxk5FS/qPHgPj0jLojXAGH4mzuJ/IBBYpaMGR.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/8VF9TgNjquOhoOewaK5v/3xSCN5FG6scilMQHGvl7/KYUG2OBH7.js\";import*as sharedStyle11 from\"https://framerusercontent.com/modules/woV2abVQi96oS4OIc48O/iMUoe2w4R2ejDIE92CV3/MhBlSz0LH.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/ufCPrUicKYPQquf3SkxU/DuTN73uXNlUAB3ExXgvq/n8_6SUGwJ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qRaEpLKlnQ59pGxhyhbx/pk3BlKyNDmyaqLNqUVNz/oSICPC3ba.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/yxIyC27VdOdcSadDlnm4/svFccJicya79v1f35Mj6/Qc6mHAJQM.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/NtRtkIXw5IRcalV7opnL/JD8hhOpxGiRdHVu49vDc/QERMAk2BM.js\";import*as sharedStyle12 from\"https://framerusercontent.com/modules/Fg88cg7AbiN9xRCV0dp1/iwt97rcUYofpaUj5fiaR/tLYzdQt8C.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/4607t6H3zZ6p1bN0lqGb/p9TSTNdopnCpMuQGmwSn/Zf1NeQxua.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/6Qt6sUMcPKnJGkZ8bPNe/cIheLrYtKsOKGuZefsaR/ZyFk3aYNb.js\";import SharedBackButton from\"https://framerusercontent.com/modules/8E0D7EF0RxusyiPNq5HV/VgNkddWoT3GQdScyyC9L/ejyewc2Ha.js\";import ResourcesTableOfContents from\"https://framerusercontent.com/modules/j3ZY1MgL7ia1SD0V6pVk/JjsJjELRLoU9Zzdz12wt/ILu32PLDd.js\";import ResourcesLocalizedArticleLink from\"https://framerusercontent.com/modules/99oNwSn8A610gIzU9Yeg/QJlo1YypClgwsOwHmfsa/QGe5olY3x.js\";const SharedBackButtonFonts=getFonts(SharedBackButton);const ResourcesLocalizedArticleLinkFonts=getFonts(ResourcesLocalizedArticleLink);const ResourcesTableOfContentsFonts=getFonts(ResourcesTableOfContents);const RichTextWithContent=withContent(RichText);const MotionDivTableOverride=TableOverride(motion.div);const cycleOrder=[\"Czlg44dG8\",\"ZYmu8c8th\"];const serializationHash=\"framer-1i8Q1\";const variantClassNames={Czlg44dG8:\"framer-v-7dkf6h\",ZYmu8c8th:\"framer-v-1vpzdia\"};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={duration:0,type:\"tween\"};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 prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"default\":return\"yym6tKESQ\";default:return\"UerHdNnot\";}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"Czlg44dG8\",Mobile:\"ZYmu8c8th\"};const getProps=({content,date,description,height,id,image,showLocalizationAlert,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5,_ref6;return{...props,bxSuWzrEJ:(_ref=date!==null&&date!==void 0?date:props.bxSuWzrEJ)!==null&&_ref!==void 0?_ref:\"2024-07-09T00:00:00.000Z\",mpdLZfksp:(_ref1=showLocalizationAlert!==null&&showLocalizationAlert!==void 0?showLocalizationAlert:props.mpdLZfksp)!==null&&_ref1!==void 0?_ref1:true,mYACSGaU1:(_ref2=image!==null&&image!==void 0?image:props.mYACSGaU1)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/kzfOTZjNoF53lf5yxnqjri95MMo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/kzfOTZjNoF53lf5yxnqjri95MMo.png?scale-down-to=512 512w,https://framerusercontent.com/images/kzfOTZjNoF53lf5yxnqjri95MMo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kzfOTZjNoF53lf5yxnqjri95MMo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kzfOTZjNoF53lf5yxnqjri95MMo.png 2530w\"},UUMEk_5km:(_ref3=title!==null&&title!==void 0?title:props.UUMEk_5km)!==null&&_ref3!==void 0?_ref3:\"23 UCAT Verbal Reasoning Tips: Save Time and Boost Your Score\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"Czlg44dG8\",WwaMiS9ib:(_ref5=description!==null&&description!==void 0?description:props.WwaMiS9ib)!==null&&_ref5!==void 0?_ref5:\"Ace the UCAT Verbal Reasoning section with our expert tips and techniques. From speed reading to totalising language, we\u2019ve got this difficult section covered.\",YdsbQ4qBT:(_ref6=content!==null&&content!==void 0?content:props.YdsbQ4qBT)!==null&&_ref6!==void 0?_ref6:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{children:\"A lot of students find Verbal Reasoning (VR) hard.\"}),/*#__PURE__*/_jsx(motion.h2,{children:\"Heading 1\"}),/*#__PURE__*/_jsxs(motion.p,{children:[\"It's the\",/*#__PURE__*/_jsx(motion.em,{children:\" \"}),\"first section of an epic two-hour long exam, and that in itself creates some anxiety. You're immediately faced with a big block of text and a challenging time limit which can throw anyone off.\"]}),/*#__PURE__*/_jsx(motion.p,{children:\"So how can you ace the VR section of the UCAT?\"}),/*#__PURE__*/_jsx(motion.h3,{children:\"Heading 2\"})]})};};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,UUMEk_5km,WwaMiS9ib,bxSuWzrEJ,mYACSGaU1,mpdLZfksp,YdsbQ4qBT,bxSuWzrEJNhHFO9QSy,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Czlg44dG8\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const activeLocaleCode=useLocaleCode();const textContent=prefix(toDateString(bxSuWzrEJ,{dateStyle:\"long\",locale:\"\"},activeLocaleCode),\"Updated \");const textContent1=toDateString(bxSuWzrEJNhHFO9QSy,{dateStyle:\"long\",locale:\"\"},activeLocaleCode);const isDisplayed=()=>{if(baseVariant===\"ZYmu8c8th\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"ZYmu8c8th\")return false;return true;};const defaultLayoutId=React.useId();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];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7dkf6h\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Czlg44dG8\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({ZYmu8c8th:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-j0t60r\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"SdDNjUgqc\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11exd4m\",layoutDependency:layoutDependency,layoutId:\"T7cogEXYZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wx8skd\",layoutDependency:layoutDependency,layoutId:\"pFL1w3TA1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-btb023\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"apbP8aMeR\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i4yvDsMBS\"},implicitPathVariables:undefined},{href:{webPageId:\"i4yvDsMBS\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1001)-0-1297)/2)+0+0+0+0+0+0+0,...addPropertyOverrides({ZYmu8c8th:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1345)-0-1175)/2)+0+0+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eyznod-container\",layoutDependency:layoutDependency,layoutId:\"s1Q6uBknY-container\",children:/*#__PURE__*/_jsx(SharedBackButton,{gDmW2JaB3:\"Back\",height:\"100%\",id:\"s1Q6uBknY\",layoutId:\"s1Q6uBknY\",tO_mfzutQ:resolvedLinks[0],width:\"100%\",...addPropertyOverrides({ZYmu8c8th:{tO_mfzutQ:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mt5uzo\",layoutDependency:layoutDependency,layoutId:\"eVjDpJMvm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-67qoye\",\"data-styles-preset\":\"E59o5G4nK\",style:{\"--framer-text-alignment\":\"left\"},children:\"23 UCAT Verbal Reasoning Tips: Save Time and Boost Your Score\"})}),className:\"framer-165epx3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b_3upmyig\",text:UUMEk_5km,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hdcfl6\",\"data-styles-preset\":\"oSICPC3ba\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"Ace the UCAT Verbal Reasoning section with our expert tips and techniques. From speed reading to totalising language, we\u2019ve got this difficult section covered.\"})}),className:\"framer-e0jt19\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"G8HpL_TWU\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\"},text:WwaMiS9ib,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-135v591\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"MZ8wZkE84\",style:{backgroundColor:\"var(--token-1fb17d4a-a12d-4552-9431-5009236effce, rgba(0, 0, 0, 0.1))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kd42wo\",layoutDependency:layoutDependency,layoutId:\"Cqk0k7XyU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tQyrn1y5v\"},nodeId:\"tB3PaBoI_\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fgdjwy\",\"data-styles-preset\":\"QERMAk2BM\",children:\"Guides\"})})})}),className:\"framer-p1cwbj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tB3PaBoI_\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"\\xb7\"})}),className:\"framer-1yxaqrr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vtc2ry5Wn\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"Updated \"})}),className:\"framer-1k02rxn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eedcvC5BN\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"Content\"})}),className:\"framer-o8452z\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LtwqYphlv\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\"},text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1001)-0-1297)/2)+0+0+0+0+336.6),sizes:`min(1280px, max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1280px) - 384px, 1px))`,...toResponsiveImage(mYACSGaU1)},className:\"framer-ga0olk\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Rg3QI2SMF\",...addPropertyOverrides({ZYmu8c8th:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1345)-0-1175)/2)+0+0+0+0+0+336.6),sizes:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1280px)`,...toResponsiveImage(mYACSGaU1)}}},baseVariant,gestureVariant)}),mpdLZfksp&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1280px) - 384px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1001)-0-1297)/2)+0+0+0+0+768.6,...addPropertyOverrides({ZYmu8c8th:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1280px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1345)-0-1175)/2)+0+0+0+0+0+568.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ytuslx-container\",layoutDependency:layoutDependency,layoutId:\"lh7K2LKae-container\",children:/*#__PURE__*/_jsx(ResourcesLocalizedArticleLink,{height:\"100%\",id:\"lh7K2LKae\",layoutId:\"lh7K2LKae\",style:{width:\"100%\"},variant:convertFromEnum(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale),width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({ZYmu8c8th:{height:46,width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1280px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1345)-0-1175)/2)+0+0+0+0+0+690.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ugawie-container\",layoutDependency:layoutDependency,layoutId:\"JK1F6EzwT-container\",children:/*#__PURE__*/_jsx(ResourcesTableOfContents,{height:\"100%\",id:\"JK1F6EzwT\",layoutId:\"JK1F6EzwT\",style:{width:\"100%\"},variant:\"gO4KHrAWv\",width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivTableOverride,{className:\"framer-djt3db\",\"data-framer-name\":\"MarkdownTable\",layoutDependency:layoutDependency,layoutId:\"AapeSgBzN\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"WpfFb0Er3\"],\"module:pVk4QsoHxASnVtUBp6jr/F3DAaPbkrr19izpZS3jO/CodeBlock.js:default\":componentPresets.props[\"EhLgzaN5e\"]},children:/*#__PURE__*/_jsx(RichTextWithContent,{__fromCanvasComponent:true,children:YdsbQ4qBT,className:\"framer-6af7h7\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"t23HqFbie\",style:{\"--framer-paragraph-spacing\":\"20px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-3n7hhn\",blockquote:\"framer-styles-preset-v8r1fo\",code:\"framer-styles-preset-1ab3whw\",h1:\"framer-styles-preset-67qoye\",h2:\"framer-styles-preset-1ygbgwo\",h3:\"framer-styles-preset-1tndf8s\",h4:\"framer-styles-preset-mvjujt\",h5:\"framer-styles-preset-bq6kjk\",h6:\"framer-styles-preset-1rxir1t\",img:\"framer-styles-preset-1c3d7lq\",p:\"framer-styles-preset-uo0fi2\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:\"320px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1001)-0-1297)/2)+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19hjo7q-container\",layoutDependency:layoutDependency,layoutId:\"cS66T3GU5-container\",children:/*#__PURE__*/_jsx(ResourcesTableOfContents,{height:\"100%\",id:\"cS66T3GU5\",layoutId:\"cS66T3GU5\",style:{width:\"100%\"},variant:\"MyNzZMSxZ\",width:\"100%\"})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1i8Q1.framer-1qhc7jj, .framer-1i8Q1 .framer-1qhc7jj { display: block; }\",\".framer-1i8Q1.framer-7dkf6h { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-1i8Q1 .framer-j0t60r { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1i8Q1 .framer-11exd4m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1i8Q1 .framer-1wx8skd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1i8Q1 .framer-btb023 { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1i8Q1 .framer-eyznod-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-1i8Q1 .framer-mt5uzo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1i8Q1 .framer-165epx3, .framer-1i8Q1 .framer-e0jt19 { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-1i8Q1 .framer-135v591 { flex: none; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-1i8Q1 .framer-1kd42wo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1i8Q1 .framer-p1cwbj, .framer-1i8Q1 .framer-1yxaqrr, .framer-1i8Q1 .framer-1k02rxn, .framer-1i8Q1 .framer-o8452z { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: auto; }\",\".framer-1i8Q1 .framer-ga0olk { aspect-ratio: 3.2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 280px); max-width: 100%; overflow: hidden; position: relative; width: 1280px; }\",\".framer-1i8Q1 .framer-1ytuslx-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-1i8Q1 .framer-ugawie-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-1i8Q1 .framer-djt3db { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1i8Q1 .framer-6af7h7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1i8Q1 .framer-19hjo7q-container { flex: none; height: auto; position: sticky; top: 100px; width: 320px; will-change: transform; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1i8Q1.framer-7dkf6h, .framer-1i8Q1 .framer-j0t60r, .framer-1i8Q1 .framer-11exd4m, .framer-1i8Q1 .framer-1wx8skd, .framer-1i8Q1 .framer-btb023, .framer-1i8Q1 .framer-mt5uzo, .framer-1i8Q1 .framer-1kd42wo, .framer-1i8Q1 .framer-djt3db { gap: 0px; } .framer-1i8Q1.framer-7dkf6h > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-1i8Q1.framer-7dkf6h > :first-child, .framer-1i8Q1 .framer-11exd4m > :first-child, .framer-1i8Q1 .framer-1kd42wo > :first-child { margin-left: 0px; } .framer-1i8Q1.framer-7dkf6h > :last-child, .framer-1i8Q1 .framer-11exd4m > :last-child, .framer-1i8Q1 .framer-1kd42wo > :last-child { margin-right: 0px; } .framer-1i8Q1 .framer-j0t60r > *, .framer-1i8Q1 .framer-1wx8skd > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-1i8Q1 .framer-j0t60r > :first-child, .framer-1i8Q1 .framer-1wx8skd > :first-child, .framer-1i8Q1 .framer-btb023 > :first-child, .framer-1i8Q1 .framer-mt5uzo > :first-child, .framer-1i8Q1 .framer-djt3db > :first-child { margin-top: 0px; } .framer-1i8Q1 .framer-j0t60r > :last-child, .framer-1i8Q1 .framer-1wx8skd > :last-child, .framer-1i8Q1 .framer-btb023 > :last-child, .framer-1i8Q1 .framer-mt5uzo > :last-child, .framer-1i8Q1 .framer-djt3db > :last-child { margin-bottom: 0px; } .framer-1i8Q1 .framer-11exd4m > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-1i8Q1 .framer-btb023 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-1i8Q1 .framer-mt5uzo > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-1i8Q1 .framer-1kd42wo > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-1i8Q1 .framer-djt3db > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-1i8Q1.framer-v-1vpzdia.framer-7dkf6h { width: 390px; }\",\".framer-1i8Q1.framer-v-1vpzdia .framer-11exd4m { flex-direction: column; gap: 24px; }\",\".framer-1i8Q1.framer-v-1vpzdia .framer-1wx8skd { flex: none; order: 1; width: 100%; }\",\".framer-1i8Q1.framer-v-1vpzdia .framer-e0jt19 { --framer-text-wrap-override: none; }\",\".framer-1i8Q1.framer-v-1vpzdia .framer-ga0olk { aspect-ratio: 1.95 / 1; height: var(--framer-aspect-ratio-supported, 200px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1i8Q1.framer-v-1vpzdia .framer-11exd4m { gap: 0px; } .framer-1i8Q1.framer-v-1vpzdia .framer-11exd4m > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-1i8Q1.framer-v-1vpzdia .framer-11exd4m > :first-child { margin-top: 0px; } .framer-1i8Q1.framer-v-1vpzdia .framer-11exd4m > :last-child { margin-bottom: 0px; } }\",...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];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1001\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZYmu8c8th\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"UUMEk_5km\":\"title\",\"WwaMiS9ib\":\"description\",\"bxSuWzrEJ\":\"date\",\"mYACSGaU1\":\"image\",\"mpdLZfksp\":\"showLocalizationAlert\",\"YdsbQ4qBT\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkgmjFZnI7=withCSS(Component,css,\"framer-1i8Q1\");export default FramerkgmjFZnI7;FramerkgmjFZnI7.displayName=\"Resources / Article -> Guide\";FramerkgmjFZnI7.defaultProps={height:1001,width:1280};addPropertyControls(FramerkgmjFZnI7,{variant:{options:[\"Czlg44dG8\",\"ZYmu8c8th\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},UUMEk_5km:{defaultValue:\"23 UCAT Verbal Reasoning Tips: Save Time and Boost Your Score\",placeholder:\"\",title:\"Title\",type:ControlType.String},WwaMiS9ib:{defaultValue:\"Ace the UCAT Verbal Reasoning section with our expert tips and techniques. From speed reading to totalising language, we\u2019ve got this difficult section covered.\",description:\"\",displayTextArea:true,placeholder:\"\",title:\"Description\",type:ControlType.String},bxSuWzrEJ:{defaultValue:\"2024-07-09T00:00:00.000Z\",title:\"Date\",type:ControlType.Date},mYACSGaU1:{__defaultAssetReference:\"data:framer/asset-reference,kzfOTZjNoF53lf5yxnqjri95MMo.png?originalFilename=image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},mpdLZfksp:{defaultValue:true,description:\"\",title:\"Show localization alert\",type:ControlType.Boolean},YdsbQ4qBT:{defaultValue:\"<p>A lot of students find Verbal Reasoning (VR) hard.</p><h2>Heading 1</h2><p>It's the<em> </em>first section of an epic two-hour long exam, and that in itself creates some anxiety. You're immediately faced with a big block of text and a challenging time limit which can throw anyone off.</p><p>So how can you ace the VR section of the UCAT?</p><h3>Heading 2</h3>\",title:\"Content\",type:ControlType.RichText}});addFonts(FramerkgmjFZnI7,[{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\"}]},...SharedBackButtonFonts,...ResourcesLocalizedArticleLinkFonts,...ResourcesTableOfContentsFonts,...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),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"WpfFb0Er3\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"WpfFb0Er3\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"EhLgzaN5e\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"EhLgzaN5e\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkgmjFZnI7\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1280\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZYmu8c8th\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"UUMEk_5km\\\":\\\"title\\\",\\\"WwaMiS9ib\\\":\\\"description\\\",\\\"bxSuWzrEJ\\\":\\\"date\\\",\\\"mYACSGaU1\\\":\\\"image\\\",\\\"mpdLZfksp\\\":\\\"showLocalizationAlert\\\",\\\"YdsbQ4qBT\\\":\\\"content\\\"}\",\"framerIntrinsicHeight\":\"1001\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a2fb474)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3;import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,useComponentViewport,useLocaleCode,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVGIcon from\"https://framerusercontent.com/modules/nCHxtXz6uqq1WVU5GP8Z/EQnJn75w9rD6j2U8enWU/SVG_Icon.js\";import*as componentPresets from\"https://framerusercontent.com/modules/6biyRnZrMUi0Twc9sqFN/5CZoYtA3pHRKvLHjvi4P/componentPresets.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2QNjAiPQ6ty36zIueYRI/vti1QQyj9ctRyNecY0KX/E59o5G4nK.js\";import*as sharedStyle11 from\"https://framerusercontent.com/modules/87dywtfu7TWuydxXm73S/5j5WCcPuWXnScofMYtY7/EtW0ABcHc.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/2pqNAMnPYl2plKtiNMLD/0fzVqJS9pCtzyET69tBx/g20iXw__Y.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/Jn6D4ZW3nelvzJJwSO4a/nUkhEokqrKNewpjTGMcn/GlVddIzHC.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/4LdNz8NIJKNzZXBM9U9a/x4mSxJaHAXTbawmWk36z/iaUverFYE.js\";import*as sharedStyle14 from\"https://framerusercontent.com/modules/WwTyq3Hlgbad9GZxk5FS/qPHgPj0jLojXAGH4mzuJ/IBBYpaMGR.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/8VF9TgNjquOhoOewaK5v/3xSCN5FG6scilMQHGvl7/KYUG2OBH7.js\";import*as sharedStyle12 from\"https://framerusercontent.com/modules/woV2abVQi96oS4OIc48O/iMUoe2w4R2ejDIE92CV3/MhBlSz0LH.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/ufCPrUicKYPQquf3SkxU/DuTN73uXNlUAB3ExXgvq/n8_6SUGwJ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qRaEpLKlnQ59pGxhyhbx/pk3BlKyNDmyaqLNqUVNz/oSICPC3ba.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/yxIyC27VdOdcSadDlnm4/svFccJicya79v1f35Mj6/Qc6mHAJQM.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/NtRtkIXw5IRcalV7opnL/JD8hhOpxGiRdHVu49vDc/QERMAk2BM.js\";import*as sharedStyle13 from\"https://framerusercontent.com/modules/Fg88cg7AbiN9xRCV0dp1/iwt97rcUYofpaUj5fiaR/tLYzdQt8C.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/4607t6H3zZ6p1bN0lqGb/p9TSTNdopnCpMuQGmwSn/Zf1NeQxua.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/6Qt6sUMcPKnJGkZ8bPNe/cIheLrYtKsOKGuZefsaR/ZyFk3aYNb.js\";import SharedBackButton from\"https://framerusercontent.com/modules/8E0D7EF0RxusyiPNq5HV/VgNkddWoT3GQdScyyC9L/ejyewc2Ha.js\";const SharedBackButtonFonts=getFonts(SharedBackButton);const SVGIconFonts=getFonts(SVGIcon);const cycleOrder=[\"oNWjO0RTk\",\"BgWlvVaIP\"];const serializationHash=\"framer-RWdjr\";const variantClassNames={BgWlvVaIP:\"framer-v-1m7pebk\",oNWjO0RTk:\"framer-v-1oheqw6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const animation={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:0,delay:.04,duration:.4,type:\"spring\"};const textEffect={effect:animation,startDelay:0,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"oNWjO0RTk\",Mobile:\"BgWlvVaIP\"};const getProps=({content,date,description,height,id,image,quote,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5,_ref6;return{...props,bxSuWzrEJ:(_ref=date!==null&&date!==void 0?date:props.bxSuWzrEJ)!==null&&_ref!==void 0?_ref:\"2024-07-09T00:00:00.000Z\",f6ha2MTz1:(_ref1=quote!==null&&quote!==void 0?quote:props.f6ha2MTz1)!==null&&_ref1!==void 0?_ref1:\"When people are dying, they don't need a poet or an architect. What they really need is a doctor.\",mYACSGaU1:(_ref2=image!==null&&image!==void 0?image:props.mYACSGaU1)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/GrlWPsriRKZeYpzSnwwZcGOIK8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/GrlWPsriRKZeYpzSnwwZcGOIK8.png?scale-down-to=512 512w,https://framerusercontent.com/images/GrlWPsriRKZeYpzSnwwZcGOIK8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GrlWPsriRKZeYpzSnwwZcGOIK8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GrlWPsriRKZeYpzSnwwZcGOIK8.png 2400w\"},UUMEk_5km:(_ref3=title!==null&&title!==void 0?title:props.UUMEk_5km)!==null&&_ref3!==void 0?_ref3:\"Beyond Borders: Dr. Rawan\u2019s Journey to Medicine\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"oNWjO0RTk\",WwaMiS9ib:(_ref5=description!==null&&description!==void 0?description:props.WwaMiS9ib)!==null&&_ref5!==void 0?_ref5:\"After leaving Syria, Dr. Rawan overcame the toughest barriers to entry into medicine. Read her inspirational story of perseverance, blind faith, and resilience.\",YdsbQ4qBT:(_ref6=content!==null&&content!==void 0?content:props.YdsbQ4qBT)!==null&&_ref6!==void 0?_ref6:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{children:\"A lot of students find Verbal Reasoning (VR) hard.\"}),/*#__PURE__*/_jsx(motion.h2,{children:\"Heading 1\"}),/*#__PURE__*/_jsxs(motion.p,{children:[\"It's the\",/*#__PURE__*/_jsx(motion.em,{children:\" \"}),\"first section of an epic two-hour long exam, and that in itself creates some anxiety. You're immediately faced with a big block of text and a challenging time limit which can throw anyone off.\"]}),/*#__PURE__*/_jsx(motion.p,{children:\"So how can you ace the VR section of the UCAT?\"}),/*#__PURE__*/_jsx(motion.h3,{children:\"Heading 2\"}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]})};};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,UUMEk_5km,WwaMiS9ib,bxSuWzrEJ,mYACSGaU1,f6ha2MTz1,YdsbQ4qBT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oNWjO0RTk\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const activeLocaleCode=useLocaleCode();const textContent=toDateString(bxSuWzrEJ,{dateStyle:\"long\",locale:\"\"},activeLocaleCode);const textContent1=prefix(f6ha2MTz1,\"\");const defaultLayoutId=React.useId();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];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1oheqw6\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"oNWjO0RTk\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({BgWlvVaIP:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b1sjof\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"ibrTWICtk\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12dxgd\",layoutDependency:layoutDependency,layoutId:\"C_0lKeNiz\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iqvbvk\",layoutDependency:layoutDependency,layoutId:\"BDGWKl7AB\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i4yvDsMBS\"},implicitPathVariables:undefined},{href:{webPageId:\"i4yvDsMBS\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1085)-0-1279)/2)+0+0+0+0+0,...addPropertyOverrides({BgWlvVaIP:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1375)-0-1279)/2)+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-c3nwh5-container\",layoutDependency:layoutDependency,layoutId:\"kTEuijqBg-container\",children:/*#__PURE__*/_jsx(SharedBackButton,{gDmW2JaB3:\"Back\",height:\"100%\",id:\"kTEuijqBg\",layoutId:\"kTEuijqBg\",tO_mfzutQ:resolvedLinks[0],width:\"100%\",...addPropertyOverrides({BgWlvVaIP:{tO_mfzutQ:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18bx652\",layoutDependency:layoutDependency,layoutId:\"wNAA7Gs5Q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-67qoye\",\"data-styles-preset\":\"E59o5G4nK\",style:{\"--framer-text-alignment\":\"left\"},children:\"Beyond Borders: Dr. Rawan\u2019s Journey to Medicine\"})}),className:\"framer-v9no24\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"P06rMFL7Z\",text:UUMEk_5km,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hdcfl6\",\"data-styles-preset\":\"oSICPC3ba\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"After leaving Syria, Dr. Rawan overcame the toughest barriers to entry into medicine. Read her inspirational story of perseverance, blind faith, and resilience.\"})}),className:\"framer-1pu6via\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gh5VE4iHB\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\"},text:WwaMiS9ib,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g9mg0u\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"p0Kq2Het5\",style:{backgroundColor:\"var(--token-1fb17d4a-a12d-4552-9431-5009236effce, rgba(0, 0, 0, 0.1))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bpm7bm\",layoutDependency:layoutDependency,layoutId:\"SYry_gp7x\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tQyrn1y5v\"},nodeId:\"F6zSQq0fC\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fgdjwy\",\"data-styles-preset\":\"QERMAk2BM\",children:\"Stories\"})})})}),className:\"framer-1e64fy5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"F6zSQq0fC\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"\\xb7\"})}),className:\"framer-gqar6e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qNCxjXo48\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t1ighf\",\"data-styles-preset\":\"iaUverFYE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6)))\"},children:\"July 9, 2024\"})}),className:\"framer-77b5f0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SF4bFSoSD\",style:{\"--extracted-r6o4lv\":\"var(--token-2cf17f66-a8fd-41a5-8407-9716ef376c83, rgba(20, 20, 31, 0.6))\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-104tc05\",layoutDependency:layoutDependency,layoutId:\"aYug9i0Va\",style:{backgroundColor:\"var(--token-514dc49b-3152-4818-9c82-768711f5431e, rgb(20, 20, 31))\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1085)-0-1279)/2)+0+344.6+0),sizes:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1024px), 1px)`,...toResponsiveImage(mYACSGaU1)},className:\"framer-1jxedlm\",layoutDependency:layoutDependency,layoutId:\"b6mhnU2gl\",...addPropertyOverrides({BgWlvVaIP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1375)-0-1279)/2)+0+344.6+0),sizes:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1024px), 1px)`,...toResponsiveImage(mYACSGaU1)}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eu9pat\",layoutDependency:layoutDependency,layoutId:\"mRa45BvQh\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16rvnzg-container\",layoutDependency:layoutDependency,layoutId:\"JpUAIzRIo-container\",children:/*#__PURE__*/_jsx(SVGIcon,{fillColor:\"var(--token-c4767eef-60d4-4259-a7ad-8b2de6758b9b, rgb(255, 255, 255))\",height:\"100%\",id:\"JpUAIzRIo\",layoutId:\"JpUAIzRIo\",padding:0,strokeColor:\"var(--token-5946dd37-c90e-4d98-8476-93d5a54ee03a, rgba(255, 255, 255, 0))\",strokeWidth:1.5,style:{width:\"100%\"},svgCode:'<svg width=\"20\" height=\"18\" viewBox=\"0 0 20 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M8.72928 0.839355V4.983H7.59668C6.63904 4.983 5.88398 5.30529 5.33149 5.94985C4.79742 6.576 4.53039 7.46919 4.53039 8.62941V10.4802L3.39779 9.34764H8.72928V17.8283H0V8.87803C0 6.18926 0.690608 4.1819 2.07182 2.85593C3.47145 1.51155 5.42357 0.839355 7.92818 0.839355H8.72928ZM20 0.839355V4.983H18.8674C17.9098 4.983 17.1547 5.30529 16.6022 5.94985C16.0681 6.576 15.8011 7.46919 15.8011 8.62941V10.4802L14.6685 9.34764H20V17.8283H11.2707V8.87803C11.2707 6.18926 11.9613 4.1819 13.3425 2.85593C14.7422 1.51155 16.6943 0.839355 19.1989 0.839355H20Z\" fill=\"white\"/> </svg>',width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-y36z4n\",\"data-styles-preset\":\"g20iXw__Y\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4767eef-60d4-4259-a7ad-8b2de6758b9b, rgb(255, 255, 255)))\"},children:\"When people are dying, they don't need a poet or an architect. What they really need is a doctor.\"})}),className:\"framer-14c9rhu\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iLXmwav3q\",style:{\"--extracted-r6o4lv\":\"var(--token-c4767eef-60d4-4259-a7ad-8b2de6758b9b, rgb(255, 255, 255))\"},text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k9148k\",layoutDependency:layoutDependency,layoutId:\"kFd5qYF7l\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"WpfFb0Er3\"],\"module:pVk4QsoHxASnVtUBp6jr/F3DAaPbkrr19izpZS3jO/CodeBlock.js:default\":componentPresets.props[\"EhLgzaN5e\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:YdsbQ4qBT,className:\"framer-3t2ikx\",\"data-framer-name\":\"Content\",fonts:[\"Inter\",\"Inter-Italic\"],layoutDependency:layoutDependency,layoutId:\"urLPb6zTQ\",style:{\"--framer-paragraph-spacing\":\"16px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-3n7hhn\",blockquote:\"framer-styles-preset-v8r1fo\",code:\"framer-styles-preset-1ab3whw\",h1:\"framer-styles-preset-67qoye\",h2:\"framer-styles-preset-1ygbgwo\",h3:\"framer-styles-preset-1tndf8s\",h4:\"framer-styles-preset-mvjujt\",h5:\"framer-styles-preset-bq6kjk\",h6:\"framer-styles-preset-1rxir1t\",img:\"framer-styles-preset-1c3d7lq\",p:\"framer-styles-preset-uo0fi2\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RWdjr.framer-1jmdp26, .framer-RWdjr .framer-1jmdp26 { display: block; }\",\".framer-RWdjr.framer-1oheqw6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-RWdjr .framer-1b1sjof { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1024px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-RWdjr .framer-12dxgd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RWdjr .framer-iqvbvk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-RWdjr .framer-c3nwh5-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-RWdjr .framer-18bx652 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RWdjr .framer-v9no24, .framer-RWdjr .framer-1pu6via { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-RWdjr .framer-g9mg0u { flex: none; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-RWdjr .framer-bpm7bm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RWdjr .framer-1e64fy5, .framer-RWdjr .framer-gqar6e, .framer-RWdjr .framer-77b5f0 { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: auto; }\",\".framer-RWdjr .framer-104tc05 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RWdjr .framer-1jxedlm { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 400px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-RWdjr .framer-1eu9pat { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-RWdjr .framer-16rvnzg-container { flex: none; height: auto; position: relative; width: 20px; }\",\".framer-RWdjr .framer-14c9rhu { --framer-text-wrap-override: none; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-RWdjr .framer-k9148k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RWdjr .framer-3t2ikx { flex: none; height: auto; max-width: 568px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RWdjr.framer-1oheqw6, .framer-RWdjr .framer-1b1sjof, .framer-RWdjr .framer-12dxgd, .framer-RWdjr .framer-iqvbvk, .framer-RWdjr .framer-18bx652, .framer-RWdjr .framer-bpm7bm, .framer-RWdjr .framer-104tc05, .framer-RWdjr .framer-1jxedlm, .framer-RWdjr .framer-1eu9pat, .framer-RWdjr .framer-k9148k { gap: 0px; } .framer-RWdjr.framer-1oheqw6 > *, .framer-RWdjr .framer-104tc05 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-RWdjr.framer-1oheqw6 > :first-child, .framer-RWdjr .framer-12dxgd > :first-child, .framer-RWdjr .framer-bpm7bm > :first-child, .framer-RWdjr .framer-104tc05 > :first-child, .framer-RWdjr .framer-1jxedlm > :first-child { margin-left: 0px; } .framer-RWdjr.framer-1oheqw6 > :last-child, .framer-RWdjr .framer-12dxgd > :last-child, .framer-RWdjr .framer-bpm7bm > :last-child, .framer-RWdjr .framer-104tc05 > :last-child, .framer-RWdjr .framer-1jxedlm > :last-child { margin-right: 0px; } .framer-RWdjr .framer-1b1sjof > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-RWdjr .framer-1b1sjof > :first-child, .framer-RWdjr .framer-iqvbvk > :first-child, .framer-RWdjr .framer-18bx652 > :first-child, .framer-RWdjr .framer-1eu9pat > :first-child, .framer-RWdjr .framer-k9148k > :first-child { margin-top: 0px; } .framer-RWdjr .framer-1b1sjof > :last-child, .framer-RWdjr .framer-iqvbvk > :last-child, .framer-RWdjr .framer-18bx652 > :last-child, .framer-RWdjr .framer-1eu9pat > :last-child, .framer-RWdjr .framer-k9148k > :last-child { margin-bottom: 0px; } .framer-RWdjr .framer-12dxgd > *, .framer-RWdjr .framer-1jxedlm > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-RWdjr .framer-iqvbvk > *, .framer-RWdjr .framer-18bx652 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-RWdjr .framer-bpm7bm > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-RWdjr .framer-1eu9pat > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-RWdjr .framer-k9148k > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",\".framer-RWdjr.framer-v-1m7pebk.framer-1oheqw6 { width: 390px; }\",\".framer-RWdjr.framer-v-1m7pebk .framer-12dxgd { flex-direction: column; gap: 20px; }\",\".framer-RWdjr.framer-v-1m7pebk .framer-iqvbvk { flex: none; order: 0; width: 100%; }\",\".framer-RWdjr.framer-v-1m7pebk .framer-1pu6via { white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-RWdjr.framer-v-1m7pebk .framer-1eu9pat { padding: 20px; }\",\".framer-RWdjr.framer-v-1m7pebk .framer-k9148k { gap: 24px; }\",\".framer-RWdjr.framer-v-1m7pebk .framer-3t2ikx { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RWdjr.framer-v-1m7pebk .framer-12dxgd, .framer-RWdjr.framer-v-1m7pebk .framer-k9148k { gap: 0px; } .framer-RWdjr.framer-v-1m7pebk .framer-12dxgd > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-RWdjr.framer-v-1m7pebk .framer-12dxgd > :first-child, .framer-RWdjr.framer-v-1m7pebk .framer-k9148k > :first-child { margin-top: 0px; } .framer-RWdjr.framer-v-1m7pebk .framer-12dxgd > :last-child, .framer-RWdjr.framer-v-1m7pebk .framer-k9148k > :last-child { margin-bottom: 0px; } .framer-RWdjr.framer-v-1m7pebk .framer-k9148k > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 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];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1085\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BgWlvVaIP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"UUMEk_5km\":\"title\",\"WwaMiS9ib\":\"description\",\"bxSuWzrEJ\":\"date\",\"mYACSGaU1\":\"image\",\"f6ha2MTz1\":\"quote\",\"YdsbQ4qBT\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNhHFO9QSy=withCSS(Component,css,\"framer-RWdjr\");export default FramerNhHFO9QSy;FramerNhHFO9QSy.displayName=\"Resources / Article -> Story\";FramerNhHFO9QSy.defaultProps={height:1085,width:1280};addPropertyControls(FramerNhHFO9QSy,{variant:{options:[\"oNWjO0RTk\",\"BgWlvVaIP\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},UUMEk_5km:{defaultValue:\"Beyond Borders: Dr. Rawan\u2019s Journey to Medicine\",placeholder:\"\",title:\"Title\",type:ControlType.String},WwaMiS9ib:{defaultValue:\"After leaving Syria, Dr. Rawan overcame the toughest barriers to entry into medicine. Read her inspirational story of perseverance, blind faith, and resilience.\",description:\"\",displayTextArea:true,placeholder:\"\",title:\"Description\",type:ControlType.String},bxSuWzrEJ:{defaultValue:\"2024-07-09T00:00:00.000Z\",title:\"Date\",type:ControlType.Date},mYACSGaU1:{__defaultAssetReference:\"data:framer/asset-reference,GrlWPsriRKZeYpzSnwwZcGOIK8.png?originalFilename=image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},f6ha2MTz1:{defaultValue:\"When people are dying, they don't need a poet or an architect. What they really need is a doctor.\",description:\"\",placeholder:\"\",title:\"Quote\",type:ControlType.String},YdsbQ4qBT:{defaultValue:\"<p>A lot of students find Verbal Reasoning (VR) hard.</p><h2>Heading 1</h2><p>It's the<em> </em>first section of an epic two-hour long exam, and that in itself creates some anxiety. You're immediately faced with a big block of text and a challenging time limit which can throw anyone off.</p><p>So how can you ace the VR section of the UCAT?</p><h3>Heading 2</h3><p><br class=\\\"trailing-break\\\"></p>\",title:\"Content\",type:ControlType.RichText}});addFonts(FramerNhHFO9QSy,[{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:\"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\"}]},...SharedBackButtonFonts,...SVGIconFonts,...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),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"WpfFb0Er3\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"WpfFb0Er3\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"EhLgzaN5e\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"EhLgzaN5e\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNhHFO9QSy\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"UUMEk_5km\\\":\\\"title\\\",\\\"WwaMiS9ib\\\":\\\"description\\\",\\\"bxSuWzrEJ\\\":\\\"date\\\",\\\"mYACSGaU1\\\":\\\"image\\\",\\\"f6ha2MTz1\\\":\\\"quote\\\",\\\"YdsbQ4qBT\\\":\\\"content\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BgWlvVaIP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"1085\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1280\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (722666c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Link,NotFoundError,PathVariablesContext,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useSiteRefs,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import ResourcesArticleTipsTricks from\"#framer/local/canvasComponent/g68CkqrRm/g68CkqrRm.js\";import ResourcesListCard from\"#framer/local/canvasComponent/gDsurGsiP/gDsurGsiP.js\";import NavbarPlaceholder from\"#framer/local/canvasComponent/k7gEaxV1g/k7gEaxV1g.js\";import ResourcesArticleGuide from\"#framer/local/canvasComponent/kgmjFZnI7/kgmjFZnI7.js\";import ResourcesArticleStory from\"#framer/local/canvasComponent/NhHFO9QSy/NhHFO9QSy.js\";import Resources from\"#framer/local/collection/FZzecOwTD/FZzecOwTD.js\";import*as sharedStyle from\"#framer/local/css/JDqCVefYJ/JDqCVefYJ.js\";import metadataProvider from\"#framer/local/webPageMetadata/u3fjKEcEz/u3fjKEcEz.js\";const NavbarPlaceholderFonts=getFonts(NavbarPlaceholder);const ResourcesArticleStoryFonts=getFonts(ResourcesArticleStory);const ResourcesArticleTipsTricksFonts=getFonts(ResourcesArticleTipsTricks);const ResourcesArticleGuideFonts=getFonts(ResourcesArticleGuide);const ResourcesListCardFonts=getFonts(ResourcesListCard);const breakpoints={bDHRcozMs:\"(min-width: 1280px) and (max-width: 1439px)\",vi2n5mPen:\"(min-width: 810px) and (max-width: 1279px)\",VZoQG0fSt:\"(max-width: 809px)\",w_R2KBbDR:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-HuZ35\";const variantClassNames={bDHRcozMs:\"framer-v-y7ddjg\",vi2n5mPen:\"framer-v-ckusqh\",VZoQG0fSt:\"framer-v-zrgwt6\",w_R2KBbDR:\"framer-v-1lbaiu0\"};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 QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"w_R2KBbDR\",Laptop:\"bDHRcozMs\",Phone:\"VZoQG0fSt\",Tablet:\"vi2n5mPen\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"w_R2KBbDR\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"u3fjKEcEz\",data:Resources,type:\"Collection\"},select:[{collection:\"u3fjKEcEz\",name:\"B9LuYBzW3\",type:\"Identifier\"},{collection:\"u3fjKEcEz\",name:\"ZRQw3j8AM\",type:\"Identifier\"},{collection:\"u3fjKEcEz\",name:\"gZnvHAfSM\",type:\"Identifier\"},{collection:\"u3fjKEcEz\",name:\"YJZWnZ5ds\",type:\"Identifier\"},{collection:\"u3fjKEcEz\",name:\"IQRFvUfaL\",type:\"Identifier\"},{collection:\"u3fjKEcEz\",name:\"Tct4jY4gS\",type:\"Identifier\"},{collection:\"u3fjKEcEz\",name:\"ihQYTITlG\",type:\"Identifier\"},{collection:\"u3fjKEcEz\",name:\"E91Two280\",type:\"Identifier\"},{collection:\"u3fjKEcEz\",name:\"tvMqp_k3J\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"u3fjKEcEz\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,Tct4jY4gS=getFromCurrentRouteData(\"Tct4jY4gS\"),B9LuYBzW3=getFromCurrentRouteData(\"B9LuYBzW3\")??\"\",ZRQw3j8AM=getFromCurrentRouteData(\"ZRQw3j8AM\")??\"\",YJZWnZ5ds=getFromCurrentRouteData(\"YJZWnZ5ds\"),IQRFvUfaL=getFromCurrentRouteData(\"IQRFvUfaL\"),ihQYTITlG=getFromCurrentRouteData(\"ihQYTITlG\")??\"\",tvMqp_k3J=getFromCurrentRouteData(\"tvMqp_k3J\")??\"\",E91Two280=getFromCurrentRouteData(\"E91Two280\")??true,gZnvHAfSMcXIhn58zf,IQRFvUfaLcXIhn58zf,B9LuYBzW3cXIhn58zf,ZRQw3j8AMcXIhn58zf,E91Two280cXIhn58zf,idcXIhn58zf,gZnvHAfSM=getFromCurrentRouteData(\"gZnvHAfSM\")??\"\",...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 sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"sbpvbo6ro\");const dynamicRef=useSiteRefs();const visible=equals(Tct4jY4gS,\"UdbplOb6O\");const visible1=equals(Tct4jY4gS,\"VGlk6p6ov\");const visible2=equals(Tct4jY4gS,\"oMY0DSmKy\");const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"w_R2KBbDR\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-991137ce-2c03-4003-b0b8-6846de13779f, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1lbaiu0\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d95kyu\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VZoQG0fSt:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+40+-1508.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+0+60+-1508.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c8f9l0-container\",id:elementId,nodeId:\"sbpvbo6ro\",ref:dynamicRef(elementId),scopeId:\"u3fjKEcEz\",children:/*#__PURE__*/_jsx(NavbarPlaceholder,{height:\"100%\",id:\"sbpvbo6ro\",layoutId:\"sbpvbo6ro\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VZoQG0fSt:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+40+-1444.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1085,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+0+60+-1444.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y1vfb8-container\",nodeId:\"CVr3rCjW2\",scopeId:\"u3fjKEcEz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vi2n5mPen:{variant:\"BgWlvVaIP\"},VZoQG0fSt:{variant:\"BgWlvVaIP\"}},children:/*#__PURE__*/_jsx(ResourcesArticleStory,{bxSuWzrEJ:YJZWnZ5ds,f6ha2MTz1:ihQYTITlG,height:\"100%\",id:\"CVr3rCjW2\",layoutId:\"CVr3rCjW2\",mYACSGaU1:toResponsiveImage(IQRFvUfaL),style:{width:\"100%\"},UUMEk_5km:B9LuYBzW3,variant:\"oNWjO0RTk\",width:\"100%\",WwaMiS9ib:ZRQw3j8AM,YdsbQ4qBT:tvMqp_k3J})})})})}),visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VZoQG0fSt:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+40+-359.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:931,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+0+60+-359.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jekx0d-container\",nodeId:\"JDfhPSUYa\",scopeId:\"u3fjKEcEz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vi2n5mPen:{variant:\"dHp0628AT\"},VZoQG0fSt:{variant:\"PQWbrvcVl\"}},children:/*#__PURE__*/_jsx(ResourcesArticleTipsTricks,{bxSuWzrEJ:YJZWnZ5ds,C2WI9pfGs:E91Two280,height:\"100%\",id:\"JDfhPSUYa\",layoutId:\"JDfhPSUYa\",OqDnWuuN0:toResponsiveImage(IQRFvUfaL),style:{width:\"100%\"},UUMEk_5km:B9LuYBzW3,variant:\"zkgUN8l7U\",width:\"100%\",WwaMiS9ib:ZRQw3j8AM,YdsbQ4qBT:tvMqp_k3J})})})})}),visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VZoQG0fSt:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+40+571.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1001,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+0+60+571.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13zsk5v-container\",nodeId:\"jbJzv6DNA\",scopeId:\"u3fjKEcEz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vi2n5mPen:{variant:\"ZYmu8c8th\"},VZoQG0fSt:{variant:\"ZYmu8c8th\"}},children:/*#__PURE__*/_jsx(ResourcesArticleGuide,{bxSuWzrEJ:YJZWnZ5ds,height:\"100%\",id:\"jbJzv6DNA\",layoutId:\"jbJzv6DNA\",mpdLZfksp:E91Two280,mYACSGaU1:toResponsiveImage(IQRFvUfaL),style:{width:\"100%\"},UUMEk_5km:B9LuYBzW3,variant:\"Czlg44dG8\",width:\"100%\",WwaMiS9ib:ZRQw3j8AM,YdsbQ4qBT:tvMqp_k3J})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y78h7p\",\"data-framer-name\":\"More articles\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fx4s4h\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-137ub2o\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bdgm5c\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-derroh\",\"data-styles-preset\":\"JDqCVefYJ\",children:\"More like this\"})}),className:\"framer-m2o633\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uautqm\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"cXIhn58zf\",data:Resources,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"cXIhn58zf\",name:\"gZnvHAfSM\",type:\"Identifier\"},{collection:\"cXIhn58zf\",name:\"IQRFvUfaL\",type:\"Identifier\"},{collection:\"cXIhn58zf\",name:\"B9LuYBzW3\",type:\"Identifier\"},{collection:\"cXIhn58zf\",name:\"ZRQw3j8AM\",type:\"Identifier\"},{collection:\"cXIhn58zf\",name:\"E91Two280\",type:\"Identifier\"},{collection:\"cXIhn58zf\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"cXIhn58zf\",name:\"Tct4jY4gS\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:Tct4jY4gS},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"cXIhn58zf\",name:\"gZnvHAfSM\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:gZnvHAfSM},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({B9LuYBzW3:B9LuYBzW3cXIhn58zf,E91Two280:E91Two280cXIhn58zf,gZnvHAfSM:gZnvHAfSMcXIhn58zf,id:idcXIhn58zf,IQRFvUfaL:IQRFvUfaLcXIhn58zf,ZRQw3j8AM:ZRQw3j8AMcXIhn58zf},index)=>{gZnvHAfSMcXIhn58zf??=\"\";B9LuYBzW3cXIhn58zf??=\"\";ZRQw3j8AMcXIhn58zf??=\"\";E91Two280cXIhn58zf??=true;return /*#__PURE__*/_jsx(LayoutGroup,{id:`cXIhn58zf-${idcXIhn58zf}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{gZnvHAfSM:gZnvHAfSMcXIhn58zf},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{gZnvHAfSM:gZnvHAfSMcXIhn58zf},webPageId:\"u3fjKEcEz\"},motionChild:true,nodeId:\"jcQf7Bg6I\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-hp2jc0 framer-okua9f\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vi2n5mPen:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 40px) / 2, 50px)`},VZoQG0fSt:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px), 50px)`,y:(componentViewport?.y||0)+0+124+80+0+0+41+0+52+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+204+80+0+0+161+0+52+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5t5f1r-container\",nodeId:\"BNEIAYnZw\",scopeId:\"u3fjKEcEz\",children:/*#__PURE__*/_jsx(ResourcesListCard,{height:\"100%\",hSBdDIAmx:E91Two280cXIhn58zf,I5AgmRVar:toResponsiveImage(IQRFvUfaLcXIhn58zf),id:\"BNEIAYnZw\",layoutId:\"BNEIAYnZw\",lQdCTbz_z:B9LuYBzW3cXIhn58zf,style:{width:\"100%\"},width:\"100%\",YjUmdpDzH:ZRQw3j8AMcXIhn58zf})})})})})})})},idcXIhn58zf);})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ew9m7\",\"data-framer-name\":\"Divider\"})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HuZ35.framer-okua9f, .framer-HuZ35 .framer-okua9f { display: block; }\",\".framer-HuZ35.framer-1lbaiu0 { align-content: center; align-items: center; background-color: var(--token-991137ce-2c03-4003-b0b8-6846de13779f, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-HuZ35 .framer-d95kyu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 60px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-HuZ35 .framer-c8f9l0-container { flex: none; height: 64px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-HuZ35 .framer-y1vfb8-container, .framer-HuZ35 .framer-1jekx0d-container, .framer-HuZ35 .framer-13zsk5v-container, .framer-HuZ35 .framer-5t5f1r-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-HuZ35 .framer-1y78h7p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-HuZ35 .framer-1fx4s4h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HuZ35 .framer-137ub2o, .framer-HuZ35 .framer-8ew9m7 { background-color: var(--token-1fb17d4a-a12d-4552-9431-5009236effce, rgba(0, 0, 0, 0.1)); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-HuZ35 .framer-1bdgm5c { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HuZ35 .framer-m2o633 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HuZ35 .framer-uautqm { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-HuZ35 .framer-hp2jc0 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HuZ35.framer-1lbaiu0, .framer-HuZ35 .framer-d95kyu, .framer-HuZ35 .framer-1y78h7p, .framer-HuZ35 .framer-1fx4s4h, .framer-HuZ35 .framer-1bdgm5c, .framer-HuZ35 .framer-hp2jc0 { gap: 0px; } .framer-HuZ35.framer-1lbaiu0 > *, .framer-HuZ35 .framer-d95kyu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-HuZ35.framer-1lbaiu0 > :first-child, .framer-HuZ35 .framer-d95kyu > :first-child, .framer-HuZ35 .framer-1y78h7p > :first-child, .framer-HuZ35 .framer-1fx4s4h > :first-child, .framer-HuZ35 .framer-1bdgm5c > :first-child, .framer-HuZ35 .framer-hp2jc0 > :first-child { margin-top: 0px; } .framer-HuZ35.framer-1lbaiu0 > :last-child, .framer-HuZ35 .framer-d95kyu > :last-child, .framer-HuZ35 .framer-1y78h7p > :last-child, .framer-HuZ35 .framer-1fx4s4h > :last-child, .framer-HuZ35 .framer-1bdgm5c > :last-child, .framer-HuZ35 .framer-hp2jc0 > :last-child { margin-bottom: 0px; } .framer-HuZ35 .framer-1y78h7p > *, .framer-HuZ35 .framer-hp2jc0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HuZ35 .framer-1fx4s4h > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-HuZ35 .framer-1bdgm5c > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css,\"@media (min-width: 1280px) and (max-width: 1439px) { .framer-HuZ35.framer-1lbaiu0 { width: 1280px; }}\",\"@media (min-width: 810px) and (max-width: 1279px) { .framer-HuZ35.framer-1lbaiu0 { width: 810px; } .framer-HuZ35 .framer-uautqm { grid-template-columns: repeat(2, minmax(50px, 1fr)); }}\",\"@media (max-width: 809px) { .framer-HuZ35.framer-1lbaiu0 { width: 390px; } .framer-HuZ35 .framer-d95kyu { padding: 40px 20px 20px 20px; } .framer-HuZ35 .framer-1y78h7p { padding: 80px 20px 80px 20px; } .framer-HuZ35 .framer-1fx4s4h { gap: 40px; } .framer-HuZ35 .framer-uautqm { grid-template-columns: repeat(1, minmax(50px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HuZ35 .framer-1fx4s4h { gap: 0px; } .framer-HuZ35 .framer-1fx4s4h > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-HuZ35 .framer-1fx4s4h > :first-child { margin-top: 0px; } .framer-HuZ35 .framer-1fx4s4h > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7245\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bDHRcozMs\":{\"layout\":[\"fixed\",\"auto\"]},\"vi2n5mPen\":{\"layout\":[\"fixed\",\"auto\"]},\"VZoQG0fSt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"sbpvbo6ro\":{\"pattern\":\":sbpvbo6ro\",\"name\":\"navbar\"}}\n * @framerResponsiveScreen\n */const Frameru3fjKEcEz=withCSS(Component,css,\"framer-HuZ35\");export default Frameru3fjKEcEz;Frameru3fjKEcEz.displayName=\"Page\";Frameru3fjKEcEz.defaultProps={height:7245,width:1440};addFonts(Frameru3fjKEcEz,[{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\"}]},...NavbarPlaceholderFonts,...ResourcesArticleStoryFonts,...ResourcesArticleTipsTricksFonts,...ResourcesArticleGuideFonts,...ResourcesListCardFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameru3fjKEcEz\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"7245\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bDHRcozMs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vi2n5mPen\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VZoQG0fSt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"sbpvbo6ro\\\":{\\\"pattern\\\":\\\":sbpvbo6ro\\\",\\\"name\\\":\\\"navbar\\\"}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["HEADING_TO_DISPLAY", "SCROLL_MARGIN_TOP", "useStore", "createStore", "handleUseEffect", "store", "observerRef", "visibleHeadings", "setActiveId", "observerOptions", "entries", "entry", "target", "id", "nearestHeading", "closest", "rect", "element", "getComponent", "heading", "type", "index", "activeId", "props", "Component", "isMobile", "variant", "_store_headings_h2ParentIndex", "h2ParentIndex", "findParentH2", "isActiveH3InGroup", "p", "window", "withTableOfContent", "ye", "pe", "ue", "l", "a", "b", "withTableOfContentMobile", "headings", "h3Index", "i", "withContent", "setStore", "newProps", "setNewProps", "formatTableOfContent", "newChildren", "headingIndex", "item", "children", "formattedId", "formatHeading", "newItem", "u", "result", "formattedHeading", "extractText", "child", "OUEByDEY4_exports", "__export", "__FramerMetadata__", "OUEByDEY4_default", "TextWithTruncateFonts", "getFonts", "TextWithTruncate", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ppjZk9Muv", "CQcsVc51n", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerOUEByDEY4", "withCSS", "OUEByDEY4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__", "ResourcesTableOfContentsLinkFonts", "getFonts", "OUEByDEY4_default", "ResourcesTableOfContentsLinkWithTableOfContentWithMappedReactProps1pue9wp", "withMappedReactProps", "withTableOfContent", "OUEByDEY4_exports", "SVGIconFonts", "SVGIcon", "ResourcesTableOfContentsLinkWithTableOfContentMobileWithMappedReactProps1pue9wp", "withTableOfContentMobile", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1cjjeja", "args", "onTap20txw9", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerILu32PLDd", "withCSS", "ILu32PLDd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SVGIconFonts", "getFonts", "SVGIcon", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapqrad2d", "args", "onTap17b0nju", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerQGe5olY3x", "withCSS", "QGe5olY3x_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "SharedBackButtonFonts", "getFonts", "ejyewc2Ha_default", "ResourcesLocalizedArticleLinkFonts", "QGe5olY3x_default", "ResourcesTableOfContentsFonts", "ILu32PLDd_default", "RichTextWithContent", "withContent", "RichText2", "MotionDivTableOverride", "TableOverride", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "prefix", "toResponsiveImage", "convertFromEnum", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "content", "description", "height", "id", "image", "showLocalizationAlert", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_ref5", "_ref6", "u", "x", "createLayoutDependency", "Variants", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UUMEk_5km", "WwaMiS9ib", "bxSuWzrEJ", "OqDnWuuN0", "C2WI9pfGs", "YdsbQ4qBT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "textContent", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Link", "Image2", "getLoadingLazyAtYPosition", "ComponentPresetsProvider", "css", "Framerg68CkqrRm", "withCSS", "g68CkqrRm_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "SharedBackButtonFonts", "getFonts", "ejyewc2Ha_default", "ResourcesLocalizedArticleLinkFonts", "QGe5olY3x_default", "ResourcesTableOfContentsFonts", "ILu32PLDd_default", "RichTextWithContent", "withContent", "RichText2", "MotionDivTableOverride", "TableOverride", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "prefix", "toResponsiveImage", "convertFromEnum", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "content", "description", "height", "id", "image", "showLocalizationAlert", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_ref5", "_ref6", "u", "createLayoutDependency", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UUMEk_5km", "WwaMiS9ib", "bxSuWzrEJ", "mYACSGaU1", "mpdLZfksp", "YdsbQ4qBT", "bxSuWzrEJNhHFO9QSy", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "textContent", "textContent1", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Link", "Image2", "getLoadingLazyAtYPosition", "ComponentPresetsProvider", "css", "FramerkgmjFZnI7", "withCSS", "kgmjFZnI7_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "SharedBackButtonFonts", "getFonts", "ejyewc2Ha_default", "SVGIconFonts", "SVGIcon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "toResponsiveImage", "prefix", "animation", "transition2", "textEffect", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "content", "description", "height", "id", "image", "quote", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_ref5", "_ref6", "u", "createLayoutDependency", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UUMEk_5km", "WwaMiS9ib", "bxSuWzrEJ", "mYACSGaU1", "f6ha2MTz1", "YdsbQ4qBT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "textContent", "textContent1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "RichText2", "Link", "Image2", "getLoadingLazyAtYPosition", "ComponentPresetsProvider", "css", "FramerNhHFO9QSy", "withCSS", "NhHFO9QSy_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "NavbarPlaceholderFonts", "getFonts", "k7gEaxV1g_default", "ResourcesArticleStoryFonts", "NhHFO9QSy_default", "ResourcesArticleTipsTricksFonts", "g68CkqrRm_default", "ResourcesArticleGuideFonts", "kgmjFZnI7_default", "ResourcesListCardFonts", "gDsurGsiP_default", "breakpoints", "serializationHash", "variantClassNames", "equals", "a", "b", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "FZzecOwTD_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "Tct4jY4gS", "B9LuYBzW3", "ZRQw3j8AM", "YJZWnZ5ds", "IQRFvUfaL", "ihQYTITlG", "tvMqp_k3J", "E91Two280", "gZnvHAfSMcXIhn58zf", "IQRFvUfaLcXIhn58zf", "B9LuYBzW3cXIhn58zf", "ZRQw3j8AMcXIhn58zf", "E91Two280cXIhn58zf", "idcXIhn58zf", "gZnvHAfSM", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "elementId", "useRouteElementId", "dynamicRef", "useSiteRefs", "visible", "visible1", "visible2", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "k7gEaxV1g_default", "NhHFO9QSy_default", "g68CkqrRm_default", "kgmjFZnI7_default", "RichText2", "x", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "gDsurGsiP_default", "css", "Frameru3fjKEcEz", "withCSS", "u3fjKEcEz_default", "addFonts", "NavbarPlaceholderFonts", "ResourcesArticleStoryFonts", "ResourcesArticleTipsTricksFonts", "ResourcesArticleGuideFonts", "ResourcesListCardFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
