{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/AALMWn7S3UKeiUHBaNjI/3VZ22Pm6WxdMih7gBi26/Sharesheet.js", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/cSuE5Xh4jS72PkvyeG2y/CTBaLJ4gcdBmrmmkpY0o/Book_Hover.js", "ssg:https://framerusercontent.com/modules/sRTYlJZBR8R4g09Guarg/DNZhtORNlyAsXDdMDOaV/AspectRatioImage_1.js", "ssg:https://framerusercontent.com/modules/zUG0z8hfc4PdvjRLlxkl/dXCO25py7OU3l4S2OcYi/FMxyCbHXh.js", "ssg:https://framerusercontent.com/modules/a7Bjx2llX62Ibk5JtHNi/s5onh2KRNoZAVyKyJWhy/rapBc3aHS.js", "ssg:https://framerusercontent.com/modules/OY6KMCIQigttd8adLsa6/yXtrjtGq4sCwpuWk9omV/wCxEyzVbz.js", "ssg:https://framerusercontent.com/modules/Ga7N4VQgmCRKev54cngU/3H9VqtPSNymv7U2vXY6i/Custom_highlight.js", "ssg:https://framerusercontent.com/modules/4CX2NqmNxgfKJktgl9MM/VQvTo1fKZ6dLbWdkLhYL/Social_share.js", "ssg:https://framerusercontent.com/modules/64OOuNKIFD00EjiRwRvH/tGY8IQFeFBzqusH1ZQOB/componentPresets.js", "ssg:https://framerusercontent.com/modules/XWZ9ahGy43tmLDQqjXF6/f5sS1QIArGbyuvGRXsOg/hize6YqDu.js", "ssg:https://framerusercontent.com/modules/K0gJiP6tqpZKZLRtGK1R/KaPNsfyoBjstDOYQTOai/QRdjrKwXL.js", "ssg:https://framerusercontent.com/modules/PUIMiBVDrmCJgHamqrxi/RmySFQDlel2dh2OZPAMH/T0AQyeGRq.js", "ssg:https://framerusercontent.com/modules/hssCLvAOESHUAe2zeQG6/Msq0rfzco9uiAgJI3lSp/w09yj7g3f.js", "ssg:https://framerusercontent.com/modules/ua10VdeXweaBBP8Kdh30/cgLJJGILdBltvj7rFYmk/zUA4juzMq.js", "ssg:https://framerusercontent.com/modules/O3jyCINZH9DDwooN4jjK/clUfirxEvTnshAVYJcH0/aLM79quze.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";export function withNativeShareSheet(Component){return props=>{if(typeof navigator===\"undefined\"||!navigator.share){return /*#__PURE__*/_jsx(\"p\",{style:{fontSize:14,color:\"rgba(255,255,255,0.5)\",fontFamily:\"'Inter'\"},children:\"This browser doesn't support native share\"});}return /*#__PURE__*/_jsx(Component,{...props,onClick:()=>{navigator.share({title:window.document.title,text:window.document.title,url:window.location.href}).catch(()=>null);}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withNativeShareSheet\":{\"type\":\"reactHoc\",\"name\":\"withNativeShareSheet\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Sharesheet.map", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useHoverStore=createStore({isHovered:false});export const withHoverTrigger=Component=>{return props=>{const[,setHoverStore]=useHoverStore();const handleMouseEnter=()=>setHoverStore({isHovered:true});const handleMouseLeave=()=>setHoverStore({isHovered:false});return /*#__PURE__*/_jsx(Component,{...props,onMouseEnter:handleMouseEnter,onMouseLeave:handleMouseLeave});};};export const withHoverEffect=Component=>{return props=>{const[hoverStore]=useHoverStore();const{style,...rest}=props;return /*#__PURE__*/_jsx(Component,{...rest,as:motion.div,style:{...style,transformOrigin:\"center left\",perspective:\"500px\",transformStyle:\"preserve-3d\"},animate:hoverStore.isHovered?{rotateY:-12,scale:.99,translateX:-1,scaleX:.88,transition:{duration:.4,ease:[.44,0,.56,1]}}:{}});};};\nexport const __FramerMetadata__ = {\"exports\":{\"withHoverEffect\":{\"type\":\"reactHoc\",\"name\":\"withHoverEffect\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHoverTrigger\":{\"type\":\"reactHoc\",\"name\":\"withHoverTrigger\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Book_Hover.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState}from\"react\";/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function AspectRatioImage(props){var _props_style,_props_style1,_props_style2;const{border,shadow}=props;const horizontal=((_props_style=props.style)===null||_props_style===void 0?void 0:_props_style.height)!=undefined;const invalidSize=((_props_style1=props.style)===null||_props_style1===void 0?void 0:_props_style1.height)!=undefined&&((_props_style2=props.style)===null||_props_style2===void 0?void 0:_props_style2.width)!=undefined;const[maxSize,setMaxSize]=useState(null);const radius=props.radiusIsMixed?`${props.topLeft}px ${props.topRight}px ${props.bottomRight}px ${props.bottomLeft}px`:`${props.radius}px`;if(typeof Image!==\"undefined\"){var _props_image;var image=new Image;image.onload=function(){setMaxSize({width:image.width,height:image.height});};image.src=(_props_image=props.image)===null||_props_image===void 0?void 0:_props_image.src;}return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"img\",{src:props.image?props.image.src:\"\",alt:props.image?props.image.alt:\"\",style:{display:\"block\",objectFit:\"contain\",width:invalidSize?\"100%\":horizontal?\"auto\":\"100%\",height:invalidSize?\"100%\":horizontal?\"100%\":\"auto\",maxWidth:props.limitSize&&maxSize?`${maxSize.width}px`:horizontal?\"none\":\"100%\",maxHeight:props.limitSize&&maxSize?`${maxSize.height}px`:horizontal?\"100%\":\"none\",borderRadius:radius,boxShadow:shadow&&`${shadow.x}px ${shadow.y}px ${shadow.blur}px ${shadow.spread}px ${shadow.color}`}}),border&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,borderWidth:border.widthIsMixed?`${border.widthTop}px ${border.widthRight}px ${border.widthBottom}px ${border.widthLeft}px`:`${border.width}px`,borderStyle:border.style,borderColor:border.color,borderRadius:props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`,pointerEvents:\"none\"}})]});}AspectRatioImage.displayName=\"Aspect Ratio Image\";addPropertyControls(AspectRatioImage,{image:{type:ControlType.ResponsiveImage},limitSize:{type:ControlType.Boolean,defaultValue:false,description:\"If yes, the max size = image dimensions in px.\"},radius:{type:ControlType.FusedNumber,defaultValue:0,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"topLeft\",\"topRight\",\"bottomRight\",\"bottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},border:{type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},shadow:{type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.25)\"},x:{type:ControlType.Number,defaultValue:0,displayStepper:true},y:{type:ControlType.Number,defaultValue:2,displayStepper:true},blur:{type:ControlType.Number,defaultValue:4,displayStepper:true},spread:{type:ControlType.Number,defaultValue:0,displayStepper:true}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AspectRatioImage\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AspectRatioImage_1.map", "// Generated by Framer (1119174)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withHoverEffect,withHoverTrigger}from\"https://framerusercontent.com/modules/cSuE5Xh4jS72PkvyeG2y/CTBaLJ4gcdBmrmmkpY0o/Book_Hover.js\";import AspectRatioImage from\"https://framerusercontent.com/modules/sRTYlJZBR8R4g09Guarg/DNZhtORNlyAsXDdMDOaV/AspectRatioImage_1.js\";const AspectRatioImageFonts=getFonts(AspectRatioImage);const MotionDivWithHoverEffect=withHoverEffect(motion.div);const MotionDivWithHoverTrigger=withHoverTrigger(motion.div);const cycleOrder=[\"FPyXdjL9A\"];const serializationHash=\"framer-YsG3g\";const variantClassNames={FPyXdjL9A:\"framer-v-jpc76h\"};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 transitions={default:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"}};const transformTemplate=(_,t)=>`perspective(1200px) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==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 getProps=({backCover,bookCover,height,id,pageColor,width,...props})=>{var _ref,_ref1,_ref2;return{...props,ImKXElYdV:(_ref=pageColor!==null&&pageColor!==void 0?pageColor:props.ImKXElYdV)!==null&&_ref!==void 0?_ref:\"rgb(221, 221, 221)\",luiu7XejK:(_ref1=backCover!==null&&backCover!==void 0?backCover:props.luiu7XejK)!==null&&_ref1!==void 0?_ref1:\"rgb(54, 54, 54)\",xyfzePNMN:(_ref2=bookCover!==null&&bookCover!==void 0?bookCover:props.xyfzePNMN)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/5gIsKlaMmL1xfoTdW7Isch4K7X4.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5gIsKlaMmL1xfoTdW7Isch4K7X4.webp?scale-down-to=512 340w, https://framerusercontent.com/images/5gIsKlaMmL1xfoTdW7Isch4K7X4.webp?scale-down-to=1024 681w, https://framerusercontent.com/images/5gIsKlaMmL1xfoTdW7Isch4K7X4.webp?scale-down-to=2048 1362w, https://framerusercontent.com/images/5gIsKlaMmL1xfoTdW7Isch4K7X4.webp 1703w\"}};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,xyfzePNMN,ImKXElYdV,luiu7XejK,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"FPyXdjL9A\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-YsG3g\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(MotionDivWithHoverTrigger,{...restProps,className:cx(\"framer-jpc76h\",className),\"data-framer-name\":\"Book\",layoutDependency:layoutDependency,layoutId:\"FPyXdjL9A\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x216mx\",\"data-framer-name\":\"Back\",layoutDependency:layoutDependency,layoutId:\"P3UwhObvp\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:8,borderTopLeftRadius:4,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15hxkug\",\"data-framer-name\":\"Left padding\",layoutDependency:layoutDependency,layoutId:\"yJRe9H3X4\",transformTemplate:transformTemplate}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19dubg6\",\"data-framer-name\":\"Back Cover\",layoutDependency:layoutDependency,layoutId:\"vmYQO8wVJ\",style:{backgroundColor:luiu7XejK,borderBottomRightRadius:8,borderTopRightRadius:8,boxShadow:\"0.3010936508871964px 0px 0.24087492070975713px -1.1666666666666665px rgba(0, 0, 0, 0.67591), 1.1442666516217286px 0px 0.9154133212973828px -2.333333333333333px rgba(0, 0, 0, 0.60846), 5px 0px 4px -3.5px rgba(0, 0, 0, 0.3)\"},transformTemplate:transformTemplate}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fojgi1\",\"data-framer-name\":\"Right padding\",layoutDependency:layoutDependency,layoutId:\"zpXRTt710\",transformTemplate:transformTemplate})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sdmmnf\",\"data-framer-name\":\"Page 1\",layoutDependency:layoutDependency,layoutId:\"ePlRCyFaR\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:8,borderTopLeftRadius:4,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hw1p0y\",\"data-border\":true,\"data-framer-name\":\"Page 1\",layoutDependency:layoutDependency,layoutId:\"lH0lbou64\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(171, 171, 171)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:ImKXElYdV,borderBottomRightRadius:8,borderTopRightRadius:8},transformTemplate:transformTemplate}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-feqcad\",\"data-framer-name\":\"Right padding\",layoutDependency:layoutDependency,layoutId:\"qmBwLElLT\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rb0o6k\",\"data-framer-name\":\"Page 2\",layoutDependency:layoutDependency,layoutId:\"SM9_H1tUg\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:8,borderTopLeftRadius:4,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-npcr3x\",\"data-border\":true,\"data-framer-name\":\"Page 2\",layoutDependency:layoutDependency,layoutId:\"rGoCXYo40\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(171, 171, 171)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:ImKXElYdV,borderBottomRightRadius:8,borderTopRightRadius:8},transformTemplate:transformTemplate}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1134umc\",\"data-framer-name\":\"Right padding\",layoutDependency:layoutDependency,layoutId:\"Q90VDcp0_\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s23zv0\",\"data-framer-name\":\"Page 3\",layoutDependency:layoutDependency,layoutId:\"cDl00nQsH\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:8,borderTopLeftRadius:4,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xt7dbk\",\"data-border\":true,\"data-framer-name\":\"Page 3\",layoutDependency:layoutDependency,layoutId:\"DKi9Zdk12\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(171, 171, 171)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:ImKXElYdV,borderBottomRightRadius:8,borderTopRightRadius:8},transformTemplate:transformTemplate}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n0blet\",\"data-framer-name\":\"Right padding\",layoutDependency:layoutDependency,layoutId:\"E5__CoAN3\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iytiuv\",\"data-framer-name\":\"Page 4\",layoutDependency:layoutDependency,layoutId:\"H7s_aXXEY\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:8,borderTopLeftRadius:4,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-i6703a\",\"data-border\":true,\"data-framer-name\":\"Page 4\",layoutDependency:layoutDependency,layoutId:\"H3B6s94B7\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(171, 171, 171)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:ImKXElYdV,borderBottomRightRadius:8,borderTopRightRadius:8},transformTemplate:transformTemplate}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cs5qqo\",\"data-framer-name\":\"Right padding\",layoutDependency:layoutDependency,layoutId:\"zoyXN8iSV\"})]}),/*#__PURE__*/_jsxs(MotionDivWithHoverEffect,{className:\"framer-f1l4jx\",\"data-framer-name\":\"Cover container\",layoutDependency:layoutDependency,layoutId:\"XEdYMJsZC\",transformTemplate:transformTemplate,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fa3rrc\",\"data-framer-name\":\"Ridge\",layoutDependency:layoutDependency,layoutId:\"tNc86SkVF\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:8,borderTopLeftRadius:4,borderTopRightRadius:8,boxShadow:\"0.3010936508871964px 0.6021873017743928px 1.2118785677592498px -0.5px rgba(0, 0, 0, 0.16204), 1.1442666516217286px 2.288533303243457px 4.605584431342058px -1px rgba(0, 0, 0, 0.19577), 5px 10px 20.124611797498105px -1.5px rgba(0, 0, 0, 0.35)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lmwfei\",\"data-framer-name\":\"Padding\",layoutDependency:layoutDependency,layoutId:\"ADQfTWRDV\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ysu3s\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"i3g9X0xQD\",style:{background:\"linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0.4132699275362319%, rgba(255, 255, 255, 0.18) 0.6397192028985507%, rgba(0, 36, 121, 0) 15.000000000000002%, rgba(0, 36, 121, 0) 97.74200016886189%, rgba(255, 255, 255, 0.18) 100%)\",borderBottomLeftRadius:4,borderBottomRightRadius:8,borderTopLeftRadius:4,borderTopRightRadius:8}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jdbpif-container\",\"data-framer-name\":\"Cover\",layoutDependency:layoutDependency,layoutId:\"IyOdM9uD5-container\",name:\"Cover\",children:/*#__PURE__*/_jsx(AspectRatioImage,{bottomLeft:4,bottomRight:8,height:\"100%\",id:\"IyOdM9uD5\",image:toResponsiveImage(xyfzePNMN),layoutId:\"IyOdM9uD5\",limitSize:false,name:\"Cover\",radius:0,radiusIsMixed:true,style:{width:\"100%\"},topLeft:4,topRight:8,width:\"100%\"})})]})]})})})});});const css=['.framer-YsG3g [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YsG3g .framer-p0jthp { display: block; }\",\".framer-YsG3g .framer-jpc76h { align-content: center; align-items: center; cursor: default; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 300px; }\",\".framer-YsG3g .framer-x216mx { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 0px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-YsG3g .framer-15hxkug { flex: none; height: 100%; overflow: visible; position: relative; width: 80%; }\",\".framer-YsG3g .framer-19dubg6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-YsG3g .framer-fojgi1 { flex: none; height: 100%; overflow: visible; position: relative; width: 3%; }\",\".framer-YsG3g .framer-sdmmnf, .framer-YsG3g .framer-rb0o6k, .framer-YsG3g .framer-1s23zv0, .framer-YsG3g .framer-1iytiuv { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: flex-end; left: 0px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-YsG3g .framer-1hw1p0y, .framer-YsG3g .framer-npcr3x, .framer-YsG3g .framer-xt7dbk, .framer-YsG3g .framer-i6703a { flex: none; height: 98%; overflow: visible; position: relative; width: 20%; }\",\".framer-YsG3g .framer-feqcad { flex: none; height: 100%; overflow: hidden; position: relative; width: 6%; }\",\".framer-YsG3g .framer-1134umc { flex: none; height: 100%; overflow: hidden; position: relative; width: 7%; }\",\".framer-YsG3g .framer-1n0blet { flex: none; height: 100%; overflow: hidden; position: relative; width: 8%; }\",\".framer-YsG3g .framer-cs5qqo { flex: none; height: 100%; overflow: hidden; position: relative; width: 9%; }\",\".framer-YsG3g .framer-f1l4jx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-YsG3g .framer-fa3rrc { -webkit-user-select: none; align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 0px; overflow: visible; padding: 0px 0px 0px 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; z-index: 1; }\",\".framer-YsG3g .framer-1lmwfei { flex: none; height: 100%; overflow: visible; position: relative; width: 6%; }\",\".framer-YsG3g .framer-4ysu3s { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-YsG3g .framer-jdbpif-container { flex: none; height: auto; pointer-events: none; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YsG3g .framer-jpc76h, .framer-YsG3g .framer-x216mx, .framer-YsG3g .framer-19dubg6, .framer-YsG3g .framer-sdmmnf, .framer-YsG3g .framer-rb0o6k, .framer-YsG3g .framer-1s23zv0, .framer-YsG3g .framer-1iytiuv, .framer-YsG3g .framer-f1l4jx, .framer-YsG3g .framer-fa3rrc { gap: 0px; } .framer-YsG3g .framer-jpc76h > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-YsG3g .framer-jpc76h > :first-child, .framer-YsG3g .framer-19dubg6 > :first-child { margin-top: 0px; } .framer-YsG3g .framer-jpc76h > :last-child, .framer-YsG3g .framer-19dubg6 > :last-child { margin-bottom: 0px; } .framer-YsG3g .framer-x216mx > *, .framer-YsG3g .framer-sdmmnf > *, .framer-YsG3g .framer-rb0o6k > *, .framer-YsG3g .framer-1s23zv0 > *, .framer-YsG3g .framer-1iytiuv > *, .framer-YsG3g .framer-fa3rrc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-YsG3g .framer-x216mx > :first-child, .framer-YsG3g .framer-sdmmnf > :first-child, .framer-YsG3g .framer-rb0o6k > :first-child, .framer-YsG3g .framer-1s23zv0 > :first-child, .framer-YsG3g .framer-1iytiuv > :first-child, .framer-YsG3g .framer-f1l4jx > :first-child, .framer-YsG3g .framer-fa3rrc > :first-child { margin-left: 0px; } .framer-YsG3g .framer-x216mx > :last-child, .framer-YsG3g .framer-sdmmnf > :last-child, .framer-YsG3g .framer-rb0o6k > :last-child, .framer-YsG3g .framer-1s23zv0 > :last-child, .framer-YsG3g .framer-1iytiuv > :last-child, .framer-YsG3g .framer-f1l4jx > :last-child, .framer-YsG3g .framer-fa3rrc > :last-child { margin-right: 0px; } .framer-YsG3g .framer-19dubg6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-YsG3g .framer-f1l4jx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 451\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"xyfzePNMN\":\"bookCover\",\"ImKXElYdV\":\"pageColor\",\"luiu7XejK\":\"backCover\"}\n * @framerImmutableVariables true\n */const FramerFMxyCbHXh=withCSS(Component,css,\"framer-YsG3g\");export default FramerFMxyCbHXh;FramerFMxyCbHXh.displayName=\"Book\";FramerFMxyCbHXh.defaultProps={height:451,width:300};addPropertyControls(FramerFMxyCbHXh,{xyfzePNMN:{__defaultAssetReference:\"data:framer/asset-reference,5gIsKlaMmL1xfoTdW7Isch4K7X4.webp?originalFilename=lotr+%28Optimized%29.webp&preferredSize=auto\",title:\"Book Cover\",type:ControlType.ResponsiveImage},ImKXElYdV:{defaultValue:\"rgb(221, 221, 221)\",title:\"Page color\",type:ControlType.Color},luiu7XejK:{defaultValue:\"rgb(54, 54, 54)\",title:\"Back Cover\",type:ControlType.Color}});addFonts(FramerFMxyCbHXh,[...AspectRatioImageFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFMxyCbHXh\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"451\",\"framerVariables\":\"{\\\"xyfzePNMN\\\":\\\"bookCover\\\",\\\"ImKXElYdV\\\":\\\"pageColor\\\",\\\"luiu7XejK\\\":\\\"backCover\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"300\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FMxyCbHXh.map", "// Generated by Framer (91d32d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"BGY7qUj1W\",\"J9WwiyrKC\",\"Vi2zU0RF7\",\"jpeWUq6JL\",\"exRTzIH4p\",\"QzM_2vTM6\",\"gtAnwKTzQ\",\"skkLeG6uD\",\"Dx0RggxAa\",\"cDf9IFiNB\",\"CYFP4FUQ3\"];const serializationHash=\"framer-17zRD\";const variantClassNames={BGY7qUj1W:\"framer-v-ct9cq3\",cDf9IFiNB:\"framer-v-1eiha3f\",CYFP4FUQ3:\"framer-v-1g43y2o\",Dx0RggxAa:\"framer-v-183dfpi\",exRTzIH4p:\"framer-v-3kxz8e\",gtAnwKTzQ:\"framer-v-fzaua1\",J9WwiyrKC:\"framer-v-1599x6a\",jpeWUq6JL:\"framer-v-edfvb3\",QzM_2vTM6:\"framer-v-12sh9t9\",skkLeG6uD:\"framer-v-1s1qzgg\",Vi2zU0RF7:\"framer-v-1udd572\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"0.5\":\"J9WwiyrKC\",\"0\":\"BGY7qUj1W\",\"1.5\":\"jpeWUq6JL\",\"1\":\"Vi2zU0RF7\",\"2.5\":\"QzM_2vTM6\",\"2\":\"exRTzIH4p\",\"3.5\":\"skkLeG6uD\",\"3\":\"gtAnwKTzQ\",\"4.5\":\"cDf9IFiNB\",\"4\":\"Dx0RggxAa\",\"5\":\"CYFP4FUQ3\"};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:\"BGY7qUj1W\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"BGY7qUj1W\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ct9cq3\",className,classNames),\"data-framer-name\":\"0\",initial:variant,layoutDependency:layoutDependency,layoutId:\"BGY7qUj1W\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},...addPropertyOverrides({cDf9IFiNB:{\"data-framer-name\":\"4.5\"},CYFP4FUQ3:{\"data-framer-name\":\"5\"},Dx0RggxAa:{\"data-framer-name\":\"4\"},exRTzIH4p:{\"data-framer-name\":\"2\"},gtAnwKTzQ:{\"data-framer-name\":\"3\"},J9WwiyrKC:{\"data-framer-name\":\"0.5\"},jpeWUq6JL:{\"data-framer-name\":\"1.5\"},QzM_2vTM6:{\"data-framer-name\":\"2.5\"},skkLeG6uD:{\"data-framer-name\":\"3.5\"},Vi2zU0RF7:{\"data-framer-name\":\"1\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mbtub7\",\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"F0NJBcmtr\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s0jyzj-container\",layoutDependency:layoutDependency,layoutId:\"MCvx9TasW-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:'var(--token-1bd10905-9e93-4fab-9eb7-e87fd2b3159e, rgb(240, 240, 240)) /* {\"name\":\"Button\"} */',height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"MCvx9TasW\",layoutId:\"MCvx9TasW\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({cDf9IFiNB:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},CYFP4FUQ3:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},Dx0RggxAa:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},exRTzIH4p:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},gtAnwKTzQ:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},J9WwiyrKC:{color:\"rgb(247, 206, 70)\",iconSelection:\"StarHalf\",weight:\"fill\"},jpeWUq6JL:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},QzM_2vTM6:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},skkLeG6uD:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},Vi2zU0RF7:{color:\"rgb(247, 206, 70)\",weight:\"fill\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m8bs04\",\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"EbOOX0AhS\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tgug0p-container\",layoutDependency:layoutDependency,layoutId:\"dnFDNNNAh-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:'var(--token-1bd10905-9e93-4fab-9eb7-e87fd2b3159e, rgb(240, 240, 240)) /* {\"name\":\"Button\"} */',height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"dnFDNNNAh\",layoutId:\"dnFDNNNAh\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({cDf9IFiNB:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},CYFP4FUQ3:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},Dx0RggxAa:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},exRTzIH4p:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},gtAnwKTzQ:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},J9WwiyrKC:{color:\"rgb(247, 206, 70)\"},jpeWUq6JL:{color:\"rgb(247, 206, 70)\",iconSelection:\"StarHalf\",weight:\"fill\"},QzM_2vTM6:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},skkLeG6uD:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},Vi2zU0RF7:{color:\"rgb(247, 206, 70)\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ryc510\",\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"r1SxJPV94\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-oexmie-container\",layoutDependency:layoutDependency,layoutId:\"VeXRaD9DT-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:'var(--token-1bd10905-9e93-4fab-9eb7-e87fd2b3159e, rgb(240, 240, 240)) /* {\"name\":\"Button\"} */',height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"VeXRaD9DT\",layoutId:\"VeXRaD9DT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({cDf9IFiNB:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},CYFP4FUQ3:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},Dx0RggxAa:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},exRTzIH4p:{color:\"rgb(247, 206, 70)\"},gtAnwKTzQ:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},J9WwiyrKC:{color:\"rgb(247, 206, 70)\"},jpeWUq6JL:{color:\"rgb(247, 206, 70)\"},QzM_2vTM6:{color:\"rgb(247, 206, 70)\",iconSelection:\"StarHalf\",weight:\"fill\"},skkLeG6uD:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},Vi2zU0RF7:{color:\"rgb(247, 206, 70)\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o84ai2\",\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"aif3MMrdz\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k7lc22-container\",layoutDependency:layoutDependency,layoutId:\"CgSg6OVK_-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:'var(--token-1bd10905-9e93-4fab-9eb7-e87fd2b3159e, rgb(240, 240, 240)) /* {\"name\":\"Button\"} */',height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"CgSg6OVK_\",layoutId:\"CgSg6OVK_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({cDf9IFiNB:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},CYFP4FUQ3:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},Dx0RggxAa:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},exRTzIH4p:{color:\"rgb(247, 206, 70)\"},gtAnwKTzQ:{color:\"rgb(247, 206, 70)\"},J9WwiyrKC:{color:\"rgb(247, 206, 70)\"},jpeWUq6JL:{color:\"rgb(247, 206, 70)\"},QzM_2vTM6:{color:\"rgb(247, 206, 70)\"},skkLeG6uD:{color:\"rgb(247, 206, 70)\",iconSelection:\"StarHalf\",weight:\"fill\"},Vi2zU0RF7:{color:\"rgb(247, 206, 70)\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hf4axi\",\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"RYAmZZpIu\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10wufse-container\",layoutDependency:layoutDependency,layoutId:\"UXsk_0ejE-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:'var(--token-1bd10905-9e93-4fab-9eb7-e87fd2b3159e, rgb(240, 240, 240)) /* {\"name\":\"Button\"} */',height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"UXsk_0ejE\",layoutId:\"UXsk_0ejE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({cDf9IFiNB:{color:\"rgb(247, 206, 70)\",iconSelection:\"StarHalf\",weight:\"fill\"},CYFP4FUQ3:{color:\"rgb(247, 206, 70)\",weight:\"fill\"},Dx0RggxAa:{color:\"rgb(247, 206, 70)\"},exRTzIH4p:{color:\"rgb(247, 206, 70)\"},gtAnwKTzQ:{color:\"rgb(247, 206, 70)\"},J9WwiyrKC:{color:\"rgb(247, 206, 70)\"},jpeWUq6JL:{color:\"rgb(247, 206, 70)\"},QzM_2vTM6:{color:\"rgb(247, 206, 70)\"},skkLeG6uD:{color:\"rgb(247, 206, 70)\"},Vi2zU0RF7:{color:\"rgb(247, 206, 70)\"}},baseVariant,gestureVariant)})})})]})})});});const css=['.framer-17zRD[data-border=\"true\"]::after, .framer-17zRD [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-17zRD.framer-v3ms9c, .framer-17zRD .framer-v3ms9c { display: block; }\",\".framer-17zRD.framer-ct9cq3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: 16px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-17zRD .framer-1mbtub7, .framer-17zRD .framer-m8bs04, .framer-17zRD .framer-ryc510, .framer-17zRD .framer-o84ai2, .framer-17zRD .framer-1hf4axi { aspect-ratio: 1 / 1; flex: none; height: 100%; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 16px); }\",\".framer-17zRD .framer-s0jyzj-container, .framer-17zRD .framer-1tgug0p-container, .framer-17zRD .framer-oexmie-container, .framer-17zRD .framer-1k7lc22-container, .framer-17zRD .framer-10wufse-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-17zRD.framer-ct9cq3 { gap: 0px; } .framer-17zRD.framer-ct9cq3 > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-17zRD.framer-ct9cq3 > :first-child { margin-left: 0px; } .framer-17zRD.framer-ct9cq3 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 16\n * @framerIntrinsicWidth 88\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"J9WwiyrKC\":{\"layout\":[\"auto\",\"fixed\"]},\"Vi2zU0RF7\":{\"layout\":[\"auto\",\"fixed\"]},\"jpeWUq6JL\":{\"layout\":[\"auto\",\"fixed\"]},\"exRTzIH4p\":{\"layout\":[\"auto\",\"fixed\"]},\"QzM_2vTM6\":{\"layout\":[\"auto\",\"fixed\"]},\"gtAnwKTzQ\":{\"layout\":[\"auto\",\"fixed\"]},\"skkLeG6uD\":{\"layout\":[\"auto\",\"fixed\"]},\"Dx0RggxAa\":{\"layout\":[\"auto\",\"fixed\"]},\"cDf9IFiNB\":{\"layout\":[\"auto\",\"fixed\"]},\"CYFP4FUQ3\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerrapBc3aHS=withCSS(Component,css,\"framer-17zRD\");export default FramerrapBc3aHS;FramerrapBc3aHS.displayName=\"Library/Star Rating\";FramerrapBc3aHS.defaultProps={height:16,width:88};addPropertyControls(FramerrapBc3aHS,{variant:{options:[\"BGY7qUj1W\",\"J9WwiyrKC\",\"Vi2zU0RF7\",\"jpeWUq6JL\",\"exRTzIH4p\",\"QzM_2vTM6\",\"gtAnwKTzQ\",\"skkLeG6uD\",\"Dx0RggxAa\",\"cDf9IFiNB\",\"CYFP4FUQ3\"],optionTitles:[\"0\",\"0.5\",\"1\",\"1.5\",\"2\",\"2.5\",\"3\",\"3.5\",\"4\",\"4.5\",\"5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrapBc3aHS,[...PhosphorFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrapBc3aHS\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"88\",\"framerIntrinsicHeight\":\"16\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"J9WwiyrKC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Vi2zU0RF7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"jpeWUq6JL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"exRTzIH4p\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"QzM_2vTM6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"gtAnwKTzQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"skkLeG6uD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Dx0RggxAa\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"cDf9IFiNB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"CYFP4FUQ3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rapBc3aHS.map", "// Generated by Framer (4f5e97b)\nimport{jsx as e}from\"react/jsx-runtime\";import{addFonts as r,addPropertyControls as t,cx as a,getFonts as o,getPropertyControls as i,useLocaleInfo as n,useVariantState as l,withCSS as d}from\"framer\";import{LayoutGroup as s,motion as f,MotionConfigContext as c}from\"framer-motion\";import*as m from\"react\";import{Icon as p}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";let g=o(p),h=i(p),u={WWXrSWLqO:{hover:!0}},b=[\"WWXrSWLqO\"],v=\"framer-4YbIq\",y={WWXrSWLqO:\"framer-v-2gtvg4\"};function x(e,...r){let t={};return null==r||r.forEach(r=>r&&Object.assign(t,e[r])),t;}let w={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},W=({value:r,children:t})=>{let a=m.useContext(c),o=null!=r?r:a.transition,i=m.useMemo(()=>({...a,transition:o}),[JSON.stringify(o)]);return /*#__PURE__*/e(c.Provider,{value:i,children:t});},q=({height:e,icon:r,id:t,width:a,...o})=>{var i;return{...o,pkAApiyH6:null!==(i=null!=r?r:o.pkAApiyH6)&&void 0!==i?i:\"TwitterLogo\"};},S=(e,r)=>r.join(\"-\")+e.layoutDependency,I=/*#__PURE__*/m.forwardRef(function(r,t){let{activeLocale:o}=n(),{style:i,className:d,layoutId:c,variant:g,pkAApiyH6:h,...v}=q(r),{baseVariant:I,classNames:H,gestureVariant:k,setGestureState:Y,setVariant:L,transition:j,variants:O}=l({cycleOrder:b,defaultVariant:\"WWXrSWLqO\",enabledGestures:u,transitions:w,variant:g,variantClassNames:y}),T=S(r,O),A=m.useRef(null),C=m.useId();return /*#__PURE__*/e(s,{id:null!=c?c:C,children:/*#__PURE__*/e(f.div,{initial:g,animate:O,onHoverStart:()=>Y({isHovered:!0}),onHoverEnd:()=>Y({isHovered:!1}),onTapStart:()=>Y({isPressed:!0}),onTap:()=>Y({isPressed:!1}),onTapCancel:()=>Y({isPressed:!1}),className:a(\"framer-4YbIq\",...[],H),style:{display:\"contents\"},children:/*#__PURE__*/e(W,{value:j,children:/*#__PURE__*/e(f.div,{...v,className:a(\"framer-2gtvg4\",d),\"data-framer-name\":\"Variant 1\",layoutDependency:T,layoutId:\"WWXrSWLqO\",ref:null!=t?t:A,style:{...i},...x({\"WWXrSWLqO-hover\":{\"data-framer-name\":void 0}},I,k),children:/*#__PURE__*/e(f.div,{className:\"framer-aejdpy-container\",layoutDependency:T,layoutId:\"rkrC4eQKH-container\",children:/*#__PURE__*/e(p,{color:'var(--token-ab23ab0b-6cf9-4af2-a248-e2b83291b328, rgb(113, 113, 113)) /* {\"name\":\"Soft Text\"} */',height:\"100%\",iconSearch:\"House\",iconSelection:h,id:\"rkrC4eQKH\",layoutId:\"rkrC4eQKH\",mirrored:!1,selectByList:!0,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...x({\"WWXrSWLqO-hover\":{color:'var(--token-d6ad37d2-83fc-41f7-bead-e0c8dc95e855, rgb(22, 22, 22)) /* {\"name\":\"Default Text\"} */',weight:\"fill\"}},I,k)})})})})})});}),H=['.framer-4YbIq [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4YbIq .framer-1max5v4 { display: block; }\",\".framer-4YbIq .framer-2gtvg4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-4YbIq .framer-aejdpy-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4YbIq .framer-2gtvg4 { gap: 0px; } .framer-4YbIq .framer-2gtvg4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4YbIq .framer-2gtvg4 > :first-child { margin-left: 0px; } .framer-4YbIq .framer-2gtvg4 > :last-child { margin-right: 0px; } }\"],k=d(I,H,\"framer-4YbIq\");export default k;k.displayName=\"Social Links/Blog Share\",k.defaultProps={height:20,width:20},t(k,{pkAApiyH6:(null==h?void 0:h.iconSelection)&&{...h.iconSelection,defaultValue:\"TwitterLogo\",hidden:void 0,title:\"Icon\"}}),r(k,[...g]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwCxEyzVbz\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"20\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RA6MWRvEi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"20\",\"framerVariables\":\"{\\\"pkAApiyH6\\\":\\\"icon\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wCxEyzVbz.map", "import{jsx as r,jsxs as s,Fragment as e}from\"react/jsx-runtime\";let t=\"#161616\",o=\"#FFCC00\",c=`\n  .overrrides-custom-cursor::selection, .overrrides-custom-cursor *::selection {\n    color: #161616 !important;\n    background: #FFCC00 !important;\n  }\n`;export function withCustomTextHighlight(t){return o=>/*#__PURE__*/s(e,{children:[/*#__PURE__*/r(\"style\",{children:c}),/*#__PURE__*/r(t,{...o,className:`overrrides-custom-cursor ${o.className}`})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"withCustomTextHighlight\":{\"type\":\"reactHoc\",\"name\":\"withCustomTextHighlight\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Custom_highlight.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";export function Twitter_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title)// This will run only on the client side\n;},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://twitter.com/intent/tweet?text=${encodeURIComponent(`${pageTitle}. Read it here:`)}&url=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}`);}});};}export function Facebook_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title)// This will run only on the client side\n;},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}&quote=${encodeURIComponent(`Check out this awesome site \"${pageTitle}\" on the Framer gallery. #madewithframer`)}`);}});};}export function LinkedIn_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title)// This will run only on the client side\n;},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://www.linkedin.com/shareArticle?mini=true&url=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}&title=${encodeURIComponent(pageTitle)}&source=framer.com`);},style:{...props.style,cursor:\"pointer\"}});};}export function Whatsapp_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title)// This will run only on the client side\n;},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://api.whatsapp.com/send?text=${encodeURIComponent(`Check out this link: ${(_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href}`)}`);}});};}export function Email_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title)// This will run only on the client side\n;},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;const subject=encodeURIComponent(\"Check out this link!\");const body=encodeURIComponent(`Hi,\n\nI wanted to share this link with you: ${(_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href}`);window.open(`mailto:?subject=${subject}&body=${body}`);}});};}export function Clipboard_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title)// This will run only on the client side\n;},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{const textField=document.createElement(\"textarea\");textField.innerText=window.location.href;document.body.appendChild(textField);textField.select();document.execCommand(\"copy\");textField.remove();alert(\"URL copied to clipboard!\");}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"LinkedIn_Share\":{\"type\":\"reactHoc\",\"name\":\"LinkedIn_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Email_Share\":{\"type\":\"reactHoc\",\"name\":\"Email_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Facebook_Share\":{\"type\":\"reactHoc\",\"name\":\"Facebook_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Whatsapp_Share\":{\"type\":\"reactHoc\",\"name\":\"Whatsapp_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Clipboard_Share\":{\"type\":\"reactHoc\",\"name\":\"Clipboard_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Twitter_Share\":{\"type\":\"reactHoc\",\"name\":\"Twitter_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Social_share.map", "// Generated by Framer (f082bd6)\nexport const props={D6qBsO06f:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,theme:\"framerDark\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15},fyuAAI1d3:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:false,isRed:false,topLeftRadius:0,topRightRadius:0}};export const fonts={D6qBsO06f:[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-KGny5 .framer-styles-preset-1khm1kk {  }\"];export const className=\"framer-KGny5\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Italic\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{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\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-3PQGn .framer-styles-preset-15chydk { --framer-blockquote-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-size: 18px; --framer-blockquote-font-style: italic; --framer-blockquote-font-style-bold: normal; --framer-blockquote-font-style-bold-italic: italic; --framer-blockquote-font-style-italic: italic; --framer-blockquote-font-weight: 400; --framer-blockquote-font-weight-bold: 700; --framer-blockquote-font-weight-bold-italic: 700; --framer-blockquote-font-weight-italic: 400; --framer-blockquote-letter-spacing: 0em; --framer-blockquote-line-height: 2em; --framer-blockquote-paragraph-spacing: 20px; --framer-blockquote-text-color: #999999; --framer-blockquote-text-stroke-color: initial; --framer-blockquote-text-stroke-width: initial; --framer-font-open-type-features: normal; padding: 0px 0px 0px 24px; position: relative; }','.framer-3PQGn .framer-styles-preset-15chydk::before { background-color: #ddd; border-radius: 2px; content: \" \"; display: block; height: 100%; left: 0px; position: absolute; top: 0px; width: 4px; }'];export const className=\"framer-3PQGn\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[];export const css=['.framer-Jwwhh .framer-styles-preset-o2opn3:not(.rich-text-wrapper), .framer-Jwwhh .framer-styles-preset-o2opn3.rich-text-wrapper h5 { --framer-font-family: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-Jwwhh\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore as t}from\"framer\";t.loadWebFontsFromSelectors([\"GF;Fragment Mono-italic\"]);export const fonts=[{family:\"Fragment Mono\",moduleAsset:{localModuleIdentifier:\"local-module:css/w09yj7g3f:default\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iC16K5wfMRRjxp0DA6-2CLnB4ZHg6cN71URtQ.ttf\"},style:\"italic\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iC16K5wfMRRjxp0DA6-2CLnB4ZHg6cN71URtQ.ttf\",weight:\"400\"}];export const css=['.framer-2xv5j .framer-styles-preset-sspzcu { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: italic; --framer-code-font-weight: 400; --framer-code-text-color: var(--token-ab23ab0b-6cf9-4af2-a248-e2b83291b328, #717171) /* {\"name\":\"Soft Text\"} */; --framer-font-size-scale: 0.8; background-color: var(--token-0ed8d650-f1e1-45b2-ab63-b80d7953b21f, #fdfdfd) /* {\"name\":\"Light Highlight Background\"} */; padding-bottom: 0em; padding-left: 0em; padding-right: 0em; padding-top: 0em; }'];export const className=\"framer-2xv5j\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[];export const css=['.framer-gW7Hf .framer-styles-preset-nbe2og:not(.rich-text-wrapper), .framer-gW7Hf .framer-styles-preset-nbe2og.rich-text-wrapper h6 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 7px; --framer-text-alignment: start; --framer-text-color: var(--token-ab23ab0b-6cf9-4af2-a248-e2b83291b328, #717171); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-gW7Hf .framer-styles-preset-nbe2og:not(.rich-text-wrapper), .framer-gW7Hf .framer-styles-preset-nbe2og.rich-text-wrapper h6 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 6px; --framer-text-alignment: start; --framer-text-color: var(--token-ab23ab0b-6cf9-4af2-a248-e2b83291b328, #717171); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-gW7Hf .framer-styles-preset-nbe2og:not(.rich-text-wrapper), .framer-gW7Hf .framer-styles-preset-nbe2og.rich-text-wrapper h6 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 6px; --framer-text-alignment: start; --framer-text-color: var(--token-ab23ab0b-6cf9-4af2-a248-e2b83291b328, #717171); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-gW7Hf\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Link,NotFoundError,PathVariablesContext,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{withNativeShareSheet}from\"https://framerusercontent.com/modules/AALMWn7S3UKeiUHBaNjI/3VZ22Pm6WxdMih7gBi26/Sharesheet.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import PhoneAndTabletMenuNavigation from\"#framer/local/canvasComponent/eApJzzV_S/eApJzzV_S.js\";import Book from\"#framer/local/canvasComponent/FMxyCbHXh/FMxyCbHXh.js\";import LibraryStarRating from\"#framer/local/canvasComponent/rapBc3aHS/rapBc3aHS.js\";import MenuNavigation from\"#framer/local/canvasComponent/szQI7F8P_/szQI7F8P_.js\";import SocialLinksBlogShare,*as SocialLinksBlogShareInfo from\"#framer/local/canvasComponent/wCxEyzVbz/wCxEyzVbz.js\";import{withCustomTextHighlight}from\"#framer/local/codeFile/j9FzTxq/Custom_highlight.js\";import{Clipboard_Share,Email_Share,LinkedIn_Share,Twitter_Share}from\"#framer/local/codeFile/hBtJUNh/Social_share.js\";import Posts,{enumToDisplayNameFunctions}from\"#framer/local/collection/CxfCH_sPM/CxfCH_sPM.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle9 from\"#framer/local/css/hize6YqDu/hize6YqDu.js\";import*as sharedStyle from\"#framer/local/css/IMSIerJAL/IMSIerJAL.js\";import*as sharedStyle8 from\"#framer/local/css/QRdjrKwXL/QRdjrKwXL.js\";import*as sharedStyle6 from\"#framer/local/css/rGlbfD0L2/rGlbfD0L2.js\";import*as sharedStyle12 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle1 from\"#framer/local/css/SlQ4obNqd/SlQ4obNqd.js\";import*as sharedStyle7 from\"#framer/local/css/SVm8J4GAV/SVm8J4GAV.js\";import*as sharedStyle11 from\"#framer/local/css/sX9iIdq_w/sX9iIdq_w.js\";import*as sharedStyle4 from\"#framer/local/css/T0AQyeGRq/T0AQyeGRq.js\";import*as sharedStyle3 from\"#framer/local/css/VqSj0PuEv/VqSj0PuEv.js\";import*as sharedStyle10 from\"#framer/local/css/w09yj7g3f/w09yj7g3f.js\";import*as sharedStyle5 from\"#framer/local/css/zUA4juzMq/zUA4juzMq.js\";import*as sharedStyle2 from\"#framer/local/css/zzmEy9rQI/zzmEy9rQI.js\";import metadataProvider from\"#framer/local/webPageMetadata/aLM79quze/aLM79quze.js\";const RichTextWithCustomTextHighlight=withCustomTextHighlight(RichText);const SocialLinksBlogShareFonts=getFonts(SocialLinksBlogShare);const SocialLinksBlogShareTwitter_ShareWithMappedReactProps1sxhkw0=withMappedReactProps(Twitter_Share(SocialLinksBlogShare),SocialLinksBlogShareInfo);const SocialLinksBlogShareLinkedIn_ShareWithMappedReactProps1sxhkw0=withMappedReactProps(LinkedIn_Share(SocialLinksBlogShare),SocialLinksBlogShareInfo);const SocialLinksBlogShareEmail_ShareWithMappedReactProps1sxhkw0=withMappedReactProps(Email_Share(SocialLinksBlogShare),SocialLinksBlogShareInfo);const SocialLinksBlogShareClipboard_ShareWithMappedReactProps1sxhkw0=withMappedReactProps(Clipboard_Share(SocialLinksBlogShare),SocialLinksBlogShareInfo);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithNativeShareSheet=withNativeShareSheet(motion.div);const BookFonts=getFonts(Book);const LibraryStarRatingFonts=getFonts(LibraryStarRating);const MenuNavigationFonts=getFonts(MenuNavigation);const PhoneAndTabletMenuNavigationFonts=getFonts(PhoneAndTabletMenuNavigation);const breakpoints={pGi5LvDZU:\"(min-width: 1200px)\",SbFFYHGQ2:\"(min-width: 560px) and (max-width: 809px)\",vVTU6oemV:\"(min-width: 810px) and (max-width: 1199px)\",xg_Q7IHV7:\"(max-width: 559px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-iE5tO\";const variantClassNames={pGi5LvDZU:\"framer-v-14elyty\",SbFFYHGQ2:\"framer-v-1ilwyll\",vVTU6oemV:\"framer-v-14m2bl7\",xg_Q7IHV7:\"framer-v-1uodlwh\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"oBQ6iesCd\":return true;default:return false;}};const toBoolean=value=>{return Boolean(value);};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={backgroundColor:'var(--token-1bd10905-9e93-4fab-9eb7-e87fd2b3159e, rgb(240, 240, 240)) /* {\"name\":\"Button\"} */',opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const convertFromEnum1=(value,activeLocale)=>{switch(value){case\"NpQlvnYrX\":return true;default:return false;}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const negate=value=>{return!value;};const convertFromEnum2=(value,activeLocale)=>{switch(value){case\"VuILEKVY8\":return\"BGY7qUj1W\";case\"BGBtyQP6b\":return\"J9WwiyrKC\";case\"uiCTx4HrN\":return\"Vi2zU0RF7\";case\"K3mkollYY\":return\"jpeWUq6JL\";case\"qCtAdo8zD\":return\"exRTzIH4p\";case\"J1NFUKZHn\":return\"QzM_2vTM6\";case\"ha2DAxQ4R\":return\"gtAnwKTzQ\";case\"jIo0rznhw\":return\"skkLeG6uD\";case\"nFZ_G5ReX\":return\"Dx0RggxAa\";case\"Ch2gibimP\":return\"cDf9IFiNB\";case\"epJ51pqq8\":return\"CYFP4FUQ3\";default:return\"BGY7qUj1W\";}};const convertFromEnum3=(value,activeLocale)=>{switch(value){case\"vBY50eTEp\":return\"rgb(247, 206, 70)\";case\"quEdE9I6T\":return\"rgb(101, 196, 102)\";case\"W4OdfHnHU\":return\"rgb(89, 171, 225)\";case\"SMgR4opCy\":return\"rgb(235, 68, 90)\";case\"BYOw9dCCq\":return\"rgb(241, 154, 55)\";case\"onH19XkSK\":return'var(--token-1bd10905-9e93-4fab-9eb7-e87fd2b3159e, rgb(240, 240, 240)) /* {\"name\":\"Button\"} */';default:return'var(--token-1bd10905-9e93-4fab-9eb7-e87fd2b3159e, rgb(240, 240, 240)) /* {\"name\":\"Button\"} */';}};const toString=value=>{return typeof value===\"string\"?value:String(value);};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Tablet - Narrow\":\"SbFFYHGQ2\",Desktop:\"pGi5LvDZU\",Phone:\"xg_Q7IHV7\",Tablet:\"vVTU6oemV\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pGi5LvDZU\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"aLM79quze\",data:Posts,type:\"Collection\"},select:[{collection:\"aLM79quze\",name:\"OZfx4CV4q\",type:\"Identifier\"},{collection:\"aLM79quze\",name:\"BJEkvQzgd\",type:\"Identifier\"},{collection:\"aLM79quze\",name:\"r4HB01405\",type:\"Identifier\"},{collection:\"aLM79quze\",name:\"msNvTGDLt\",type:\"Identifier\"},{collection:\"aLM79quze\",name:\"TEDIR6JcG\",type:\"Identifier\"},{collection:\"aLM79quze\",name:\"TSh8JKZrH\",type:\"Identifier\"},{collection:\"aLM79quze\",name:\"b5rok1CsT\",type:\"Identifier\"},{collection:\"aLM79quze\",name:\"ni7fLnNeb\",type:\"Identifier\"},{collection:\"aLM79quze\",name:\"dZV2U6qnJ\",type:\"Identifier\"},{collection:\"aLM79quze\",name:\"pIQRbPUCA\",type:\"Identifier\"},{collection:\"aLM79quze\",name:\"mDdWXpgWz\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"aLM79quze\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,BJEkvQzgd=getFromCurrentRouteData(\"BJEkvQzgd\"),r4HB01405=getFromCurrentRouteData(\"r4HB01405\")??\"\",mDdWXpgWz=getFromCurrentRouteData(\"mDdWXpgWz\"),pIQRbPUCA=getFromCurrentRouteData(\"pIQRbPUCA\")??\"\",XoQFVXpgTlGr1m8528,r4HB01405lGr1m8528,idlGr1m8528,OZfx4CV4q=getFromCurrentRouteData(\"OZfx4CV4q\")??0,XoQFVXpgTuFVM6f_QO,r4HB01405uFVM6f_QO,iduFVM6f_QO,ni7fLnNeb=getFromCurrentRouteData(\"ni7fLnNeb\"),b5rok1CsT=getFromCurrentRouteData(\"b5rok1CsT\"),msNvTGDLt=getFromCurrentRouteData(\"msNvTGDLt\")??\"\",TEDIR6JcG=getFromCurrentRouteData(\"TEDIR6JcG\"),TSh8JKZrH=getFromCurrentRouteData(\"TSh8JKZrH\")??\"\",dZV2U6qnJ=getFromCurrentRouteData(\"dZV2U6qnJ\")??\"\",XoQFVXpgTesmzG7Etk,r4HB01405esmzG7Etk,idesmzG7Etk,XoQFVXpgTIAnLPpyuP,r4HB01405IAnLPpyuP,idIAnLPpyuP,...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,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const visible=toBoolean(convertFromEnum(BJEkvQzgd,activeLocale));const activeLocaleCode=useLocaleCode();const textContent=toDateString(mDdWXpgWz,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const visible1=toBoolean(convertFromEnum1(BJEkvQzgd,activeLocale));const visible2=negate(equals(b5rok1CsT,\"VuILEKVY8\"));const fillColor=toString(convertFromEnum3(TEDIR6JcG,activeLocale));const textContent1=enumToDisplayNameFunctions[\"TEDIR6JcG\"]?.(TEDIR6JcG,activeLocale);const visible3=isSet(pIQRbPUCA);const isDisplayed=()=>{if(!isBrowser())return true;if([\"vVTU6oemV\",\"SbFFYHGQ2\",\"xg_Q7IHV7\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"vVTU6oemV\",\"SbFFYHGQ2\",\"xg_Q7IHV7\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"pGi5LvDZU\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-14elyty\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s51pwv\",\"data-framer-name\":\"Span\",children:[visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bri1za\",\"data-framer-name\":\"Blog Post\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-usq2bk\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5ta1xt\",\"data-styles-preset\":\"IMSIerJAL\",children:\"Test blog post\"})}),className:\"framer-16eqc5m\",fonts:[\"Inter\"],text:r4HB01405,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SbFFYHGQ2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-ab23ab0b-6cf9-4af2-a248-e2b83291b328, rgb(113, 113, 113))\",\"--framer-text-transform\":\"uppercase\"},children:\"Oct 29, 2023\"})})},vVTU6oemV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-ab23ab0b-6cf9-4af2-a248-e2b83291b328, rgb(113, 113, 113))\",\"--framer-text-transform\":\"uppercase\"},children:\"Oct 29, 2023\"})})},xg_Q7IHV7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-ab23ab0b-6cf9-4af2-a248-e2b83291b328, rgb(113, 113, 113))\",\"--framer-text-transform\":\"uppercase\"},children:\"Oct 29, 2023\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-ab23ab0b-6cf9-4af2-a248-e2b83291b328, rgb(113, 113, 113))\",\"--framer-text-transform\":\"uppercase\"},children:\"Oct 27, 2023\"})}),className:\"framer-1otcdlb\",fonts:[\"Inter-Medium\"],text:textContent,verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"fyuAAI1d3\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"D6qBsO06f\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SbFFYHGQ2:{stylesPresetsClassNames:{a:\"framer-styles-preset-jhkk6m\",blockquote:\"framer-styles-preset-15chydk\",code:\"framer-styles-preset-sspzcu\",h1:\"framer-styles-preset-1x2nzm1\",h2:\"framer-styles-preset-5ta1xt\",h3:\"framer-styles-preset-1e0to9i\",h4:\"framer-styles-preset-j4i0l5\",h5:\"framer-styles-preset-o2opn3\",h6:\"framer-styles-preset-nbe2og\",img:\"framer-styles-preset-1khm1kk\",p:\"framer-styles-preset-1md0jqx\"}},vVTU6oemV:{stylesPresetsClassNames:{a:\"framer-styles-preset-jhkk6m\",blockquote:\"framer-styles-preset-15chydk\",code:\"framer-styles-preset-sspzcu\",h1:\"framer-styles-preset-1x2nzm1\",h2:\"framer-styles-preset-5ta1xt\",h3:\"framer-styles-preset-1e0to9i\",h4:\"framer-styles-preset-j4i0l5\",h5:\"framer-styles-preset-o2opn3\",h6:\"framer-styles-preset-nbe2og\",img:\"framer-styles-preset-1khm1kk\",p:\"framer-styles-preset-1md0jqx\"}},xg_Q7IHV7:{stylesPresetsClassNames:{a:\"framer-styles-preset-jhkk6m\",blockquote:\"framer-styles-preset-15chydk\",code:\"framer-styles-preset-sspzcu\",h1:\"framer-styles-preset-1x2nzm1\",h2:\"framer-styles-preset-5ta1xt\",h3:\"framer-styles-preset-1e0to9i\",h4:\"framer-styles-preset-j4i0l5\",h5:\"framer-styles-preset-o2opn3\",h6:\"framer-styles-preset-nbe2og\",img:\"framer-styles-preset-1khm1kk\",p:\"framer-styles-preset-1md0jqx\"}}},children:/*#__PURE__*/_jsx(RichTextWithCustomTextHighlight,{__fromCanvasComponent:true,children:pIQRbPUCA,className:\"framer-1si8uax\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-jhkk6m\",blockquote:\"framer-styles-preset-15chydk\",h1:\"framer-styles-preset-1x2nzm1\",h2:\"framer-styles-preset-5ta1xt\",h3:\"framer-styles-preset-1e0to9i\",h4:\"framer-styles-preset-j4i0l5\",h5:\"framer-styles-preset-o2opn3\",h6:\"framer-styles-preset-nbe2og\",img:\"framer-styles-preset-1khm1kk\",p:\"framer-styles-preset-1md0jqx\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o4sji0\",\"data-framer-name\":\"Social Share\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ukf5k5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-ab23ab0b-6cf9-4af2-a248-e2b83291b328, rgb(113, 113, 113))\",\"--framer-text-transform\":\"uppercase\"},children:\"Share\"})}),className:\"framer-11eroto\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wyee7q\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nhlc1o-container\",children:/*#__PURE__*/_jsx(SocialLinksBlogShareTwitter_ShareWithMappedReactProps1sxhkw0,{height:\"100%\",id:\"Qt0gxiyho\",layoutId:\"Qt0gxiyho\",pkAApiyH6:\"TwitterLogo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aiol2o-container\",children:/*#__PURE__*/_jsx(SocialLinksBlogShareLinkedIn_ShareWithMappedReactProps1sxhkw0,{height:\"100%\",id:\"Amn26eHFu\",layoutId:\"Amn26eHFu\",pkAApiyH6:\"LinkedinLogo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ngt3x9-container\",children:/*#__PURE__*/_jsx(SocialLinksBlogShareEmail_ShareWithMappedReactProps1sxhkw0,{height:\"100%\",id:\"T426AgvJX\",layoutId:\"T426AgvJX\",pkAApiyH6:\"EnvelopeSimple\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lirdd1-container\",children:/*#__PURE__*/_jsx(SocialLinksBlogShareClipboard_ShareWithMappedReactProps1sxhkw0,{height:\"100%\",id:\"jpGP4rWg2\",layoutId:\"jpGP4rWg2\",pkAApiyH6:\"Link\",width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivWithNativeShareSheet,{className:\"framer-1al3pot\",\"data-framer-name\":\"Product Page/Share\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lpun7z-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0b98ea98-d235-4390-a317-0256aed5918f, rgb(102, 102, 102))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Export\",id:\"L6KmStnly\",layoutId:\"L6KmStnly\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gjix5e\",\"data-framer-name\":\"Navigation\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qJJvPdg8L\"},nodeId:\"GIGeS3eZU\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"Back to all posts\",className:\"framer-1f9dizj framer-h7f7wv\",\"data-border\":true,whileHover:animation,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-f58a2t\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kgx1kl-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d6ad37d2-83fc-41f7-bead-e0c8dc95e855, rgb(22, 22, 22))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowBendUpLeft\",id:\"f9UpqbYyp\",layoutId:\"f9UpqbYyp\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w5ey0d\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u1wg5p\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"lGr1m8528\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"lGr1m8528\",name:\"XoQFVXpgT\",type:\"Identifier\"},{collection:\"lGr1m8528\",name:\"r4HB01405\",type:\"Identifier\"},{collection:\"lGr1m8528\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"lGr1m8528\",name:\"BJEkvQzgd\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"oBQ6iesCd\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"lGr1m8528\",name:\"OZfx4CV4q\",type:\"Identifier\"},operator:\"<\",right:{type:\"LiteralValue\",value:OZfx4CV4q},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idlGr1m8528,r4HB01405:r4HB01405lGr1m8528,XoQFVXpgT:XoQFVXpgTlGr1m8528},index)=>{XoQFVXpgTlGr1m8528??=\"\";r4HB01405lGr1m8528??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`lGr1m8528-${idlGr1m8528}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{XoQFVXpgT:XoQFVXpgTlGr1m8528},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{XoQFVXpgT:XoQFVXpgTlGr1m8528},webPageId:\"aLM79quze\"},nodeId:\"xeyM4lMnK\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-4t2vnq framer-h7f7wv\",\"data-border\":true,whileHover:animation,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dpm7u6\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1152iqv-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d6ad37d2-83fc-41f7-bead-e0c8dc95e855, rgb(22, 22, 22))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretLeft\",id:\"pyNdKHDy_\",layoutId:\"pyNdKHDy_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1md0jqx\",\"data-styles-preset\":\"rGlbfD0L2\",children:\"Title\"})}),className:\"framer-fgizb5\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:r4HB01405lGr1m8528,verticalAlignment:\"top\",withExternalLayout:true})]})})})})},idlGr1m8528);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o62o6l\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"uFVM6f_QO\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"uFVM6f_QO\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"uFVM6f_QO\",name:\"XoQFVXpgT\",type:\"Identifier\"},{collection:\"uFVM6f_QO\",name:\"r4HB01405\",type:\"Identifier\"},{collection:\"uFVM6f_QO\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"uFVM6f_QO\",name:\"BJEkvQzgd\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"oBQ6iesCd\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"uFVM6f_QO\",name:\"OZfx4CV4q\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:OZfx4CV4q},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:iduFVM6f_QO,r4HB01405:r4HB01405uFVM6f_QO,XoQFVXpgT:XoQFVXpgTuFVM6f_QO},index1)=>{XoQFVXpgTuFVM6f_QO??=\"\";r4HB01405uFVM6f_QO??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`uFVM6f_QO-${iduFVM6f_QO}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{XoQFVXpgT:XoQFVXpgTuFVM6f_QO},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{XoQFVXpgT:XoQFVXpgTuFVM6f_QO},webPageId:\"aLM79quze\"},nodeId:\"zHMa7BrBt\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ivmqmn framer-h7f7wv\",\"data-border\":true,whileHover:animation,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13abgnw\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1md0jqx\",\"data-styles-preset\":\"rGlbfD0L2\",style:{\"--framer-text-alignment\":\"right\"},children:\"Title\"})}),className:\"framer-ju17lf\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:r4HB01405uFVM6f_QO,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m3v7rq-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d6ad37d2-83fc-41f7-bead-e0c8dc95e855, rgb(22, 22, 22))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretRight\",id:\"aVopuN2Fe\",layoutId:\"aVopuN2Fe\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})})})},iduFVM6f_QO);})})})})})]})]})]}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p8vwax\",\"data-framer-name\":\"Book\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cq3fib\",\"data-border\":true,\"data-framer-name\":\"Info\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-82s44g\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17rqkwc-container\",children:/*#__PURE__*/_jsx(Book,{height:\"100%\",id:\"QYJu6XYCh\",ImKXElYdV:\"rgb(219, 215, 211)\",layoutId:\"QYJu6XYCh\",luiu7XejK:\"rgb(61, 68, 74)\",style:{width:\"100%\"},width:\"100%\",xyfzePNMN:toResponsiveImage(ni7fLnNeb)})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d9f6co\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iqlzpt\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yzujpz\",children:[visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uscked-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SbFFYHGQ2:{style:{height:\"100%\",width:\"100%\"}},vVTU6oemV:{style:{height:\"100%\",width:\"100%\"}},xg_Q7IHV7:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(LibraryStarRating,{height:\"100%\",id:\"lPOgVhbHL\",layoutId:\"lPOgVhbHL\",style:{width:\"100%\"},variant:convertFromEnum2(b5rok1CsT,activeLocale),width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l8jwir\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qr2v1z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5ta1xt\",\"data-styles-preset\":\"IMSIerJAL\",children:\"Test blog post\"})}),className:\"framer-6mtqu6\",fonts:[\"Inter\"],text:r4HB01405,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1md0jqx\",\"data-styles-preset\":\"rGlbfD0L2\",children:\"Leander Kahney\"})}),className:\"framer-yuzwvd\",fonts:[\"Inter\"],text:msNvTGDLt,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q06ave\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-twv1k4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q2ap9u\",style:{\"--13gyznc\":fillColor},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-184x6wp\",\"data-styles-preset\":\"sX9iIdq_w\",style:{\"--framer-text-color\":\"var(--token-0ed8d650-f1e1-45b2-ab63-b80d7953b21f, rgb(253, 253, 253))\"},children:\"Content\"})}),className:\"framer-z4yrfx\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kzloyf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-184x6wp\",\"data-styles-preset\":\"sX9iIdq_w\",style:{\"--framer-text-color\":\"var(--token-ab23ab0b-6cf9-4af2-a248-e2b83291b328, rgb(113, 113, 113))\"},children:\"Read in\"})}),className:\"framer-15s3rsp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-184x6wp\",\"data-styles-preset\":\"sX9iIdq_w\",children:\"2016-17\"})}),className:\"framer-1jy28qs\",fonts:[\"Inter\"],text:TSh8JKZrH,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:dZV2U6qnJ,nodeId:\"Hx555Rpt0\",openInNewTab:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-y2yo8t framer-h7f7wv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-184x6wp\",\"data-styles-preset\":\"sX9iIdq_w\",style:{\"--framer-text-color\":\"var(--token-0ed8d650-f1e1-45b2-ab63-b80d7953b21f, rgb(253, 253, 253))\"},children:\"More about the book\"})}),className:\"framer-bi7rpm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w4i0hv-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0ed8d650-f1e1-45b2-ab63-b80d7953b21f, rgb(253, 253, 253))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"jYfD4MI_b\",layoutId:\"jYfD4MI_b\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})]})]})})})]})}),visible3&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-nygkhp\",\"data-border\":true,\"data-framer-name\":\"Highlights\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hpjn7g\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rbwwml\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qymurh-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d6ad37d2-83fc-41f7-bead-e0c8dc95e855, rgb(22, 22, 22))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"HighlighterCircle\",id:\"T27H_WbEE\",layoutId:\"T27H_WbEE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1e0to9i\",\"data-styles-preset\":\"zzmEy9rQI\",children:\"Highlights\"})}),className:\"framer-nlt5oy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"fyuAAI1d3\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"D6qBsO06f\"]},children:/*#__PURE__*/_jsx(RichTextWithCustomTextHighlight,{__fromCanvasComponent:true,children:pIQRbPUCA,className:\"framer-1rfmzl3\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-15chydk\",code:\"framer-styles-preset-sspzcu\",h1:\"framer-styles-preset-1x2nzm1\",h2:\"framer-styles-preset-5ta1xt\",h3:\"framer-styles-preset-1e0to9i\",h4:\"framer-styles-preset-j4i0l5\",h5:\"framer-styles-preset-o2opn3\",h6:\"framer-styles-preset-nbe2og\",img:\"framer-styles-preset-1khm1kk\",p:\"framer-styles-preset-1md0jqx\"},verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19ih9bq\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hcrna\",\"data-framer-name\":\"Navigation\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":pvlymr3wu\",webPageId:\"Ge0S5hF2X\"},nodeId:\"wdLz959jy\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"Back to all books\",className:\"framer-uq36gf framer-h7f7wv\",\"data-border\":true,whileHover:animation,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7i0y1h\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2yub8o-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d6ad37d2-83fc-41f7-bead-e0c8dc95e855, rgb(22, 22, 22))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowBendUpLeft\",id:\"vdCQNnmx1\",layoutId:\"vdCQNnmx1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rf1ypw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kxd8p6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"esmzG7Etk\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"esmzG7Etk\",name:\"XoQFVXpgT\",type:\"Identifier\"},{collection:\"esmzG7Etk\",name:\"r4HB01405\",type:\"Identifier\"},{collection:\"esmzG7Etk\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"esmzG7Etk\",name:\"BJEkvQzgd\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"NpQlvnYrX\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"esmzG7Etk\",name:\"OZfx4CV4q\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:OZfx4CV4q},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idesmzG7Etk,r4HB01405:r4HB01405esmzG7Etk,XoQFVXpgT:XoQFVXpgTesmzG7Etk},index2)=>{XoQFVXpgTesmzG7Etk??=\"\";r4HB01405esmzG7Etk??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`esmzG7Etk-${idesmzG7Etk}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{XoQFVXpgT:XoQFVXpgTesmzG7Etk},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{XoQFVXpgT:XoQFVXpgTesmzG7Etk},webPageId:\"aLM79quze\"},nodeId:\"T2fjwuZvF\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zklqxt framer-h7f7wv\",\"data-border\":true,whileHover:animation,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2b3t3l\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jh6ayd-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d6ad37d2-83fc-41f7-bead-e0c8dc95e855, rgb(22, 22, 22))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretLeft\",id:\"sPl5ruFJ5\",layoutId:\"sPl5ruFJ5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1md0jqx\",\"data-styles-preset\":\"rGlbfD0L2\",children:\"Title\"})}),className:\"framer-1heba7\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:r4HB01405esmzG7Etk,verticalAlignment:\"top\",withExternalLayout:true})]})})})})},idesmzG7Etk);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xhrkm7\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"IAnLPpyuP\",data:Posts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"IAnLPpyuP\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"IAnLPpyuP\",name:\"XoQFVXpgT\",type:\"Identifier\"},{collection:\"IAnLPpyuP\",name:\"r4HB01405\",type:\"Identifier\"},{collection:\"IAnLPpyuP\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"IAnLPpyuP\",name:\"BJEkvQzgd\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"NpQlvnYrX\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"IAnLPpyuP\",name:\"OZfx4CV4q\",type:\"Identifier\"},operator:\"<\",right:{type:\"LiteralValue\",value:OZfx4CV4q},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:idIAnLPpyuP,r4HB01405:r4HB01405IAnLPpyuP,XoQFVXpgT:XoQFVXpgTIAnLPpyuP},index3)=>{XoQFVXpgTIAnLPpyuP??=\"\";r4HB01405IAnLPpyuP??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`IAnLPpyuP-${idIAnLPpyuP}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{XoQFVXpgT:XoQFVXpgTIAnLPpyuP},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{XoQFVXpgT:XoQFVXpgTIAnLPpyuP},webPageId:\"aLM79quze\"},nodeId:\"l0qkQs4DV\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1icebei framer-h7f7wv\",\"data-border\":true,whileHover:animation,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1blr94w\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1md0jqx\",\"data-styles-preset\":\"rGlbfD0L2\",style:{\"--framer-text-alignment\":\"right\"},children:\"Title\"})}),className:\"framer-1e796fn\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:r4HB01405IAnLPpyuP,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11btfgm-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d6ad37d2-83fc-41f7-bead-e0c8dc95e855, rgb(22, 22, 22))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretRight\",id:\"K3o78NTcc\",layoutId:\"K3o78NTcc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})})})},idIAnLPpyuP);})})})})})]})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xvt0h1-container hidden-14m2bl7 hidden-1ilwyll hidden-1uodlwh\",layoutScroll:true,children:/*#__PURE__*/_jsx(MenuNavigation,{height:\"100%\",id:\"jJcU9hYKa\",layoutId:\"jJcU9hYKa\",style:{height:\"100%\"},variant:\"QOKEegLIz\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SbFFYHGQ2:{height:64,width:componentViewport?.width||\"100vw\",y:0},vVTU6oemV:{height:64,width:componentViewport?.width||\"100vw\",y:0},xg_Q7IHV7:{height:64,width:componentViewport?.width||\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ddgy8j-container hidden-14elyty\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xg_Q7IHV7:{variant:\"cqdzboFhU\"}},children:/*#__PURE__*/_jsx(PhoneAndTabletMenuNavigation,{height:\"100%\",id:\"O2NOB2F1o\",layoutId:\"O2NOB2F1o\",style:{width:\"100%\"},variant:\"OivXCyQvD\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iE5tO.framer-h7f7wv, .framer-iE5tO .framer-h7f7wv { display: block; }\",\".framer-iE5tO.framer-14elyty { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-iE5tO .framer-1s51pwv { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; min-height: 100vh; overflow: hidden; padding: 96px; position: relative; user-select: none; width: 100%; }\",\".framer-iE5tO .framer-1bri1za { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iE5tO .framer-usq2bk { align-content: flex-start; align-items: flex-start; cursor: default; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iE5tO .framer-16eqc5m, .framer-iE5tO .framer-nlt5oy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-iE5tO .framer-1otcdlb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 34px; position: relative; white-space: pre; width: auto; }\",\".framer-iE5tO .framer-1si8uax { --framer-paragraph-spacing: 32px; -webkit-user-select: auto; flex: none; height: auto; position: relative; user-select: auto; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iE5tO .framer-o4sji0 { align-content: center; align-items: center; cursor: default; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iE5tO .framer-1ukf5k5 { 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: hidden; padding: 1px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-iE5tO .framer-11eroto, .framer-iE5tO .framer-yuzwvd, .framer-iE5tO .framer-z4yrfx, .framer-iE5tO .framer-15s3rsp, .framer-iE5tO .framer-1jy28qs, .framer-iE5tO .framer-bi7rpm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-iE5tO .framer-1wyee7q { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-iE5tO .framer-1nhlc1o-container, .framer-iE5tO .framer-1aiol2o-container, .framer-iE5tO .framer-1ngt3x9-container, .framer-iE5tO .framer-lirdd1-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-iE5tO .framer-1al3pot { 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: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-iE5tO .framer-1lpun7z-container, .framer-iE5tO .framer-1qymurh-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-iE5tO .framer-gjix5e, .framer-iE5tO .framer-1hcrna { align-content: center; align-items: center; cursor: default; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iE5tO .framer-1f9dizj, .framer-iE5tO .framer-uq36gf { --border-bottom-width: 1px; --border-color: var(--token-a3dc983b-e91f-4fcf-bea6-7616f9cf8d09, #f0f0f0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: stretch; background-color: var(--token-0ed8d650-f1e1-45b2-ab63-b80d7953b21f, #fdfdfd); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: auto; justify-content: flex-start; padding: 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-iE5tO .framer-f58a2t, .framer-iE5tO .framer-7i0y1h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-iE5tO .framer-kgx1kl-container, .framer-iE5tO .framer-1152iqv-container, .framer-iE5tO .framer-m3v7rq-container, .framer-iE5tO .framer-2yub8o-container, .framer-iE5tO .framer-jh6ayd-container, .framer-iE5tO .framer-11btfgm-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-iE5tO .framer-1w5ey0d { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-iE5tO .framer-1u1wg5p, .framer-iE5tO .framer-1o62o6l { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 80px; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-iE5tO .framer-4t2vnq { --border-bottom-width: 1px; --border-color: var(--token-a3dc983b-e91f-4fcf-bea6-7616f9cf8d09, #f0f0f0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-0ed8d650-f1e1-45b2-ab63-b80d7953b21f, #fdfdfd); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 0px; height: 1px; justify-content: flex-start; padding: 16px 24px 16px 20px; position: relative; text-decoration: none; width: 100%; }\",\".framer-iE5tO .framer-1dpm7u6, .framer-iE5tO .framer-2b3t3l { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-iE5tO .framer-fgizb5, .framer-iE5tO .framer-ju17lf, .framer-iE5tO .framer-1heba7, .framer-iE5tO .framer-1e796fn { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-iE5tO .framer-1ivmqmn { --border-bottom-width: 1px; --border-color: var(--token-a3dc983b-e91f-4fcf-bea6-7616f9cf8d09, #f0f0f0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-0ed8d650-f1e1-45b2-ab63-b80d7953b21f, #fdfdfd); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 0px; height: 1px; justify-content: flex-start; padding: 16px 20px 16px 24px; position: relative; text-decoration: none; width: 100%; }\",\".framer-iE5tO .framer-13abgnw, .framer-iE5tO .framer-1blr94w { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-iE5tO .framer-1p8vwax { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iE5tO .framer-1cq3fib, .framer-iE5tO .framer-nygkhp { --border-bottom-width: 1px; --border-color: var(--token-a3dc983b-e91f-4fcf-bea6-7616f9cf8d09, #f0f0f0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-0ed8d650-f1e1-45b2-ab63-b80d7953b21f, #fdfdfd); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iE5tO .framer-82s44g { align-content: center; align-items: center; cursor: default; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-iE5tO .framer-17rqkwc-container { flex: none; height: auto; position: relative; width: 150px; }\",\".framer-iE5tO .framer-1d9f6co { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-iE5tO .framer-1iqlzpt { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iE5tO .framer-yzujpz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-iE5tO .framer-uscked-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-iE5tO .framer-1l8jwir { flex: none; height: 4px; overflow: hidden; position: relative; width: 100%; }\",\".framer-iE5tO .framer-1qr2v1z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iE5tO .framer-6mtqu6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iE5tO .framer-q06ave { flex: none; height: 28px; overflow: hidden; position: relative; width: 100%; }\",\".framer-iE5tO .framer-twv1k4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iE5tO .framer-1q2ap9u { align-content: center; align-items: center; background-color: var(--13gyznc); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 8px 4px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-iE5tO .framer-1kzloyf { align-content: center; align-items: center; background-color: var(--token-1bd10905-9e93-4fab-9eb7-e87fd2b3159e, #f0f0f0); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 8px 4px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-iE5tO .framer-y2yo8t { align-content: center; align-items: center; background-color: var(--token-d6ad37d2-83fc-41f7-bead-e0c8dc95e855, #161616); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 6px 4px 8px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-iE5tO .framer-1w4i0hv-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-iE5tO .framer-hpjn7g { 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: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-iE5tO .framer-rbwwml { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iE5tO .framer-1rfmzl3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-user-select: auto; flex: none; height: auto; position: relative; user-select: auto; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iE5tO .framer-19ih9bq { align-content: center; align-items: center; cursor: default; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 24px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 800px; }\",\".framer-iE5tO .framer-rf1ypw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-iE5tO .framer-kxd8p6, .framer-iE5tO .framer-xhrkm7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-iE5tO .framer-zklqxt { --border-bottom-width: 1px; --border-color: var(--token-a3dc983b-e91f-4fcf-bea6-7616f9cf8d09, #f0f0f0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-0ed8d650-f1e1-45b2-ab63-b80d7953b21f, #fdfdfd); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 12px 18px 12px 16px; position: relative; text-decoration: none; width: 100%; }\",\".framer-iE5tO .framer-1icebei { --border-bottom-width: 1px; --border-color: var(--token-a3dc983b-e91f-4fcf-bea6-7616f9cf8d09, #f0f0f0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-0ed8d650-f1e1-45b2-ab63-b80d7953b21f, #fdfdfd); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 12px 16px 12px 18px; position: relative; text-decoration: none; width: 100%; }\",\".framer-iE5tO .framer-1xvt0h1-container { flex: none; height: 100vh; left: 0px; position: fixed; top: 0px; width: auto; z-index: 5; }\",\".framer-iE5tO .framer-1ddgy8j-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-iE5tO.framer-14elyty, .framer-iE5tO .framer-1s51pwv, .framer-iE5tO .framer-1bri1za, .framer-iE5tO .framer-usq2bk, .framer-iE5tO .framer-o4sji0, .framer-iE5tO .framer-1ukf5k5, .framer-iE5tO .framer-1wyee7q, .framer-iE5tO .framer-1al3pot, .framer-iE5tO .framer-gjix5e, .framer-iE5tO .framer-1f9dizj, .framer-iE5tO .framer-f58a2t, .framer-iE5tO .framer-1w5ey0d, .framer-iE5tO .framer-1u1wg5p, .framer-iE5tO .framer-4t2vnq, .framer-iE5tO .framer-1dpm7u6, .framer-iE5tO .framer-1o62o6l, .framer-iE5tO .framer-1ivmqmn, .framer-iE5tO .framer-13abgnw, .framer-iE5tO .framer-1p8vwax, .framer-iE5tO .framer-1cq3fib, .framer-iE5tO .framer-82s44g, .framer-iE5tO .framer-1d9f6co, .framer-iE5tO .framer-1iqlzpt, .framer-iE5tO .framer-yzujpz, .framer-iE5tO .framer-1qr2v1z, .framer-iE5tO .framer-twv1k4, .framer-iE5tO .framer-1q2ap9u, .framer-iE5tO .framer-1kzloyf, .framer-iE5tO .framer-y2yo8t, .framer-iE5tO .framer-nygkhp, .framer-iE5tO .framer-hpjn7g, .framer-iE5tO .framer-rbwwml, .framer-iE5tO .framer-19ih9bq, .framer-iE5tO .framer-1hcrna, .framer-iE5tO .framer-uq36gf, .framer-iE5tO .framer-7i0y1h, .framer-iE5tO .framer-rf1ypw, .framer-iE5tO .framer-kxd8p6, .framer-iE5tO .framer-zklqxt, .framer-iE5tO .framer-2b3t3l, .framer-iE5tO .framer-xhrkm7, .framer-iE5tO .framer-1icebei, .framer-iE5tO .framer-1blr94w { gap: 0px; } .framer-iE5tO.framer-14elyty > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-iE5tO.framer-14elyty > :first-child, .framer-iE5tO .framer-1s51pwv > :first-child, .framer-iE5tO .framer-1bri1za > :first-child, .framer-iE5tO .framer-1u1wg5p > :first-child, .framer-iE5tO .framer-1o62o6l > :first-child, .framer-iE5tO .framer-1p8vwax > :first-child, .framer-iE5tO .framer-1d9f6co > :first-child, .framer-iE5tO .framer-yzujpz > :first-child, .framer-iE5tO .framer-1qr2v1z > :first-child, .framer-iE5tO .framer-hpjn7g > :first-child, .framer-iE5tO .framer-rf1ypw > :first-child, .framer-iE5tO .framer-kxd8p6 > :first-child, .framer-iE5tO .framer-xhrkm7 > :first-child { margin-top: 0px; } .framer-iE5tO.framer-14elyty > :last-child, .framer-iE5tO .framer-1s51pwv > :last-child, .framer-iE5tO .framer-1bri1za > :last-child, .framer-iE5tO .framer-1u1wg5p > :last-child, .framer-iE5tO .framer-1o62o6l > :last-child, .framer-iE5tO .framer-1p8vwax > :last-child, .framer-iE5tO .framer-1d9f6co > :last-child, .framer-iE5tO .framer-yzujpz > :last-child, .framer-iE5tO .framer-1qr2v1z > :last-child, .framer-iE5tO .framer-hpjn7g > :last-child, .framer-iE5tO .framer-rf1ypw > :last-child, .framer-iE5tO .framer-kxd8p6 > :last-child, .framer-iE5tO .framer-xhrkm7 > :last-child { margin-bottom: 0px; } .framer-iE5tO .framer-1s51pwv > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-iE5tO .framer-1bri1za > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-iE5tO .framer-usq2bk > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-iE5tO .framer-usq2bk > :first-child, .framer-iE5tO .framer-o4sji0 > :first-child, .framer-iE5tO .framer-1ukf5k5 > :first-child, .framer-iE5tO .framer-1wyee7q > :first-child, .framer-iE5tO .framer-1al3pot > :first-child, .framer-iE5tO .framer-gjix5e > :first-child, .framer-iE5tO .framer-1f9dizj > :first-child, .framer-iE5tO .framer-f58a2t > :first-child, .framer-iE5tO .framer-1w5ey0d > :first-child, .framer-iE5tO .framer-4t2vnq > :first-child, .framer-iE5tO .framer-1dpm7u6 > :first-child, .framer-iE5tO .framer-1ivmqmn > :first-child, .framer-iE5tO .framer-13abgnw > :first-child, .framer-iE5tO .framer-1cq3fib > :first-child, .framer-iE5tO .framer-82s44g > :first-child, .framer-iE5tO .framer-1iqlzpt > :first-child, .framer-iE5tO .framer-twv1k4 > :first-child, .framer-iE5tO .framer-1q2ap9u > :first-child, .framer-iE5tO .framer-1kzloyf > :first-child, .framer-iE5tO .framer-y2yo8t > :first-child, .framer-iE5tO .framer-nygkhp > :first-child, .framer-iE5tO .framer-rbwwml > :first-child, .framer-iE5tO .framer-19ih9bq > :first-child, .framer-iE5tO .framer-1hcrna > :first-child, .framer-iE5tO .framer-uq36gf > :first-child, .framer-iE5tO .framer-7i0y1h > :first-child, .framer-iE5tO .framer-zklqxt > :first-child, .framer-iE5tO .framer-2b3t3l > :first-child, .framer-iE5tO .framer-1icebei > :first-child, .framer-iE5tO .framer-1blr94w > :first-child { margin-left: 0px; } .framer-iE5tO .framer-usq2bk > :last-child, .framer-iE5tO .framer-o4sji0 > :last-child, .framer-iE5tO .framer-1ukf5k5 > :last-child, .framer-iE5tO .framer-1wyee7q > :last-child, .framer-iE5tO .framer-1al3pot > :last-child, .framer-iE5tO .framer-gjix5e > :last-child, .framer-iE5tO .framer-1f9dizj > :last-child, .framer-iE5tO .framer-f58a2t > :last-child, .framer-iE5tO .framer-1w5ey0d > :last-child, .framer-iE5tO .framer-4t2vnq > :last-child, .framer-iE5tO .framer-1dpm7u6 > :last-child, .framer-iE5tO .framer-1ivmqmn > :last-child, .framer-iE5tO .framer-13abgnw > :last-child, .framer-iE5tO .framer-1cq3fib > :last-child, .framer-iE5tO .framer-82s44g > :last-child, .framer-iE5tO .framer-1iqlzpt > :last-child, .framer-iE5tO .framer-twv1k4 > :last-child, .framer-iE5tO .framer-1q2ap9u > :last-child, .framer-iE5tO .framer-1kzloyf > :last-child, .framer-iE5tO .framer-y2yo8t > :last-child, .framer-iE5tO .framer-nygkhp > :last-child, .framer-iE5tO .framer-rbwwml > :last-child, .framer-iE5tO .framer-19ih9bq > :last-child, .framer-iE5tO .framer-1hcrna > :last-child, .framer-iE5tO .framer-uq36gf > :last-child, .framer-iE5tO .framer-7i0y1h > :last-child, .framer-iE5tO .framer-zklqxt > :last-child, .framer-iE5tO .framer-2b3t3l > :last-child, .framer-iE5tO .framer-1icebei > :last-child, .framer-iE5tO .framer-1blr94w > :last-child { margin-right: 0px; } .framer-iE5tO .framer-o4sji0 > *, .framer-iE5tO .framer-1wyee7q > *, .framer-iE5tO .framer-f58a2t > *, .framer-iE5tO .framer-13abgnw > *, .framer-iE5tO .framer-7i0y1h > *, .framer-iE5tO .framer-1blr94w > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-iE5tO .framer-1ukf5k5 > *, .framer-iE5tO .framer-1al3pot > *, .framer-iE5tO .framer-1iqlzpt > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-iE5tO .framer-gjix5e > *, .framer-iE5tO .framer-1w5ey0d > *, .framer-iE5tO .framer-19ih9bq > *, .framer-iE5tO .framer-1hcrna > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-iE5tO .framer-1f9dizj > *, .framer-iE5tO .framer-4t2vnq > *, .framer-iE5tO .framer-1ivmqmn > *, .framer-iE5tO .framer-1cq3fib > *, .framer-iE5tO .framer-1q2ap9u > *, .framer-iE5tO .framer-nygkhp > *, .framer-iE5tO .framer-uq36gf > *, .framer-iE5tO .framer-zklqxt > *, .framer-iE5tO .framer-1icebei > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-iE5tO .framer-1u1wg5p > *, .framer-iE5tO .framer-1o62o6l > *, .framer-iE5tO .framer-kxd8p6 > *, .framer-iE5tO .framer-xhrkm7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-iE5tO .framer-1dpm7u6 > *, .framer-iE5tO .framer-twv1k4 > *, .framer-iE5tO .framer-2b3t3l > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-iE5tO .framer-1p8vwax > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-iE5tO .framer-82s44g > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-iE5tO .framer-1d9f6co > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-iE5tO .framer-yzujpz > *, .framer-iE5tO .framer-1qr2v1z > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-iE5tO .framer-1kzloyf > *, .framer-iE5tO .framer-y2yo8t > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-iE5tO .framer-hpjn7g > *, .framer-iE5tO .framer-rf1ypw > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-iE5tO .framer-rbwwml > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 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,'.framer-iE5tO[data-border=\"true\"]::after, .framer-iE5tO [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; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-iE5tO.framer-14elyty { width: 810px; } .framer-iE5tO .framer-1s51pwv { min-height: 1190px; padding: 96px 48px 48px 48px; } .framer-iE5tO .framer-1bri1za { gap: 48px; } .framer-iE5tO .framer-usq2bk { flex-direction: column; gap: 8px; } .framer-iE5tO .framer-16eqc5m { flex: none; width: 100%; } .framer-iE5tO .framer-1otcdlb { height: auto; } .framer-iE5tO .framer-uscked-container { height: 16px; } .framer-iE5tO .framer-bi7rpm { order: 0; } .framer-iE5tO .framer-1w4i0hv-container { height: 15px; order: 1; width: 15px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-iE5tO .framer-1bri1za, .framer-iE5tO .framer-usq2bk { gap: 0px; } .framer-iE5tO .framer-1bri1za > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-iE5tO .framer-1bri1za > :first-child, .framer-iE5tO .framer-usq2bk > :first-child { margin-top: 0px; } .framer-iE5tO .framer-1bri1za > :last-child, .framer-iE5tO .framer-usq2bk > :last-child { margin-bottom: 0px; } .framer-iE5tO .framer-usq2bk > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}\",\"@media (min-width: 560px) and (max-width: 809px) { .framer-iE5tO.framer-14elyty { width: 560px; } .framer-iE5tO .framer-1s51pwv { min-height: 960px; padding: 96px 48px 48px 48px; } .framer-iE5tO .framer-1bri1za { gap: 36px; } .framer-iE5tO .framer-usq2bk { flex-direction: column; gap: 8px; } .framer-iE5tO .framer-16eqc5m { flex: none; width: 100%; } .framer-iE5tO .framer-1otcdlb { height: auto; } .framer-iE5tO .framer-gjix5e, .framer-iE5tO .framer-1hcrna, .framer-iE5tO .framer-rf1ypw { gap: 12px; } .framer-iE5tO .framer-1f9dizj, .framer-iE5tO .framer-uq36gf { padding: 16px; } .framer-iE5tO .framer-1w5ey0d { flex-direction: column; gap: 12px; } .framer-iE5tO .framer-1u1wg5p, .framer-iE5tO .framer-1o62o6l { flex: none; height: 52px; width: 100%; } .framer-iE5tO .framer-4t2vnq { padding: 16px 20px 16px 16px; } .framer-iE5tO .framer-1ivmqmn { padding: 16px 16px 16px 20px; } .framer-iE5tO .framer-13abgnw, .framer-iE5tO .framer-1blr94w { gap: 8px; } .framer-iE5tO .framer-17rqkwc-container { width: 125px; } .framer-iE5tO .framer-uscked-container { height: 16px; } .framer-iE5tO .framer-1w4i0hv-container { height: 15px; width: 15px; } .framer-iE5tO .framer-zklqxt { padding: 12px 20px 12px 16px; } .framer-iE5tO .framer-1icebei { padding: 12px 16px 12px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-iE5tO .framer-1bri1za, .framer-iE5tO .framer-usq2bk, .framer-iE5tO .framer-gjix5e, .framer-iE5tO .framer-1w5ey0d, .framer-iE5tO .framer-13abgnw, .framer-iE5tO .framer-1hcrna, .framer-iE5tO .framer-rf1ypw, .framer-iE5tO .framer-1blr94w { gap: 0px; } .framer-iE5tO .framer-1bri1za > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-iE5tO .framer-1bri1za > :first-child, .framer-iE5tO .framer-usq2bk > :first-child, .framer-iE5tO .framer-1w5ey0d > :first-child, .framer-iE5tO .framer-rf1ypw > :first-child { margin-top: 0px; } .framer-iE5tO .framer-1bri1za > :last-child, .framer-iE5tO .framer-usq2bk > :last-child, .framer-iE5tO .framer-1w5ey0d > :last-child, .framer-iE5tO .framer-rf1ypw > :last-child { margin-bottom: 0px; } .framer-iE5tO .framer-usq2bk > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-iE5tO .framer-gjix5e > *, .framer-iE5tO .framer-1hcrna > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-iE5tO .framer-gjix5e > :first-child, .framer-iE5tO .framer-13abgnw > :first-child, .framer-iE5tO .framer-1hcrna > :first-child, .framer-iE5tO .framer-1blr94w > :first-child { margin-left: 0px; } .framer-iE5tO .framer-gjix5e > :last-child, .framer-iE5tO .framer-13abgnw > :last-child, .framer-iE5tO .framer-1hcrna > :last-child, .framer-iE5tO .framer-1blr94w > :last-child { margin-right: 0px; } .framer-iE5tO .framer-1w5ey0d > *, .framer-iE5tO .framer-rf1ypw > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-iE5tO .framer-13abgnw > *, .framer-iE5tO .framer-1blr94w > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }}\",\"@media (max-width: 559px) { .framer-iE5tO.framer-14elyty { width: 390px; } .framer-iE5tO .framer-1s51pwv { min-height: 225px; padding: 96px 24px 48px 24px; } .framer-iE5tO .framer-1bri1za { gap: 36px; } .framer-iE5tO .framer-usq2bk { flex-direction: column; gap: 8px; } .framer-iE5tO .framer-16eqc5m, .framer-iE5tO .framer-1d9f6co { flex: none; width: 100%; } .framer-iE5tO .framer-1otcdlb { height: auto; } .framer-iE5tO .framer-gjix5e, .framer-iE5tO .framer-rf1ypw { gap: 12px; } .framer-iE5tO .framer-1w5ey0d { flex-direction: column; gap: 12px; } .framer-iE5tO .framer-1u1wg5p, .framer-iE5tO .framer-1o62o6l { flex: none; height: 76px; width: 100%; } .framer-iE5tO .framer-1cq3fib { order: 0; } .framer-iE5tO .framer-82s44g { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-iE5tO .framer-uscked-container { height: 16px; } .framer-iE5tO .framer-1w4i0hv-container { height: 15px; width: 15px; } .framer-iE5tO .framer-nygkhp { order: 1; } .framer-iE5tO .framer-19ih9bq { order: 3; } .framer-iE5tO .framer-1hcrna { gap: 12px; order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-iE5tO .framer-1bri1za, .framer-iE5tO .framer-usq2bk, .framer-iE5tO .framer-gjix5e, .framer-iE5tO .framer-1w5ey0d, .framer-iE5tO .framer-82s44g, .framer-iE5tO .framer-1hcrna, .framer-iE5tO .framer-rf1ypw { gap: 0px; } .framer-iE5tO .framer-1bri1za > *, .framer-iE5tO .framer-82s44g > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-iE5tO .framer-1bri1za > :first-child, .framer-iE5tO .framer-usq2bk > :first-child, .framer-iE5tO .framer-1w5ey0d > :first-child, .framer-iE5tO .framer-82s44g > :first-child, .framer-iE5tO .framer-rf1ypw > :first-child { margin-top: 0px; } .framer-iE5tO .framer-1bri1za > :last-child, .framer-iE5tO .framer-usq2bk > :last-child, .framer-iE5tO .framer-1w5ey0d > :last-child, .framer-iE5tO .framer-82s44g > :last-child, .framer-iE5tO .framer-rf1ypw > :last-child { margin-bottom: 0px; } .framer-iE5tO .framer-usq2bk > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-iE5tO .framer-gjix5e > *, .framer-iE5tO .framer-1hcrna > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-iE5tO .framer-gjix5e > :first-child, .framer-iE5tO .framer-1hcrna > :first-child { margin-left: 0px; } .framer-iE5tO .framer-gjix5e > :last-child, .framer-iE5tO .framer-1hcrna > :last-child { margin-right: 0px; } .framer-iE5tO .framer-1w5ey0d > *, .framer-iE5tO .framer-rf1ypw > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vVTU6oemV\":{\"layout\":[\"fixed\",\"auto\"]},\"SbFFYHGQ2\":{\"layout\":[\"fixed\",\"auto\"]},\"xg_Q7IHV7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerResponsiveScreen\n */const FrameraLM79quze=withCSS(Component,css,\"framer-iE5tO\");export default FrameraLM79quze;FrameraLM79quze.displayName=\"Post\";FrameraLM79quze.defaultProps={height:800,width:1200};addFonts(FrameraLM79quze,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...SocialLinksBlogShareFonts,...PhosphorFonts,...BookFonts,...LibraryStarRatingFonts,...MenuNavigationFonts,...PhoneAndTabletMenuNavigationFonts,...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),...componentPresets.fonts?.[\"fyuAAI1d3\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"fyuAAI1d3\"]):[],...componentPresets.fonts?.[\"D6qBsO06f\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"D6qBsO06f\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraLM79quze\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vVTU6oemV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SbFFYHGQ2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xg_Q7IHV7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"800\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["withNativeShareSheet", "Component", "props", "navigator", "p", "window", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useHoverStore", "createStore", "withHoverTrigger", "Component", "props", "setHoverStore", "p", "withHoverEffect", "hoverStore", "style", "rest", "motion", "AspectRatioImage", "props", "_props_style", "_props_style1", "_props_style2", "border", "shadow", "horizontal", "invalidSize", "maxSize", "setMaxSize", "ye", "radius", "_props_image", "image", "u", "l", "p", "addPropertyControls", "ControlType", "AspectRatioImageFonts", "getFonts", "AspectRatioImage", "MotionDivWithHoverEffect", "withHoverEffect", "motion", "MotionDivWithHoverTrigger", "withHoverTrigger", "cycleOrder", "variantClassNames", "transitions", "transformTemplate", "_", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "backCover", "bookCover", "height", "id", "pageColor", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "xyfzePNMN", "ImKXElYdV", "luiu7XejK", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "MotionDivWithHoverTrigger", "MotionDivWithHoverEffect", "AspectRatioImage", "css", "FramerFMxyCbHXh", "withCSS", "FMxyCbHXh_default", "addPropertyControls", "ControlType", "addFonts", "AspectRatioImageFonts", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "css", "FramerrapBc3aHS", "withCSS", "rapBc3aHS_default", "addPropertyControls", "ControlType", "addFonts", "wCxEyzVbz_exports", "__export", "__FramerMetadata__", "wCxEyzVbz_default", "g", "getFonts", "Icon", "h", "getPropertyControls", "u", "b", "y", "x", "e", "r", "t", "w", "W", "a", "re", "MotionConfigContext", "o", "i", "se", "p", "q", "S", "I", "useLocaleInfo", "d", "c", "g", "h", "v", "H", "k", "Y", "L", "j", "O", "useVariantState", "b", "u", "T", "A", "pe", "C", "ae", "LayoutGroup", "motion", "cx", "Icon", "withCSS", "wCxEyzVbz_default", "addPropertyControls", "addFonts", "__FramerMetadata__", "c", "withCustomTextHighlight", "t", "o", "u", "l", "p", "Twitter_Share", "Component", "props", "pageTitle", "setPageTitle", "ye", "ue", "p", "_window_location", "_window", "window", "LinkedIn_Share", "Component", "props", "pageTitle", "setPageTitle", "ye", "ue", "p", "_window_location", "_window", "window", "Email_Share", "Component", "props", "pageTitle", "setPageTitle", "ye", "ue", "p", "_window_location", "_window", "subject", "body", "window", "Clipboard_Share", "textField", "props", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "RichTextWithCustomTextHighlight", "withCustomTextHighlight", "RichText2", "SocialLinksBlogShareFonts", "getFonts", "wCxEyzVbz_default", "SocialLinksBlogShareTwitter_ShareWithMappedReactProps1sxhkw0", "withMappedReactProps", "Twitter_Share", "wCxEyzVbz_exports", "SocialLinksBlogShareLinkedIn_ShareWithMappedReactProps1sxhkw0", "LinkedIn_Share", "SocialLinksBlogShareEmail_ShareWithMappedReactProps1sxhkw0", "Email_Share", "SocialLinksBlogShareClipboard_ShareWithMappedReactProps1sxhkw0", "Clipboard_Share", "PhosphorFonts", "Icon", "MotionDivWithNativeShareSheet", "withNativeShareSheet", "motion", "BookFonts", "FMxyCbHXh_default", "LibraryStarRatingFonts", "rapBc3aHS_default", "MenuNavigationFonts", "szQI7F8P_default", "PhoneAndTabletMenuNavigationFonts", "eApJzzV_S_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "convertFromEnum", "value", "activeLocale", "toBoolean", "toDateString", "options", "date", "display", "dateOptions", "fallbackLocale", "locale", "transition1", "animation", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "convertFromEnum1", "toResponsiveImage", "equals", "a", "b", "negate", "convertFromEnum2", "convertFromEnum3", "toString", "isSet", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "CxfCH_sPM_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "BJEkvQzgd", "r4HB01405", "mDdWXpgWz", "pIQRbPUCA", "XoQFVXpgTlGr1m8528", "r4HB01405lGr1m8528", "idlGr1m8528", "OZfx4CV4q", "XoQFVXpgTuFVM6f_QO", "r4HB01405uFVM6f_QO", "iduFVM6f_QO", "ni7fLnNeb", "b5rok1CsT", "msNvTGDLt", "TEDIR6JcG", "TSh8JKZrH", "dZV2U6qnJ", "XoQFVXpgTesmzG7Etk", "r4HB01405esmzG7Etk", "idesmzG7Etk", "XoQFVXpgTIAnLPpyuP", "r4HB01405IAnLPpyuP", "idIAnLPpyuP", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "visible", "activeLocaleCode", "useLocaleCode", "textContent", "visible1", "visible2", "fillColor", "textContent1", "enumToDisplayNameFunctions", "visible3", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "x", "PropertyOverrides2", "ComponentPresetsProvider", "ComponentViewportProvider", "Container", "Link", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "css", "FrameraLM79quze", "withCSS", "aLM79quze_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
