{"version":3,"file":"ZIZ2DVcdz8ABuEvHtKWj6d2VF-fdA-4TjZ0uLCowwtE.CrcV-qVz.mjs","names":["Component","props","Component","props","props","_Fragment","cycleOrder","variantClassNames","transitions","t","toResponsiveImage","Transition","getProps","props","createLayoutDependency","Component","className","css","PhosphorFonts","Phosphor","serializationHash","variantClassNames","humanReadableVariantMap","getProps","props","Component","className","css","x","t","r","p","u","c","o","g","h","v","I","H","k","Y","s","f","__FramerMetadata__","t","e","o","Component","props","fonts","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className","SocialLinksBlogShare","SocialLinksBlogShareInfo","Phosphor","Book","LibraryStarRating","MenuNavigation","PhoneAndTabletMenuNavigation","b","props","Posts","metadata","className","PropertyOverrides","_Fragment","idlGr1m8528","r4HB01405lGr1m8528","XoQFVXpgTlGr1m8528","iduFVM6f_QO","r4HB01405uFVM6f_QO","XoQFVXpgTuFVM6f_QO","idesmzG7Etk","r4HB01405esmzG7Etk","XoQFVXpgTesmzG7Etk","idIAnLPpyuP","r4HB01405IAnLPpyuP","XoQFVXpgTIAnLPpyuP","css"],"sources":["https:/framerusercontent.com/modules/AALMWn7S3UKeiUHBaNjI/3VZ22Pm6WxdMih7gBi26/Sharesheet.js","https:/framer.com/m/framer/store.js@^1.0.0","https:/framerusercontent.com/modules/cSuE5Xh4jS72PkvyeG2y/CTBaLJ4gcdBmrmmkpY0o/Book_Hover.js","https:/framerusercontent.com/modules/sRTYlJZBR8R4g09Guarg/DNZhtORNlyAsXDdMDOaV/AspectRatioImage_1.js","https:/framerusercontent.com/modules/zUG0z8hfc4PdvjRLlxkl/dXCO25py7OU3l4S2OcYi/FMxyCbHXh.js","https:/framerusercontent.com/modules/a7Bjx2llX62Ibk5JtHNi/s5onh2KRNoZAVyKyJWhy/rapBc3aHS.js","https:/framerusercontent.com/modules/OY6KMCIQigttd8adLsa6/yXtrjtGq4sCwpuWk9omV/wCxEyzVbz.js","https:/framerusercontent.com/modules/Ga7N4VQgmCRKev54cngU/3H9VqtPSNymv7U2vXY6i/Custom_highlight.js","https:/framerusercontent.com/modules/4CX2NqmNxgfKJktgl9MM/VQvTo1fKZ6dLbWdkLhYL/Social_share.js","https:/framerusercontent.com/modules/64OOuNKIFD00EjiRwRvH/tGY8IQFeFBzqusH1ZQOB/componentPresets.js","https:/framerusercontent.com/modules/XWZ9ahGy43tmLDQqjXF6/f5sS1QIArGbyuvGRXsOg/hize6YqDu.js","https:/framerusercontent.com/modules/K0gJiP6tqpZKZLRtGK1R/KaPNsfyoBjstDOYQTOai/QRdjrKwXL.js","https:/framerusercontent.com/modules/PUIMiBVDrmCJgHamqrxi/RmySFQDlel2dh2OZPAMH/T0AQyeGRq.js","https:/framerusercontent.com/modules/hssCLvAOESHUAe2zeQG6/Msq0rfzco9uiAgJI3lSp/w09yj7g3f.js","https:/framerusercontent.com/modules/ua10VdeXweaBBP8Kdh30/cgLJJGILdBltvj7rFYmk/zUA4juzMq.js","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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"}