{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/tW1ExjbbJRt9YcZ0Gyxk/7xLQ6of7kXWmBUVuRiYG/Spotify.js", "ssg:https://framerusercontent.com/modules/y8ckmFmPFgZ5Nzn1PrR2/0OpLc4UI3t7D5080CwFo/SocialShare.js", "ssg:https://framerusercontent.com/modules/lQ77KA6SDNSpZYypK0a2/fyLos03AVQmcTeFl9ncB/f2cFgDlh6.js", "ssg:https://framerusercontent.com/modules/AoSDW7NfmIzK2ZIl7guT/zYlfMxe9KtSZY83T6lET/gP2ZzK36A.js", "ssg:https://framerusercontent.com/modules/dwdOzBKJJGsY9Ts9pwtP/eMBun6Dn3Z6m0o0NMvMN/ReadingTime.js", "ssg:https://framerusercontent.com/modules/9LsDh0ck2QwVSDYli01r/XGkuwpi8H1IA27etGKw1/Progress_bar.js", "ssg:https://framerusercontent.com/modules/zXZbuZ4SujGgHuLMuJlm/4KaOVPqXdG6iltzGg8bH/TableOfContents.js", "ssg:https://framerusercontent.com/modules/vuTJTny93IP8N8MRsEBO/MH3GBL3T7kIHiMKllzwG/ZUoEVMx5W.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useCallback}from\"react\";const urlRegex=/(https?:\\/\\/[^ ]*)/;/**\n * SPOTIFY\n *\n * @framerIntrinsicWidth 280\n * @framerIntrinsicHeight 350\n */ export function Spotify(props){const{theme,url:sourceUrl}=props;const createEmbedUrl=useCallback(()=>{if(sourceUrl.length<5)return null;// If someone pastes the embed code lets still try to render it\nconst strippedUrl=sourceUrl.includes(\"iframe\")?sourceUrl.match(urlRegex)[1].replace(`\"`,\"\"):sourceUrl;const url=new URL(strippedUrl);// Add embed prefix if needed\nif(!url.pathname.includes(\"embed\"))url.pathname=`/embed${url.pathname}`;// Remove params\nurl.search=`theme=${theme}`;// @ben you could add all other bools in here like\n// url.search = `theme=${theme}&dog=${cat}`\nreturn url.toString();},[theme,sourceUrl]);const identifier=createEmbedUrl();return(/*#__PURE__*/ _jsx(\"iframe\",{style:{height:\"100%\",width:\"100%\"},frameBorder:0,src:identifier}));}Spotify.defaultProps={url:\"https://open.spotify.com/album/31qVWUdRrlb8thMvts0yYL?si=Jl-8Mnc3RNGuOtqRC7NXVg\",width:280,height:350,theme:1};addPropertyControls(Spotify,{url:{type:ControlType.String,title:\"URL\"},theme:{type:ControlType.Enum,displaySegmentedControl:true,options:[1,0],optionTitles:[\"On\",\"Off\"]}});\nexport const __FramerMetadata__ = {\"exports\":{\"Spotify\":{\"type\":\"reactComponent\",\"name\":\"Spotify\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"350\",\"framerIntrinsicWidth\":\"280\"}}}}\n//# sourceMappingURL=./Spotify.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType,Color}from\"framer\";const BRAND_COLORS={facebook:\"#0866FF\",twitter:\"#000\",linkedIn:\"#0A66C2\",reddit:\"#FF4500\",pinterest:\"#BD081C\",whatsApp:\"#25D366\",email:\"#000\",copyUrl:\"#000\"};export const PLATFORM_NAMES=[\"Facebook\",\"Twitter / X\",\"LinkedIn\",\"Reddit\",\"Pinterest\",\"WhatsApp\",\"Email\",\"Copy URL\"];/**\n * @framerDisableUnlink\n */export default function SocialShare(props){const{type,colors,iconSize,border}=props;const[shareUrl,setShareUrl]=useState(props.shareLink==\"url\"?props.shareUrl:\"\");const encodedUrl=encodeURIComponent(shareUrl);const borderRadius=props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`;useEffect(()=>{if(props.shareLink==\"currentPage\"){setShareUrl(window.location.href);}},[]);let linkUrl=\"\";switch(type){case\"facebook\":linkUrl=`https://www.facebook.com/sharer/sharer.php?u=${encodedUrl}`;break;case\"twitter\":linkUrl=`https://twitter.com/share?url=${encodedUrl}`;break;case\"linkedIn\":linkUrl=`https://www.linkedin.com/sharing/share-offsite/?url=${encodedUrl}`;break;case\"reddit\":linkUrl=`https://www.reddit.com/submit?url=${encodedUrl}`;break;case\"pinterest\":linkUrl=`https://pinterest.com/pin/create/link/?url=${encodedUrl}`;break;case\"whatsApp\":linkUrl=`https://wa.me/?text=${encodedUrl}`;break;case\"email\":linkUrl=`mailto:?body=${encodedUrl}`;break;}const copyToClipboard=()=>{navigator.clipboard.writeText(shareUrl).then(()=>{alert(\"URL copied to clipboard!\");}).catch(err=>{alert(\"Failed to copy URL\");});};return /*#__PURE__*/_jsxs(\"a\",{\"data-superfields\":true,href:linkUrl.length?linkUrl:undefined,target:props.newTab?\"_blank\":\"_self\",rel:props.newTab?\"noopener noreferrer\":undefined,\"aria-label\":PLATFORM_NAMES[type],onClick:type==\"copyUrl\"&&copyToClipboard,style:{display:\"flex\",alignItems:\"center\",justifyContent:\"center\",backgroundColor:colors.fillColorType==\"custom\"?colors.fillColor:Color.toString(Color.alpha(Color(BRAND_COLORS[type]),colors.fillOpacity)),borderRadius:borderRadius,padding:props.paddingIsMixed?`${props.paddingTop}px ${props.paddingRight}px ${props.paddingBottom}px ${props.paddingLeft}px`:`${props.padding}px`,cursor:\"pointer\",...props.style},children:[/*#__PURE__*/_jsx(SocialIcon,{type:type,size:iconSize,color:colors.iconColorType==\"custom\"?colors.iconColor:BRAND_COLORS[type],customIcon:props.customIcon}),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.colorType==\"custom\"?border.color:BRAND_COLORS[type],borderRadius:borderRadius,pointerEvents:\"none\"}})]});}SocialShare.displayName=\"Social Share\";addPropertyControls(SocialShare,{shareLink:{type:ControlType.Enum,defaultValue:\"currentPage\",options:[\"currentPage\",\"url\"],optionTitles:[\"Current Page\",\"Custom URL\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},shareUrl:{type:ControlType.String,defaultValue:\"\",placeholder:\"https://example.com\",title:\"URL\",preventLocalization:true,hidden:props=>props.shareLink!=\"url\"},type:{type:ControlType.Enum,defaultValue:\"facebook\",options:[\"facebook\",\"twitter\",\"linkedIn\",\"reddit\",\"pinterest\",\"whatsApp\",\"email\",\"copyUrl\"],optionTitles:PLATFORM_NAMES,title:\"Platform\"},newTab:{type:ControlType.Boolean,defaultValue:true},colors:{type:ControlType.Object,buttonTitle:\"Icon & Fill\",controls:{iconColorType:{type:ControlType.Enum,defaultValue:\"custom\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Icon Color\"},iconColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.iconColorType!=\"custom\",title:\" \"},fillColorType:{type:ControlType.Enum,defaultValue:\"brand\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Fill\"},fillColor:{type:ControlType.Color,defaultValue:\"#000\",optional:true,hidden:props=>props.fillColorType!=\"custom\",title:\" \"},fillOpacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01,hidden:props=>props.fillColorType!=\"brand\"}}},iconSize:{type:ControlType.Number,defaultValue:24,min:1,step:1},radius:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},padding:{type:ControlType.FusedNumber,defaultValue:12,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},border:{type:ControlType.Object,optional:true,controls:{colorType:{type:ControlType.Enum,defaultValue:\"brand\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Color\"},color:{type:ControlType.Color,defaultValue:\"#FFF\",title:\" \",hidden:props=>props.colorType!=\"custom\"},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\"]}}},customIcon:{type:ControlType.Object,optional:true,buttonTitle:\"Icon\",controls:{type:{type:ControlType.Enum,defaultValue:\"svg\",options:[\"svg\",\"image\"],optionTitles:[\"SVG\",\"Image\"],displaySegmentedControl:true},svg:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"SVG\",preventLocalization:true,hidden:props=>props.type!=\"svg\"},image:{type:ControlType.ResponsiveImage,hidden:props=>props.type!=\"image\"},sizing:{type:ControlType.Enum,defaultValue:\"cover\",options:[\"cover\",\"contain\",\"fill\"],optionTitles:[\"Fill\",\"Fit\",\"Stretch\"],hidden:props=>props.type!=\"image\"},opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01}}}});function SocialIcon(props){const{size,color,customIcon}=props;const contents=[];let fill=true;let stroke=false;if(customIcon){if(customIcon.type==\"svg\"){return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"superfields-social-share-icon\",style:{width:size,height:size,opacity:customIcon.opacity,color:color,pointerEvents:\"none\"},dangerouslySetInnerHTML:customIcon.type==\"svg\"?{__html:customIcon.svg.replace(/width=\"(\\d+)\"/,`width=\"${size}\"`).replace(/height=\"(\\d+)\"/,`width=\"${size}\"`)}:undefined}),customIcon?.type==\"svg\"&&/*#__PURE__*/_jsx(\"style\",{children:`.superfields-social-share-icon svg { display: block; }`})]});}else if(customIcon.type==\"image\"){return /*#__PURE__*/_jsx(\"img\",{src:customIcon.image?.src,alt:customIcon.image?.alt,style:{display:\"block\",width:size,height:size,opacity:customIcon.opacity,color:color,objectFit:customIcon.sizing,objectPosition:\"center\",pointerEvents:\"none\"}});}}switch(props.type){case\"facebook\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M9.101 23.691v-7.98H6.627v-3.667h2.474v-1.58c0-4.085 1.848-5.978 5.858-5.978.401 0 .955.042 1.468.103a8.68 8.68 0 0 1 1.141.195v3.325a8.623 8.623 0 0 0-.653-.036 26.805 26.805 0 0 0-.733-.009c-.707 0-1.259.096-1.675.309a1.686 1.686 0 0 0-.679.622c-.258.42-.374.995-.374 1.752v1.297h3.919l-.386 2.103-.287 1.564h-3.246v8.245C19.396 23.238 24 18.179 24 12.044c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.628 3.874 10.35 9.101 11.647Z\"}));break;case\"twitter\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z\"}));break;case\"linkedIn\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z\"}));break;case\"reddit\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm5.01 4.744c.688 0 1.25.561 1.25 1.249a1.25 1.25 0 0 1-2.498.056l-2.597-.547-.8 3.747c1.824.07 3.48.632 4.674 1.488.308-.309.73-.491 1.207-.491.968 0 1.754.786 1.754 1.754 0 .716-.435 1.333-1.01 1.614a3.111 3.111 0 0 1 .042.52c0 2.694-3.13 4.87-7.004 4.87-3.874 0-7.004-2.176-7.004-4.87 0-.183.015-.366.043-.534A1.748 1.748 0 0 1 4.028 12c0-.968.786-1.754 1.754-1.754.463 0 .898.196 1.207.49 1.207-.883 2.878-1.43 4.744-1.487l.885-4.182a.342.342 0 0 1 .14-.197.35.35 0 0 1 .238-.042l2.906.617a1.214 1.214 0 0 1 1.108-.701zM9.25 12C8.561 12 8 12.562 8 13.25c0 .687.561 1.248 1.25 1.248.687 0 1.248-.561 1.248-1.249 0-.688-.561-1.249-1.249-1.249zm5.5 0c-.687 0-1.248.561-1.248 1.25 0 .687.561 1.248 1.249 1.248.688 0 1.249-.561 1.249-1.249 0-.687-.562-1.249-1.25-1.249zm-5.466 3.99a.327.327 0 0 0-.231.094.33.33 0 0 0 0 .463c.842.842 2.484.913 2.961.913.477 0 2.105-.056 2.961-.913a.361.361 0 0 0 .029-.463.33.33 0 0 0-.464 0c-.547.533-1.684.73-2.512.73-.828 0-1.979-.196-2.512-.73a.326.326 0 0 0-.232-.095z\"}));break;case\"pinterest\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z\"}));break;case\"whatsApp\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z\"}));break;case\"email\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M3 7l9 6l9 -6\"}));fill=false;stroke=true;break;case\"copyUrl\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M7 7m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h8.666a2.667 2.667 0 0 1 2.667 2.667v8.666a2.667 2.667 0 0 1 -2.667 2.667h-8.666a2.667 2.667 0 0 1 -2.667 -2.667z\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M4.012 16.737a2.005 2.005 0 0 1 -1.012 -1.737v-10c0 -1.1 .9 -2 2 -2h10c.75 0 1.158 .385 1.5 1\"}));fill=false;stroke=true;break;}return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:size,height:size,viewBox:\"0 0 24 24\",color:color,\"stroke-width\":stroke?\"2\":undefined,stroke:stroke?\"currentColor\":undefined,fill:fill?\"currentColor\":\"none\",\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\",style:{display:\"block\"},children:contents});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SocialShare\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"PLATFORM_NAMES\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SocialShare.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/drD99PVimJjj9wrrvFfZ/ePqBJhdwJVHKgMjqInkY/glUAt33ym.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/rTWUXyytj2RlHbvMlVpy/DvEHgOfLMgNBx2vdZuXG/lRIrVSY15.js\";const enabledGestures={vkMNcyXFN:{hover:true}};const serializationHash=\"framer-dIeRB\";const variantClassNames={vkMNcyXFN:\"framer-v-vpgdv3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,title,width,...props})=>{return{...props,J9jWUW6v2:title??props.J9jWUW6v2??\"Title\",qoKzxhYts:link??props.qoKzxhYts};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,qoKzxhYts,J9jWUW6v2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"vkMNcyXFN\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-vpgdv3\",className,classNames),\"data-framer-name\":\"h4\",layoutDependency:layoutDependency,layoutId:\"vkMNcyXFN\",ref:refBinding,style:{...style},...addPropertyOverrides({\"vkMNcyXFN-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1s2gj1r\",\"data-styles-preset\":\"glUAt33ym\",children:/*#__PURE__*/_jsx(Link,{href:qoKzxhYts,motionChild:true,nodeId:\"CSTRIhDSR\",openInNewTab:false,scopeId:\"f2cFgDlh6\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14cyyfy\",\"data-styles-preset\":\"lRIrVSY15\",children:\"TItle\"})})})}),className:\"framer-lhfxh2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CSTRIhDSR\",text:J9jWUW6v2,variants:{\"vkMNcyXFN-hover\":{\"--extracted-r6o4lv\":\"var(--token-937005d3-3d86-46da-84fc-0fa33060e6ae, rgb(52, 145, 214))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"vkMNcyXFN-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1s2gj1r\",\"data-styles-preset\":\"glUAt33ym\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-937005d3-3d86-46da-84fc-0fa33060e6ae, rgb(52, 145, 214)))\"},children:/*#__PURE__*/_jsx(Link,{href:qoKzxhYts,motionChild:true,nodeId:\"CSTRIhDSR\",openInNewTab:false,scopeId:\"f2cFgDlh6\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14cyyfy\",\"data-styles-preset\":\"lRIrVSY15\",children:\"TItle\"})})})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dIeRB.framer-483j7a, .framer-dIeRB .framer-483j7a { display: block; }\",\".framer-dIeRB.framer-vpgdv3 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 52px; justify-content: center; padding: 0px; position: relative; width: 36px; }\",\".framer-dIeRB .framer-lhfxh2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dIeRB.framer-vpgdv3 { gap: 0px; } .framer-dIeRB.framer-vpgdv3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-dIeRB.framer-vpgdv3 > :first-child { margin-top: 0px; } .framer-dIeRB.framer-vpgdv3 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 52\n * @framerIntrinsicWidth 36\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ACzXiRjlD\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"qoKzxhYts\":\"link\",\"J9jWUW6v2\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerf2cFgDlh6=withCSS(Component,css,\"framer-dIeRB\");export default Framerf2cFgDlh6;Framerf2cFgDlh6.displayName=\"Blog / ToC\";Framerf2cFgDlh6.defaultProps={height:52,width:36};addPropertyControls(Framerf2cFgDlh6,{qoKzxhYts:{title:\"Link\",type:ControlType.Link},J9jWUW6v2:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Framerf2cFgDlh6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerf2cFgDlh6\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"36\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"qoKzxhYts\\\":\\\"link\\\",\\\"J9jWUW6v2\\\":\\\"title\\\"}\",\"framerIntrinsicHeight\":\"52\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ACzXiRjlD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./f2cFgDlh6.map", "// Generated by Framer (236a21b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={sebFm9XUb:{pressed:true}};const cycleOrder=[\"sebFm9XUb\"];const serializationHash=\"framer-au91F\";const variantClassNames={sebFm9XUb:\"framer-v-19oko1t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,link,width,...props})=>{return{...props,z3Y1J_HGp:link!==null&&link!==void 0?link:props.z3Y1J_HGp};};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,z3Y1J_HGp,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sebFm9XUb\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:z3Y1J_HGp,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-19oko1t\",className,classNames)} framer-uwlql2`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"sebFm9XUb\",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:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d743bfb0-8aa6-4d87-b6aa-8c4fe0aba2d4, rgb(4, 6, 45))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-9fe03cd7-366f-4b01-bdd2-4da7e9dacbf1, rgb(246, 246, 246))\",...style},...addPropertyOverrides({\"sebFm9XUb-pressed\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rhx340\",\"data-framer-name\":\"hover-bg\",layoutDependency:layoutDependency,layoutId:\"ZGhVwQMry\",style:{backgroundColor:\"var(--token-f7f2e9d9-c0bf-4ce7-9d32-1c8b80af0267, rgb(5, 5, 250))\"},transformTemplate:transformTemplate1,...addPropertyOverrides({\"sebFm9XUb-pressed\":{transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kojyf1-container\",\"data-framer-name\":\"Hover\",layoutDependency:layoutDependency,layoutId:\"RMEtf8aSB-container\",name:\"Hover\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-82791f99-75df-427f-a04c-29056b2a2093, rgb(240, 240, 240))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"RMEtf8aSB\",layoutId:\"RMEtf8aSB\",mirrored:false,name:\"Hover\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b8txan-container\",\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"MuGCHMsG3-container\",name:\"Default\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-77cf315b-acf8-47c5-9b80-e50ff7fcc90b, rgb(52, 145, 214))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"MuGCHMsG3\",layoutId:\"MuGCHMsG3\",mirrored:false,name:\"Default\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-au91F.framer-uwlql2, .framer-au91F .framer-uwlql2 { display: block; }\",\".framer-au91F.framer-19oko1t { cursor: pointer; height: 48px; overflow: hidden; position: relative; text-decoration: none; width: 48px; }\",\".framer-au91F .framer-rhx340 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 50%; overflow: hidden; position: absolute; top: -48px; width: 48px; }\",\".framer-au91F .framer-kojyf1-container { bottom: -32px; flex: none; height: 32px; left: calc(50.00000000000002% - 32px / 2); position: absolute; width: 32px; }\",\".framer-au91F .framer-1b8txan-container { flex: none; height: 32px; left: calc(50.00000000000002% - 32px / 2); position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 32px; }\",\".framer-au91F.framer-v-19oko1t.pressed .framer-rhx340 { bottom: 0px; height: unset; left: 0px; width: var(--framer-aspect-ratio-supported, 96px); }\",\".framer-au91F.framer-v-19oko1t.pressed .framer-kojyf1-container { bottom: unset; top: calc(50.00000000000002% - 32px / 2); }\",\".framer-au91F.framer-v-19oko1t.pressed .framer-1b8txan-container { top: -32px; }\",'.framer-au91F[data-border=\"true\"]::after, .framer-au91F [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 48\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"rPnv_EAIA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"z3Y1J_HGp\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramergP2ZzK36A=withCSS(Component,css,\"framer-au91F\");export default FramergP2ZzK36A;FramergP2ZzK36A.displayName=\"CTA / icon\";FramergP2ZzK36A.defaultProps={height:48,width:48};addPropertyControls(FramergP2ZzK36A,{z3Y1J_HGp:{title:\"Link\",type:ControlType.Link}});addFonts(FramergP2ZzK36A,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergP2ZzK36A\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"48\",\"framerVariables\":\"{\\\"z3Y1J_HGp\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rPnv_EAIA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"48\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gP2ZzK36A.map", "import{jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";export function ContentDuration(props){const[duration,setDuration]=useState(0);useEffect(()=>{const contentElement=document.getElementById(\"content\");if(contentElement){const text=contentElement.textContent;const wordsPerMinute=200// Average reading speed\n;const words=text.trim().split(/\\s+/).length// Split by whitespace to count words\n;const minutes=Math.ceil(words/wordsPerMinute)// Round up to the nearest minute\n;setDuration(minutes);}},[]);return /*#__PURE__*/_jsxs(\"div\",{style:getStyle(props),children:[props.children,/*#__PURE__*/_jsxs(\"p\",{children:[duration,\" min\"]})]});}function getStyle(props){return{fontFamily:props.fontFamily,fontSize:props.fontSize,color:props.fontColor,fontWeight:props.fontWeight,textTransform:props.textTransform,lineHeight:props.lineHeight};}// Property controls\naddPropertyControls(ContentDuration,{fontFamily:{type:ControlType.String,title:\"Font Family\",defaultValue:\"Arial\"},fontSize:{type:ControlType.Number,title:\"Font Size\",defaultValue:16,min:0},fontColor:{type:ControlType.Color,title:\"Font Color\",defaultValue:\"#000000\"},fontWeight:{type:ControlType.Number,title:\"Font Weight\",defaultValue:400,min:100,max:900,step:100},textTransform:{type:ControlType.Enum,title:\"Text Transform\",options:[\"none\",\"capitalize\",\"uppercase\",\"lowercase\"],optionTitles:[\"None\",\"Capitalize\",\"Uppercase\",\"Lowercase\"],defaultValue:\"none\"},lineHeight:{type:ControlType.Number,title:\"Line Height\",defaultValue:1.5,min:0}});\nexport const __FramerMetadata__ = {\"exports\":{\"ContentDuration\":{\"type\":\"reactComponent\",\"name\":\"ContentDuration\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ReadingTime.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";export function withProgress(Component){return props=>{const[progress,setProgress]=useState(0);const[isScrolling,setIsScrolling]=useState(false);const prevScrollY=useRef(0);useEffect(()=>{const calculateProgress=()=>{const startEl=document.getElementById(\"start\");const endEl=document.getElementById(\"end\");if(startEl&&endEl){const sectionHeight=endEl.offsetTop-startEl.offsetTop;const scrollDistance=window.pageYOffset||document.documentElement.scrollTop;const sectionScrollDistance=scrollDistance-startEl.offsetTop;const sectionProgress=sectionScrollDistance/sectionHeight*100;setProgress(sectionProgress);}};const handleScroll=()=>{const scrollY=window.pageYOffset||document.documentElement.scrollTop;if(scrollY!==prevScrollY.current){prevScrollY.current=scrollY;calculateProgress();setIsScrolling(true);}};const handleScrollEnd=()=>{setIsScrolling(false);};calculateProgress();window.addEventListener(\"scroll\",handleScroll);window.addEventListener(\"scrollend\",handleScrollEnd);return()=>{window.removeEventListener(\"scroll\",handleScroll);window.removeEventListener(\"scrollend\",handleScrollEnd);};},[]);return /*#__PURE__*/_jsx(Component,{...props,style:{width:`${progress}%`,transition:isScrolling?\"none\":\"width 0.5s ease-in-out\"}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withProgress\":{\"type\":\"reactHoc\",\"name\":\"withProgress\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Progress_bar.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{useEffect,useState}from\"react\";// Made with love by Cl\u00E9ment. https://lionneclement.com/\n// Full tutorial: https://lionneclement.com/tutorial/how-to-create-table-of-contents-cms-collections-framer\nconst HEADING_TO_DISPLAY=[\"h4\"];const SCROLL_MARGIN_TOP=80;const useStore=createStore({headings:[]});export function withTableOfContent(Component){return props=>{const[store]=useStore();return /*#__PURE__*/_jsx(_Fragment,{children:store.headings.length>0&&window?store.headings.sort((a,b)=>a.originalIndex-b.originalIndex).filter(({type})=>HEADING_TO_DISPLAY.includes(type)).map(({id,heading,type},index)=>/*#__PURE__*/_jsx(Component,{...props,variant:type,title:heading,link:`${window.location.pathname}#${id}`})):/*#__PURE__*/_jsx(Component,{...props})});};}export function withContent(Component){return props=>{const[store,setStore]=useStore();const[newProps,setNewProps]=useState(props);useEffect(()=>{setStore({headings:formatTableOfContent(newProps.children.props.children)});},[newProps]);useEffect(()=>{const formatHeadings=()=>{const newChildren=[];props.children.props.children.forEach((item,index)=>{const children=item.props.children;if([\"h1\",\"h2\",\"h3\",\"h4\",\"h5\"].includes(item.type)){const{formattedId}=formatHeading(children,index);// Create a new object for the modified item\nconst newItem={...item,props:{...item.props,id:formattedId}};newChildren.push(newItem);}else{newChildren.push(item);}});// Return a new props object with the modified children\nreturn{...props,children:{...props.children,props:{...props.children.props,children:newChildren}}};};setNewProps(formatHeadings());},[props]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:`.framer-text {\n                    scroll-margin-top: ${SCROLL_MARGIN_TOP}px;\n                }`}),/*#__PURE__*/_jsx(Component,{...newProps})]});};}const formatTableOfContent=children=>{const result=[];children.filter(({type})=>[\"h4\"].includes(type)).map((item,index)=>{const children=item.props.children;const{formattedId,formattedHeading}=formatHeading(children,index);result.push({id:formattedId,heading:formattedHeading,type:item.type,originalIndex:index});});return result;};const formatHeading=(children,index)=>{let formattedHeading=\"\";let formattedId=\"\";if(typeof children===\"string\"){formattedHeading=children;}else if(Array.isArray(children)){formattedHeading=children.map(item=>{if(typeof item===\"string\")return item.trim();return item.props.children.trim();}).join(\" \");}else if(typeof children===\"object\"){if(typeof children.props.children===\"string\"){formattedHeading=children.props.children;}else{formattedHeading=children.type;}}else{formattedHeading=index.toString();}formattedId=formattedHeading.toLowerCase().replace(/[^a-z]+/g,\"-\").replace(/^-+|-+$/g,\"\").trim();return{formattedId,formattedHeading};};\nexport const __FramerMetadata__ = {\"exports\":{\"withTableOfContent\":{\"type\":\"reactHoc\",\"name\":\"withTableOfContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withContent\":{\"type\":\"reactHoc\",\"name\":\"withContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContents.map", "// Generated by Framer (400c93f)\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,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Spotify}from\"https://framerusercontent.com/modules/tW1ExjbbJRt9YcZ0Gyxk/7xLQ6of7kXWmBUVuRiYG/Spotify.js\";import SocialShare from\"https://framerusercontent.com/modules/y8ckmFmPFgZ5Nzn1PrR2/0OpLc4UI3t7D5080CwFo/SocialShare.js\";import NavigationTopnav from\"#framer/local/canvasComponent/AE6rTZoVe/AE6rTZoVe.js\";import TextLink from\"#framer/local/canvasComponent/brcQOC6Ya/brcQOC6Ya.js\";import BlogToC,*as BlogToCInfo from\"#framer/local/canvasComponent/f2cFgDlh6/f2cFgDlh6.js\";import CTAIcon from\"#framer/local/canvasComponent/gP2ZzK36A/gP2ZzK36A.js\";import NavigationSidenav from\"#framer/local/canvasComponent/JnxHiz9JR/JnxHiz9JR.js\";import NavigationFooter from\"#framer/local/canvasComponent/pGALuAU_A/pGALuAU_A.js\";import Tags from\"#framer/local/canvasComponent/ugrLbNwee/ugrLbNwee.js\";import BlogCard from\"#framer/local/canvasComponent/vVVo0ZCBw/vVVo0ZCBw.js\";import{ContentDuration}from\"#framer/local/codeFile/KnePQoG/ReadingTime.js\";import{withProgress}from\"#framer/local/codeFile/Vd6IRKJ/Progress_bar.js\";import{withContent,withTableOfContent}from\"#framer/local/codeFile/AeSX9mD/TableOfContents.js\";import Research,{enumToDisplayNameFunctions}from\"#framer/local/collection/kvJ4Lyj9V/kvJ4Lyj9V.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle10 from\"#framer/local/css/a2GCJMIGC/a2GCJMIGC.js\";import*as sharedStyle8 from\"#framer/local/css/gdx6EDzQZ/gdx6EDzQZ.js\";import*as sharedStyle1 from\"#framer/local/css/glUAt33ym/glUAt33ym.js\";import*as sharedStyle7 from\"#framer/local/css/lRIrVSY15/lRIrVSY15.js\";import*as sharedStyle6 from\"#framer/local/css/Oi6ZLSwRi/Oi6ZLSwRi.js\";import*as sharedStyle11 from\"#framer/local/css/Rja83hsrL/Rja83hsrL.js\";import*as sharedStyle9 from\"#framer/local/css/RonQqUHvU/RonQqUHvU.js\";import*as sharedStyle from\"#framer/local/css/uLmUntr7m/uLmUntr7m.js\";import*as sharedStyle12 from\"#framer/local/css/uOh9fO3c4/uOh9fO3c4.js\";import*as sharedStyle5 from\"#framer/local/css/vPtOGnoON/vPtOGnoON.js\";import*as sharedStyle4 from\"#framer/local/css/X0r_9i1qg/X0r_9i1qg.js\";import*as sharedStyle3 from\"#framer/local/css/zDIksxT9K/zDIksxT9K.js\";import*as sharedStyle2 from\"#framer/local/css/zQgWg08L8/zQgWg08L8.js\";import metadataProvider from\"#framer/local/webPageMetadata/ZUoEVMx5W/ZUoEVMx5W.js\";const CTAIconFonts=getFonts(CTAIcon);const ContainerWithFX=withFX(Container);const NavigationTopnavFonts=getFonts(NavigationTopnav);const NavigationSidenavFonts=getFonts(NavigationSidenav);const MotionDivWithProgress16da1q8=withCodeBoundaryForOverrides(motion.div,{nodeId:\"LJDhl3_mv\",override:withProgress,scopeId:\"ZUoEVMx5W\"});const TextLinkFonts=getFonts(TextLink);const ContentDurationFonts=getFonts(ContentDuration);const SocialShareFonts=getFonts(SocialShare);const BlogToCFonts=getFonts(BlogToC);const BlogToCWithTableOfContentixgtj0WithMappedReactPropsz78zwi=withMappedReactProps(withCodeBoundaryForOverrides(BlogToC,{nodeId:\"go0R_GOza\",override:withTableOfContent,scopeId:\"ZUoEVMx5W\"}),BlogToCInfo);const MotionDivWithFX=withFX(motion.div);const TagsFonts=getFonts(Tags);const SpotifyFonts=getFonts(Spotify);const RichTextWithContent19452yl=withCodeBoundaryForOverrides(RichText,{nodeId:\"Wy5Otf5A_\",override:withContent,scopeId:\"ZUoEVMx5W\"});const BlogCardFonts=getFonts(BlogCard);const NavigationFooterFonts=getFonts(NavigationFooter);const breakpoints={i3Q_RJPrY:\"(min-width: 1200px) and (max-width: 1439px)\",PxFT16iWv:\"(min-width: 1440px)\",SeBoKWmMK:\"(max-width: 809px)\",USdtUDPce:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-AKtW8\";const variantClassNames={i3Q_RJPrY:\"framer-v-1q0xjpy\",PxFT16iWv:\"framer-v-d8ao2z\",SeBoKWmMK:\"framer-v-59oo4m\",USdtUDPce:\"framer-v-42os26\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:48,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const negate=value=>{return!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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"PxFT16iWv\",Laptop:\"i3Q_RJPrY\",Phone:\"SeBoKWmMK\",Tablet:\"USdtUDPce\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"PxFT16iWv\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"ZUoEVMx5W\",data:Research,type:\"Collection\"},select:[{collection:\"ZUoEVMx5W\",name:\"ugrh3TtXa\",type:\"Identifier\"},{collection:\"ZUoEVMx5W\",name:\"UgISQxpyy\",type:\"Identifier\"},{collection:\"ZUoEVMx5W\",name:\"QvQ5EdO_n\",type:\"Identifier\"},{collection:\"ZUoEVMx5W\",name:\"wSl6kHUUJ\",type:\"Identifier\"},{collection:\"ZUoEVMx5W\",name:\"zkptcx2jt\",type:\"Identifier\"},{collection:\"ZUoEVMx5W\",name:\"irF2UPzp3\",type:\"Identifier\"},{collection:\"ZUoEVMx5W\",name:\"IGpjBJXF3\",type:\"Identifier\"},{collection:\"ZUoEVMx5W\",name:\"JdadcWHqF\",type:\"Identifier\"},{collection:\"ZUoEVMx5W\",name:\"hgArXYHem\",type:\"Identifier\"},{collection:\"ZUoEVMx5W\",name:\"we5SQP2kX\",type:\"Identifier\"},{collection:\"ZUoEVMx5W\",name:\"jcGrZCvvW\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"ZUoEVMx5W\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,wSl6kHUUJ=getFromCurrentRouteData(\"wSl6kHUUJ\")??\"\",zkptcx2jt=getFromCurrentRouteData(\"zkptcx2jt\")??\"\",IGpjBJXF3=getFromCurrentRouteData(\"IGpjBJXF3\")??\"\",UgISQxpyy=getFromCurrentRouteData(\"UgISQxpyy\"),irF2UPzp3=getFromCurrentRouteData(\"irF2UPzp3\"),QvQ5EdO_n=getFromCurrentRouteData(\"QvQ5EdO_n\")??\"\",ugrh3TtXa=getFromCurrentRouteData(\"ugrh3TtXa\"),JdadcWHqF=getFromCurrentRouteData(\"JdadcWHqF\")??\"\",hgArXYHem=getFromCurrentRouteData(\"hgArXYHem\")??\"\",we5SQP2kX=getFromCurrentRouteData(\"we5SQP2kX\")??\"\",jcGrZCvvW=getFromCurrentRouteData(\"jcGrZCvvW\")??\"\",wSl6kHUUJfRp8C1KEw,ugrh3TtXafRp8C1KEw,O1jHcxj3PfRp8C1KEw,zkptcx2jtfRp8C1KEw,irF2UPzp3fRp8C1KEw,QvQ5EdO_nfRp8C1KEw,UgISQxpyyfRp8C1KEw,idfRp8C1KEw,...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 isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"SeBoKWmMK\")return true;return false;};const elementId=useRouteElementId(\"qb2GkZT5C\");const ref1=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"USdtUDPce\",\"SeBoKWmMK\"].includes(baseVariant))return true;return false;};const router=useRouter();const ref2=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"USdtUDPce\",\"SeBoKWmMK\"].includes(baseVariant))return false;return true;};const visible=negate(isSet(IGpjBJXF3));const elementId1=useRouteElementId(\"zWXT6BI5F\");const ref3=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=toDateString(irF2UPzp3,{dateStyle:\"long\",locale:\"\"},activeLocaleCode);const visible1=isSet(IGpjBJXF3);const elementId2=useRouteElementId(\"Wy5Otf5A_\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"nAunUVaeZ\");const elementId4=useRouteElementId(\"ixpb1EBGB\");const ref5=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"PxFT16iWv\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-b4f3eec8-f3eb-4936-9430-d9506191ddb5, rgb(246, 246, 246)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-d8ao2z\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-13tko33 hidden-d8ao2z hidden-1q0xjpy hidden-42os26\",\"data-framer-name\":\"top\",id:elementId,ref:ref1}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xm3p6y hidden-d8ao2z hidden-1q0xjpy\",\"data-framer-name\":\"back to the top\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":SZC2VvRIV\",pathVariables:{wSl6kHUUJ},webPageId:\"ZUoEVMx5W\"},implicitPathVariables:undefined},{href:{hash:\":SZC2VvRIV\",pathVariables:{wSl6kHUUJ},webPageId:\"ZUoEVMx5W\"},implicitPathVariables:undefined},{href:{hash:\":qb2GkZT5C\",pathVariables:{wSl6kHUUJ},webPageId:\"ZUoEVMx5W\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SeBoKWmMK:{height:48,width:\"48px\",y:904},USdtUDPce:{height:48,width:\"48px\",y:904}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SeBoKWmMK:{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1},USdtUDPce:{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-utmx4a-container hidden-d8ao2z\",nodeId:\"DGPwsagxP\",rendersWithMotion:true,scopeId:\"ZUoEVMx5W\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SeBoKWmMK:{z3Y1J_HGp:resolvedLinks[2]},USdtUDPce:{z3Y1J_HGp:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(CTAIcon,{height:\"100%\",id:\"DGPwsagxP\",layoutId:\"DGPwsagxP\",style:{width:\"100%\"},width:\"100%\",z3Y1J_HGp:resolvedLinks[0]})})})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SeBoKWmMK:{height:64,width:componentViewport?.width||\"100vw\"},USdtUDPce:{height:64,width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c04oi2-container hidden-d8ao2z hidden-1q0xjpy\",nodeId:\"rrKWJV0Ev\",scopeId:\"ZUoEVMx5W\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SeBoKWmMK:{variant:\"OIplM9wt4\"}},children:/*#__PURE__*/_jsx(NavigationTopnav,{height:\"100%\",id:\"rrKWJV0Ev\",layoutId:\"rrKWJV0Ev\",style:{height:\"100%\",width:\"100%\"},variant:\"jxqAJFp2x\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":AMT3AdSvO\",webPageId:\"pCJ8hV5bD\"},implicitPathVariables:undefined},{href:{hash:\":AMT3AdSvO\",webPageId:\"pCJ8hV5bD\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"84px\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-stpfax-container hidden-42os26 hidden-59oo4m\",layoutScroll:true,nodeId:\"g9HK3sLNc\",scopeId:\"ZUoEVMx5W\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i3Q_RJPrY:{Do53VryLf:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(NavigationSidenav,{Do53VryLf:resolvedLinks1[0],dY_VUlvY4:true,height:\"100%\",id:\"g9HK3sLNc\",layoutId:\"g9HK3sLNc\",style:{height:\"100%\",width:\"100%\"},tQczzdCty:true,variant:\"HDknq7Wh5\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(MotionDivWithProgress16da1q8,{className:\"framer-16da1q8\",\"data-framer-name\":\"progress bar\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b6gz6\",\"data-framer-name\":\"mercury\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y0qqdi\",\"data-framer-name\":\"Layout\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SeBoKWmMK:{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation1},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1},USdtUDPce:{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation1},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-10r7805\",\"data-framer-name\":\"Col 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7x5pb0\",\"data-framer-name\":\"Back\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pCJ8hV5bD\"},implicitPathVariables:undefined},{href:{webPageId:\"pCJ8hV5bD\"},implicitPathVariables:undefined},{href:{webPageId:\"pCJ8hV5bD\"},implicitPathVariables:undefined},{href:{webPageId:\"pCJ8hV5bD\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17xqy2-container\",nodeId:\"ZSvSdVVOi\",scopeId:\"ZUoEVMx5W\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i3Q_RJPrY:{UK8Yi_l2D:resolvedLinks2[1]},SeBoKWmMK:{UK8Yi_l2D:resolvedLinks2[3]},USdtUDPce:{UK8Yi_l2D:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(TextLink,{AEkOVmrOw:true,cqKJwN_vR:\"Back to overview\",DBBPOmtTb:\"ArrowUpLeft\",DtXaTLTgp:\"var(--token-937005d3-3d86-46da-84fc-0fa33060e6ae, rgb(52, 145, 214))\",height:\"100%\",id:\"ZSvSdVVOi\",layoutId:\"ZSvSdVVOi\",style:{height:\"100%\"},UK8Yi_l2D:resolvedLinks2[0],variant:\"FF1ZBAbyc\",vtqExfYNv:\"var(--token-937005d3-3d86-46da-84fc-0fa33060e6ae, rgb(52, 145, 214))\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19p08vl\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1cy6115\",\"data-styles-preset\":\"uLmUntr7m\",style:{\"--framer-text-color\":\"var(--token-e7df919e-617e-44f4-8a34-f5d1639dbe22, rgba(4, 6, 45, 0.5))\"},children:\"Author\"})}),className:\"framer-1mjdbf3\",\"data-framer-name\":\"Author\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1cy6115\",\"data-styles-preset\":\"uLmUntr7m\",style:{\"--framer-text-color\":\"var(--token-31bfd8ea-ae60-401f-b6f8-d27f92a592ff, rgb(4, 6, 45))\"},children:\"Decentralised.Co\"})}),className:\"framer-1sc0ix\",\"data-framer-name\":\"Metatag\",fonts:[\"Inter\"],text:zkptcx2jt,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xww9qf\",\"data-framer-name\":\"Read time\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1cy6115\",\"data-styles-preset\":\"uLmUntr7m\",style:{\"--framer-text-color\":\"var(--token-e7df919e-617e-44f4-8a34-f5d1639dbe22, rgba(4, 6, 45, 0.5))\"},children:\"Read time\"})}),className:\"framer-jyct2m\",\"data-framer-name\":\"Author\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iz87t0-container\",isAuthoredByUser:true,nodeId:\"erGBnLQDZ\",scopeId:\"ZUoEVMx5W\",children:/*#__PURE__*/_jsx(ContentDuration,{fontColor:\"var(--token-31bfd8ea-ae60-401f-b6f8-d27f92a592ff, rgb(4, 6, 45))\",fontFamily:\"Outfit\",fontSize:14,fontWeight:500,height:\"100%\",id:\"erGBnLQDZ\",layoutId:\"erGBnLQDZ\",lineHeight:1,textTransform:\"uppercase\",width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qtosle hidden-42os26 hidden-59oo4m\",\"data-framer-name\":\"Socials\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1cy6115\",\"data-styles-preset\":\"uLmUntr7m\",style:{\"--framer-text-color\":\"var(--token-e7df919e-617e-44f4-8a34-f5d1639dbe22, rgba(4, 6, 45, 0.5))\"},children:\"Socials\"})}),className:\"framer-xfitnt\",\"data-framer-name\":\"ToC\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mpk9pl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5o6k0d-container\",\"data-framer-name\":\"Twitter\",isAuthoredByUser:true,isModuleExternal:true,name:\"Twitter\",nodeId:\"I_3Zixm7H\",scopeId:\"ZUoEVMx5W\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColorType:\"custom\",fillOpacity:1,iconColor:\"var(--token-11b45160-fc0d-4bdb-b77a-ba987c5bf957, rgb(5, 5, 250))\",iconColorType:\"custom\"},height:\"100%\",iconSize:20,id:\"I_3Zixm7H\",layoutId:\"I_3Zixm7H\",name:\"Twitter\",newTab:true,padding:0,paddingBottom:0,paddingIsMixed:false,paddingLeft:0,paddingRight:0,paddingTop:0,radius:0,radiusBottomLeft:0,radiusBottomRight:0,radiusIsMixed:false,radiusTopLeft:0,radiusTopRight:0,shareLink:\"currentPage\",shareUrl:\"\",type:\"twitter\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3tmrq6-container\",\"data-framer-name\":\"LinkedIn\",isAuthoredByUser:true,isModuleExternal:true,name:\"LinkedIn\",nodeId:\"WpNuYG1XP\",scopeId:\"ZUoEVMx5W\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColorType:\"custom\",fillOpacity:1,iconColor:\"var(--token-11b45160-fc0d-4bdb-b77a-ba987c5bf957, rgb(5, 5, 250))\",iconColorType:\"custom\"},height:\"100%\",iconSize:20,id:\"WpNuYG1XP\",layoutId:\"WpNuYG1XP\",name:\"LinkedIn\",newTab:true,padding:0,paddingBottom:0,paddingIsMixed:false,paddingLeft:0,paddingRight:0,paddingTop:0,radius:0,radiusBottomLeft:0,radiusBottomRight:0,radiusIsMixed:false,radiusTopLeft:0,radiusTopRight:0,shareLink:\"currentPage\",shareUrl:\"\",type:\"linkedIn\",width:\"100%\"})})})]})]}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ud93u4\",\"data-framer-name\":\"ToC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1cy6115\",\"data-styles-preset\":\"uLmUntr7m\",style:{\"--framer-text-color\":\"var(--token-e7df919e-617e-44f4-8a34-f5d1639dbe22, rgba(4, 6, 45, 0.5))\"},children:\"Table of contents\"})}),className:\"framer-1tbyld3\",\"data-framer-name\":\"ToC\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i3Q_RJPrY:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 84px) / 3, 1px) - 32px)`},SeBoKWmMK:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`},USdtUDPce:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:`calc(max((${componentViewport?.width||\"100vw\"} - 84px) / 3.5, 1px) - 32px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ixgtj0-container\",nodeId:\"go0R_GOza\",rendersWithMotion:true,scopeId:\"ZUoEVMx5W\",children:/*#__PURE__*/_jsx(BlogToCWithTableOfContentixgtj0WithMappedReactPropsz78zwi,{height:\"100%\",id:\"go0R_GOza\",J9jWUW6v2:\"Change to Heading 4\",layoutId:\"go0R_GOza\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1470ev5\",\"data-border\":true,\"data-framer-name\":\"Content\",id:elementId1,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ct296v\",\"data-framer-name\":\"Article details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bg2ety\",\"data-framer-name\":\"meta + date\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qzh1un-container\",nodeId:\"mefisJTUC\",scopeId:\"ZUoEVMx5W\",children:/*#__PURE__*/_jsx(Tags,{height:\"100%\",id:\"mefisJTUC\",iPpNNOMuD:enumToDisplayNameFunctions[\"UgISQxpyy\"]?.(UgISQxpyy,activeLocale),layoutId:\"mefisJTUC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1cy6115\",\"data-styles-preset\":\"uLmUntr7m\",style:{\"--framer-text-color\":\"var(--token-e7df919e-617e-44f4-8a34-f5d1639dbe22, rgba(4, 6, 45, 0.5))\"},children:\"April 8, 2022\"})}),className:\"framer-10rwz8h\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i3Q_RJPrY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-31bfd8ea-ae60-401f-b6f8-d27f92a592ff, rgb(4, 6, 45))\"},children:\"Tokenizing the World: The Potential and Challenges of Real-World Assets\"})})},SeBoKWmMK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-31bfd8ea-ae60-401f-b6f8-d27f92a592ff, rgb(4, 6, 45))\"},children:\"Tokenizing the World: The Potential and Challenges of Real-World Assets\"})})},USdtUDPce:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-31bfd8ea-ae60-401f-b6f8-d27f92a592ff, rgb(4, 6, 45))\"},children:\"Tokenizing the World: The Potential and Challenges of Real-World Assets\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-31bfd8ea-ae60-401f-b6f8-d27f92a592ff, rgb(4, 6, 45))\"},children:\"Tokenizing the World: The Potential and Challenges of Real-World Assets\"})}),className:\"framer-1o97t1\",\"data-framer-name\":\"Title\",fonts:[\"GF;Outfit-500\"],text:QvQ5EdO_n,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i3Q_RJPrY:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max(min(max((${componentViewport?.width||\"100vw\"} - 84px) / 1.5, 1px), 800px), 696px) - 64px)`,...toResponsiveImage(ugrh3TtXa)}},SeBoKWmMK:{background:{alt:\"\",fit:\"fill\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(ugrh3TtXa)}},USdtUDPce:{background:{alt:\"\",fit:\"fill\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,...toResponsiveImage(ugrh3TtXa)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc(max(min(max((${componentViewport?.width||\"100vw\"} - 84px) / 1.4, 1px), 800px), 696px) - 64px)`,...toResponsiveImage(ugrh3TtXa)},className:\"framer-di6x6s\",\"data-framer-name\":\"Cover image\"})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mtm4va-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uo_m5kq6a\",scopeId:\"ZUoEVMx5W\",children:/*#__PURE__*/_jsx(Spotify,{height:\"100%\",id:\"uo_m5kq6a\",layoutId:\"uo_m5kq6a\",style:{height:\"100%\",width:\"100%\"},theme:0,url:IGpjBJXF3,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1s2gj1r\",\"data-styles-preset\":\"glUAt33ym\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-31bfd8ea-ae60-401f-b6f8-d27f92a592ff, rgb(4, 6, 45))\"},children:\"Farcaster is a decentralized social networking platform similar to Twitter that is based on Optimism, Ethereum's layer 2. Farcaster's main goal is to facilitate communication and value transfer between different decentralized applications and platforms.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-31bfd8ea-ae60-401f-b6f8-d27f92a592ff, rgb(4, 6, 45))\"},children:'Founded by former Coinbase engineers Dan Romero and Varun Srinivasan in 2020, Farcaster is described as a \"sufficiently decentralized\" social network - we will see what this means later on. Farcaster launched its first version in November 2021. By June 2022, the platform already had over 100,000 active users. Farcaster is planning to release its v3 version in August which will allow anyone to register and use the protocol more easily and accessibly.'}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-31bfd8ea-ae60-401f-b6f8-d27f92a592ff, rgb(4, 6, 45))\"},children:\"Vitalik Buterin praised the qualities of this social network and emphasized the importance of a pleasant user experience. According to him, cryptographic social networks, like games built on blockchain, should offer not only privacy and anonymity but also a satisfactory user experience. Buterin further pointed out that the growing concern for privacy is driving the popularity of decentralized social network applications as an alternative to the centralized social networks we use daily.\"})]})}),className:\"framer-lctm12\",fonts:[\"Inter\"],text:JdadcWHqF,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"mP3IMCj3b\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"zbIPCrZMV\"]},children:/*#__PURE__*/_jsx(RichTextWithContent19452yl,{__fromCanvasComponent:true,children:hgArXYHem,className:\"framer-19452yl\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],id:elementId2,ref:ref4,stylesPresetsClassNames:{a:\"framer-styles-preset-14cyyfy\",blockquote:\"framer-styles-preset-1czwj59\",code:\"framer-styles-preset-13iwnn4\",h1:\"framer-styles-preset-h0a1wm\",h2:\"framer-styles-preset-f8op2y\",h3:\"framer-styles-preset-tbry9a\",h4:\"framer-styles-preset-itk474\",h5:\"framer-styles-preset-5tqv4f\",h6:\"framer-styles-preset-1cy6115\",img:\"framer-styles-preset-8rkv73\",p:\"framer-styles-preset-1s2gj1r\",table:\"framer-styles-preset-1psnu4i\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"mP3IMCj3b\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"zbIPCrZMV\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:we5SQP2kX,className:\"framer-vtt31p\",\"data-framer-name\":\"About author\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],stylesPresetsClassNames:{a:\"framer-styles-preset-14cyyfy\",blockquote:\"framer-styles-preset-1czwj59\",code:\"framer-styles-preset-13iwnn4\",h1:\"framer-styles-preset-h0a1wm\",h2:\"framer-styles-preset-f8op2y\",h3:\"framer-styles-preset-tbry9a\",h4:\"framer-styles-preset-itk474\",h5:\"framer-styles-preset-5tqv4f\",h6:\"framer-styles-preset-1cy6115\",img:\"framer-styles-preset-8rkv73\",p:\"framer-styles-preset-19ihwdd\",table:\"framer-styles-preset-1psnu4i\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"mP3IMCj3b\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"zbIPCrZMV\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:jcGrZCvvW,className:\"framer-1ysutlx\",\"data-framer-name\":\"Disclaimer\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],stylesPresetsClassNames:{a:\"framer-styles-preset-14cyyfy\",blockquote:\"framer-styles-preset-1czwj59\",code:\"framer-styles-preset-13iwnn4\",h1:\"framer-styles-preset-h0a1wm\",h2:\"framer-styles-preset-f8op2y\",h3:\"framer-styles-preset-tbry9a\",h4:\"framer-styles-preset-itk474\",h5:\"framer-styles-preset-5tqv4f\",h6:\"framer-styles-preset-1cy6115\",img:\"framer-styles-preset-8rkv73\",p:\"framer-styles-preset-19ihwdd\",table:\"framer-styles-preset-1psnu4i\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hn5s20 hidden-d8ao2z hidden-1q0xjpy\",\"data-border\":true,\"data-framer-name\":\"Socials\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1cy6115\",\"data-styles-preset\":\"uLmUntr7m\",style:{\"--framer-text-color\":\"var(--token-e7df919e-617e-44f4-8a34-f5d1639dbe22, rgba(4, 6, 45, 0.5))\"},children:\"Socials\"})}),className:\"framer-1j992gl\",\"data-framer-name\":\"ToC\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wqm9pa\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rtgwnh-container\",\"data-framer-name\":\"Twitter\",isAuthoredByUser:true,isModuleExternal:true,name:\"Twitter\",nodeId:\"WVEiq2f35\",scopeId:\"ZUoEVMx5W\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColorType:\"custom\",fillOpacity:1,iconColor:\"var(--token-11b45160-fc0d-4bdb-b77a-ba987c5bf957, rgb(5, 5, 250))\",iconColorType:\"custom\"},height:\"100%\",iconSize:20,id:\"WVEiq2f35\",layoutId:\"WVEiq2f35\",name:\"Twitter\",newTab:true,padding:12,paddingBottom:12,paddingIsMixed:false,paddingLeft:12,paddingRight:12,paddingTop:12,radius:0,radiusBottomLeft:0,radiusBottomRight:0,radiusIsMixed:false,radiusTopLeft:0,radiusTopRight:0,shareLink:\"currentPage\",shareUrl:\"\",type:\"twitter\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1da9m3-container\",\"data-framer-name\":\"LinkedIn\",isAuthoredByUser:true,isModuleExternal:true,name:\"LinkedIn\",nodeId:\"FdHB2LgHG\",scopeId:\"ZUoEVMx5W\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColorType:\"custom\",fillOpacity:1,iconColor:\"var(--token-11b45160-fc0d-4bdb-b77a-ba987c5bf957, rgb(5, 5, 250))\",iconColorType:\"custom\"},height:\"100%\",iconSize:20,id:\"FdHB2LgHG\",layoutId:\"FdHB2LgHG\",name:\"LinkedIn\",newTab:true,padding:12,paddingBottom:12,paddingIsMixed:false,paddingLeft:12,paddingRight:12,paddingTop:12,radius:0,radiusBottomLeft:0,radiusBottomRight:0,radiusIsMixed:false,radiusTopLeft:0,radiusTopRight:0,shareLink:\"currentPage\",shareUrl:\"\",type:\"linkedIn\",width:\"100%\"})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hw3jwl hidden-d8ao2z hidden-1q0xjpy\",\"data-framer-name\":\"top-trigger\",id:elementId3,ref:ref2})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14e9gsi\",\"data-border\":true,\"data-framer-name\":\"Additional articles\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ipyy0m\",\"data-border\":true,\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1cy6115\",\"data-styles-preset\":\"uLmUntr7m\",style:{\"--framer-text-color\":\"var(--token-e7df919e-617e-44f4-8a34-f5d1639dbe22, rgba(4, 6, 45, 0.5))\"},children:\"You might also be interested in\u2026\"})}),className:\"framer-15v2mvm\",\"data-framer-name\":\"stay in the loop\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g94155\",\"data-framer-name\":\"Articles\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vh7t40\",\"data-border\":true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"fRp8C1KEw\",data:Research,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"fRp8C1KEw\",name:\"wSl6kHUUJ\",type:\"Identifier\"},{collection:\"fRp8C1KEw\",name:\"ugrh3TtXa\",type:\"Identifier\"},{collection:\"fRp8C1KEw\",name:\"O1jHcxj3P\",type:\"Identifier\"},{collection:\"fRp8C1KEw\",name:\"zkptcx2jt\",type:\"Identifier\"},{collection:\"fRp8C1KEw\",name:\"irF2UPzp3\",type:\"Identifier\"},{collection:\"fRp8C1KEw\",name:\"QvQ5EdO_n\",type:\"Identifier\"},{collection:\"fRp8C1KEw\",name:\"UgISQxpyy\",type:\"Identifier\"},{collection:\"fRp8C1KEw\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"fRp8C1KEw\",name:\"QvQ5EdO_n\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:QvQ5EdO_n},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idfRp8C1KEw,irF2UPzp3:irF2UPzp3fRp8C1KEw,O1jHcxj3P:O1jHcxj3PfRp8C1KEw,QvQ5EdO_n:QvQ5EdO_nfRp8C1KEw,UgISQxpyy:UgISQxpyyfRp8C1KEw,ugrh3TtXa:ugrh3TtXafRp8C1KEw,wSl6kHUUJ:wSl6kHUUJfRp8C1KEw,zkptcx2jt:zkptcx2jtfRp8C1KEw},index)=>{wSl6kHUUJfRp8C1KEw??=\"\";O1jHcxj3PfRp8C1KEw??=\"#09F\";zkptcx2jtfRp8C1KEw??=\"\";QvQ5EdO_nfRp8C1KEw??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`fRp8C1KEw-${idfRp8C1KEw}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{wSl6kHUUJ:wSl6kHUUJfRp8C1KEw},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{wSl6kHUUJ:wSl6kHUUJfRp8C1KEw},webPageId:\"ZUoEVMx5W\"},motionChild:true,nodeId:\"QSGbCxC21\",scopeId:\"ZUoEVMx5W\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-jdnvnm framer-d9eij2\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SeBoKWmMK:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`},USdtUDPce:{width:`max(max(${componentViewport?.width||\"100vw\"}, 1px) / 2, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:`max(${componentViewport?.width||\"100vw\"} - 84px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ujws40-container\",nodeId:\"b_441TBkt\",scopeId:\"ZUoEVMx5W\",children:/*#__PURE__*/_jsx(BlogCard,{DpTz4XOWG:QvQ5EdO_nfRp8C1KEw,FouaRzPHZ:toDateString(irF2UPzp3fRp8C1KEw,{dateStyle:\"full\",locale:\"\"},activeLocaleCode),height:\"100%\",id:\"b_441TBkt\",layoutId:\"b_441TBkt\",PSL0P1qKG:{borderBottomWidth:0,borderColor:'var(--token-d743bfb0-8aa6-4d87-b6aa-8c4fe0aba2d4, rgb(4, 6, 45)) /* {\"name\":\"divider-stroke\"} */',borderLeftWidth:0,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0},sIvVuYBbq:enumToDisplayNameFunctions[\"UgISQxpyy\"]?.(UgISQxpyyfRp8C1KEw,activeLocale),style:{width:\"100%\"},sy9HtD9Ts:O1jHcxj3PfRp8C1KEw,variant:\"nU11bKy76\",width:\"100%\",YwQdQT6LN:toResponsiveImage(ugrh3TtXafRp8C1KEw),zBRgFsvOc:zkptcx2jtfRp8C1KEw})})})})})})})},idfRp8C1KEw);})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w3m0nr\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SeBoKWmMK:{width:componentViewport?.width||\"100vw\"},USdtUDPce:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:628,width:`max(${componentViewport?.width||\"100vw\"} - 84px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15jsgjh-container\",nodeId:\"OCP7AbGDw\",scopeId:\"ZUoEVMx5W\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i3Q_RJPrY:{variant:\"SldmQF2G8\"},SeBoKWmMK:{variant:\"d_EFuxjes\"},USdtUDPce:{variant:\"CNFuW9Dy9\"}},children:/*#__PURE__*/_jsx(NavigationFooter,{height:\"100%\",id:\"OCP7AbGDw\",layoutId:\"OCP7AbGDw\",style:{width:\"100%\"},variant:\"xO6oclv7U\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AKtW8.framer-d9eij2, .framer-AKtW8 .framer-d9eij2 { display: block; }\",\".framer-AKtW8.framer-d8ao2z { align-content: center; align-items: center; background-color: var(--token-b4f3eec8-f3eb-4936-9430-d9506191ddb5, #f6f6f6); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-AKtW8 .framer-13tko33 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1px); overflow: hidden; position: absolute; right: 0px; top: 0px; width: 1px; z-index: 1; }\",\".framer-AKtW8 .framer-1xm3p6y { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; pointer-events: none; position: fixed; top: 0px; width: 100%; z-index: 5; }\",\".framer-AKtW8 .framer-utmx4a-container { bottom: 16px; flex: none; height: auto; pointer-events: auto; position: absolute; right: 0px; width: 48px; z-index: 4; }\",\".framer-AKtW8 .framer-1c04oi2-container { flex: none; height: 64px; position: relative; width: 810px; }\",\".framer-AKtW8 .framer-stpfax-container { flex: none; height: 100vh; left: 0px; position: fixed; top: 0px; width: 84px; z-index: 10; }\",\".framer-AKtW8 .framer-16da1q8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 8px; justify-content: flex-start; left: 84px; overflow: hidden; padding: 0px; position: fixed; right: 0px; top: 0px; z-index: 2; }\",\".framer-AKtW8 .framer-1b6gz6 { background-color: var(--token-bbba71b0-2193-48b3-91fa-6b86f6ab798a, #95e7ed); flex: none; height: 8px; overflow: hidden; position: relative; width: 110%; }\",\".framer-AKtW8 .framer-y0qqdi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 84px; position: relative; width: 100%; }\",\".framer-AKtW8 .framer-10r7805 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 0.4 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: auto; justify-content: flex-start; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-AKtW8 .framer-7x5pb0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-AKtW8 .framer-17xqy2-container { flex: none; height: 17px; position: relative; width: auto; }\",\".framer-AKtW8 .framer-19p08vl, .framer-AKtW8 .framer-1xww9qf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 16px 0px 16px; position: relative; width: 100%; z-index: 1; }\",\".framer-AKtW8 .framer-1mjdbf3, .framer-AKtW8 .framer-1sc0ix, .framer-AKtW8 .framer-jyct2m, .framer-AKtW8 .framer-xfitnt, .framer-AKtW8 .framer-1tbyld3, .framer-AKtW8 .framer-10rwz8h, .framer-AKtW8 .framer-1j992gl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AKtW8 .framer-1iz87t0-container, .framer-AKtW8 .framer-5o6k0d-container, .framer-AKtW8 .framer-3tmrq6-container, .framer-AKtW8 .framer-qzh1un-container, .framer-AKtW8 .framer-1rtgwnh-container, .framer-AKtW8 .framer-1da9m3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-AKtW8 .framer-1qtosle { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 100%; z-index: 1; }\",\".framer-AKtW8 .framer-mpk9pl, .framer-AKtW8 .framer-1bg2ety { align-content: center; align-items: center; 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-AKtW8 .framer-1ud93u4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 16px 64px 16px; position: sticky; top: 40px; width: 100%; z-index: 1; }\",\".framer-AKtW8 .framer-ixgtj0-container { flex: none; height: auto; max-width: 100%; position: relative; width: 100%; }\",\".framer-AKtW8 .framer-1470ev5 { --border-bottom-width: 0px; --border-color: var(--token-d743bfb0-8aa6-4d87-b6aa-8c4fe0aba2d4, #04062d); --border-left-width: 1px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 800px; min-width: 696px; overflow: hidden; padding: 0px 32px 104px 32px; position: relative; width: 1px; }\",\".framer-AKtW8 .framer-1ct296v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-AKtW8 .framer-1o97t1 { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AKtW8 .framer-di6x6s { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 100%; }\",\".framer-AKtW8 .framer-mtm4va-container { flex: none; height: 153px; position: relative; width: 100%; }\",\".framer-AKtW8 .framer-lctm12 { --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-AKtW8 .framer-19452yl, .framer-AKtW8 .framer-vtt31p, .framer-AKtW8 .framer-1ysutlx { --framer-paragraph-spacing: 32px; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AKtW8 .framer-1hn5s20 { --border-bottom-width: 0px; --border-color: var(--token-d743bfb0-8aa6-4d87-b6aa-8c4fe0aba2d4, #04062d); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-AKtW8 .framer-wqm9pa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AKtW8 .framer-1hw3jwl { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1px); overflow: hidden; position: absolute; right: 0px; top: 1000px; width: 1px; z-index: 1; }\",\".framer-AKtW8 .framer-14e9gsi { --border-bottom-width: 1px; --border-color: var(--token-d743bfb0-8aa6-4d87-b6aa-8c4fe0aba2d4, #04062d); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 84px; position: relative; width: 100%; }\",\".framer-AKtW8 .framer-1ipyy0m { --border-bottom-width: 1px; --border-color: var(--token-d743bfb0-8aa6-4d87-b6aa-8c4fe0aba2d4, #04062d); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-AKtW8 .framer-15v2mvm { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1292px; word-break: break-word; word-wrap: break-word; }\",\".framer-AKtW8 .framer-1g94155 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AKtW8 .framer-vh7t40 { --border-bottom-width: 0px; --border-color: var(--token-b4f3eec8-f3eb-4936-9430-d9506191ddb5, #f6f6f6); --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-AKtW8 .framer-jdnvnm { --border-bottom-width: 0px; --border-color: var(--token-d743bfb0-8aa6-4d87-b6aa-8c4fe0aba2d4, #04062d); --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-AKtW8 .framer-ujws40-container, .framer-AKtW8 .framer-15jsgjh-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-AKtW8 .framer-w3m0nr { 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 0px 0px 84px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AKtW8.framer-d8ao2z, .framer-AKtW8 .framer-16da1q8, .framer-AKtW8 .framer-y0qqdi, .framer-AKtW8 .framer-10r7805, .framer-AKtW8 .framer-7x5pb0, .framer-AKtW8 .framer-19p08vl, .framer-AKtW8 .framer-1xww9qf, .framer-AKtW8 .framer-1qtosle, .framer-AKtW8 .framer-mpk9pl, .framer-AKtW8 .framer-1ud93u4, .framer-AKtW8 .framer-1470ev5, .framer-AKtW8 .framer-1ct296v, .framer-AKtW8 .framer-1bg2ety, .framer-AKtW8 .framer-1hn5s20, .framer-AKtW8 .framer-wqm9pa, .framer-AKtW8 .framer-14e9gsi, .framer-AKtW8 .framer-1ipyy0m, .framer-AKtW8 .framer-1g94155, .framer-AKtW8 .framer-vh7t40, .framer-AKtW8 .framer-jdnvnm, .framer-AKtW8 .framer-w3m0nr { gap: 0px; } .framer-AKtW8.framer-d8ao2z > *, .framer-AKtW8 .framer-1ct296v > *, .framer-AKtW8 .framer-14e9gsi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AKtW8.framer-d8ao2z > :first-child, .framer-AKtW8 .framer-10r7805 > :first-child, .framer-AKtW8 .framer-19p08vl > :first-child, .framer-AKtW8 .framer-1xww9qf > :first-child, .framer-AKtW8 .framer-1qtosle > :first-child, .framer-AKtW8 .framer-1ud93u4 > :first-child, .framer-AKtW8 .framer-1470ev5 > :first-child, .framer-AKtW8 .framer-1ct296v > :first-child, .framer-AKtW8 .framer-1hn5s20 > :first-child, .framer-AKtW8 .framer-14e9gsi > :first-child, .framer-AKtW8 .framer-1ipyy0m > :first-child { margin-top: 0px; } .framer-AKtW8.framer-d8ao2z > :last-child, .framer-AKtW8 .framer-10r7805 > :last-child, .framer-AKtW8 .framer-19p08vl > :last-child, .framer-AKtW8 .framer-1xww9qf > :last-child, .framer-AKtW8 .framer-1qtosle > :last-child, .framer-AKtW8 .framer-1ud93u4 > :last-child, .framer-AKtW8 .framer-1470ev5 > :last-child, .framer-AKtW8 .framer-1ct296v > :last-child, .framer-AKtW8 .framer-1hn5s20 > :last-child, .framer-AKtW8 .framer-14e9gsi > :last-child, .framer-AKtW8 .framer-1ipyy0m > :last-child { margin-bottom: 0px; } .framer-AKtW8 .framer-16da1q8 > *, .framer-AKtW8 .framer-y0qqdi > *, .framer-AKtW8 .framer-7x5pb0 > *, .framer-AKtW8 .framer-wqm9pa > *, .framer-AKtW8 .framer-1g94155 > *, .framer-AKtW8 .framer-vh7t40 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-AKtW8 .framer-16da1q8 > :first-child, .framer-AKtW8 .framer-y0qqdi > :first-child, .framer-AKtW8 .framer-7x5pb0 > :first-child, .framer-AKtW8 .framer-mpk9pl > :first-child, .framer-AKtW8 .framer-1bg2ety > :first-child, .framer-AKtW8 .framer-wqm9pa > :first-child, .framer-AKtW8 .framer-1g94155 > :first-child, .framer-AKtW8 .framer-vh7t40 > :first-child, .framer-AKtW8 .framer-jdnvnm > :first-child, .framer-AKtW8 .framer-w3m0nr > :first-child { margin-left: 0px; } .framer-AKtW8 .framer-16da1q8 > :last-child, .framer-AKtW8 .framer-y0qqdi > :last-child, .framer-AKtW8 .framer-7x5pb0 > :last-child, .framer-AKtW8 .framer-mpk9pl > :last-child, .framer-AKtW8 .framer-1bg2ety > :last-child, .framer-AKtW8 .framer-wqm9pa > :last-child, .framer-AKtW8 .framer-1g94155 > :last-child, .framer-AKtW8 .framer-vh7t40 > :last-child, .framer-AKtW8 .framer-jdnvnm > :last-child, .framer-AKtW8 .framer-w3m0nr > :last-child { margin-right: 0px; } .framer-AKtW8 .framer-10r7805 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-AKtW8 .framer-19p08vl > *, .framer-AKtW8 .framer-1xww9qf > *, .framer-AKtW8 .framer-1qtosle > *, .framer-AKtW8 .framer-1ud93u4 > *, .framer-AKtW8 .framer-1hn5s20 > *, .framer-AKtW8 .framer-1ipyy0m > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-AKtW8 .framer-mpk9pl > *, .framer-AKtW8 .framer-1bg2ety > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-AKtW8 .framer-1470ev5 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AKtW8 .framer-jdnvnm > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-AKtW8 .framer-w3m0nr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,'.framer-AKtW8[data-border=\"true\"]::after, .framer-AKtW8 [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: 1200px) and (max-width: 1439px) { .framer-AKtW8.framer-d8ao2z { width: 1200px; } .framer-AKtW8 .framer-10r7805 { flex: 0.5 0 0px; } .framer-AKtW8 .framer-1ct296v { order: 0; } .framer-AKtW8 .framer-di6x6s { order: 1; } .framer-AKtW8 .framer-mtm4va-container { order: 2; } .framer-AKtW8 .framer-lctm12 { order: 3; } .framer-AKtW8 .framer-19452yl { order: 4; } .framer-AKtW8 .framer-vtt31p { order: 5; } .framer-AKtW8 .framer-1ysutlx { order: 6; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-AKtW8.framer-d8ao2z { width: 810px; } .framer-AKtW8 .framer-1xm3p6y { left: 0px; right: 0px; width: unset; } .framer-AKtW8 .framer-utmx4a-container { bottom: 48px; } .framer-AKtW8 .framer-1c04oi2-container { position: sticky; top: 0px; width: 100%; z-index: 10; } .framer-AKtW8 .framer-16da1q8 { left: 0px; top: 64px; z-index: 5; } .framer-AKtW8 .framer-y0qqdi { flex-direction: column; padding: 0px; } .framer-AKtW8 .framer-10r7805 { align-self: unset; background-color: var(--token-b4f3eec8-f3eb-4936-9430-d9506191ddb5, #f6f6f6); flex: none; height: min-content; order: 0; padding: 40px 0px 24px 0px; position: sticky; top: 64px; width: 100%; } .framer-AKtW8 .framer-19p08vl, .framer-AKtW8 .framer-1xww9qf, .framer-AKtW8 .framer-1ud93u4 { padding: 0px 32px 0px 16px; } .framer-AKtW8 .framer-1470ev5 { --border-left-width: 0px; --border-top-width: 1px; background-color: var(--token-b4f3eec8-f3eb-4936-9430-d9506191ddb5, #f6f6f6); flex: none; max-width: unset; min-width: 100%; order: 1; padding: 0px 32px 64px 32px; width: 100%; z-index: 3; } .framer-AKtW8 .framer-1ct296v { gap: 8px; order: 1; padding: 32px 0px 32px 0px; } .framer-AKtW8 .framer-di6x6s { order: 2; } .framer-AKtW8 .framer-mtm4va-container { order: 3; } .framer-AKtW8 .framer-lctm12 { order: 8; } .framer-AKtW8 .framer-19452yl { order: 4; } .framer-AKtW8 .framer-vtt31p { order: 5; } .framer-AKtW8 .framer-1ysutlx { order: 6; } .framer-AKtW8 .framer-1hn5s20 { order: 7; } .framer-AKtW8 .framer-1hw3jwl { order: 0; } .framer-AKtW8 .framer-14e9gsi, .framer-AKtW8 .framer-w3m0nr { padding: 0px; } .framer-AKtW8 .framer-vh7t40 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); justify-content: center; } .framer-AKtW8 .framer-jdnvnm { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AKtW8 .framer-y0qqdi, .framer-AKtW8 .framer-1ct296v, .framer-AKtW8 .framer-vh7t40 { gap: 0px; } .framer-AKtW8 .framer-y0qqdi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AKtW8 .framer-y0qqdi > :first-child, .framer-AKtW8 .framer-1ct296v > :first-child { margin-top: 0px; } .framer-AKtW8 .framer-y0qqdi > :last-child, .framer-AKtW8 .framer-1ct296v > :last-child { margin-bottom: 0px; } .framer-AKtW8 .framer-1ct296v > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-AKtW8 .framer-vh7t40 > *, .framer-AKtW8 .framer-vh7t40 > :first-child, .framer-AKtW8 .framer-vh7t40 > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-AKtW8.framer-d8ao2z { width: 390px; } .framer-AKtW8 .framer-1xm3p6y { left: 0px; right: 0px; width: unset; } .framer-AKtW8 .framer-utmx4a-container { bottom: 48px; } .framer-AKtW8 .framer-1c04oi2-container { position: sticky; top: 0px; width: 100%; z-index: 10; } .framer-AKtW8 .framer-16da1q8 { flex-direction: column; left: 0px; top: 64px; z-index: 5; } .framer-AKtW8 .framer-y0qqdi, .framer-AKtW8 .framer-w3m0nr { flex-direction: column; padding: 0px; } .framer-AKtW8 .framer-10r7805 { align-self: unset; background-color: var(--token-b4f3eec8-f3eb-4936-9430-d9506191ddb5, #f6f6f6); flex: none; height: min-content; order: 0; padding: 40px 0px 40px 0px; position: sticky; top: 64px; width: 100%; } .framer-AKtW8 .framer-7x5pb0 { padding: 0px 16px 0px 20px; } .framer-AKtW8 .framer-19p08vl, .framer-AKtW8 .framer-1xww9qf, .framer-AKtW8 .framer-1ud93u4 { padding: 0px 20px 0px 20px; } .framer-AKtW8 .framer-1470ev5 { --border-left-width: 0px; --border-top-width: 1px; background-color: var(--token-b4f3eec8-f3eb-4936-9430-d9506191ddb5, #f6f6f6); flex: none; max-width: unset; min-width: unset; order: 1; padding: 0px 20px 64px 20px; width: 100%; z-index: 3; } .framer-AKtW8 .framer-1ct296v { gap: 8px; order: 1; padding: 40px 0px 32px 0px; } .framer-AKtW8 .framer-di6x6s { order: 2; } .framer-AKtW8 .framer-mtm4va-container { order: 3; } .framer-AKtW8 .framer-lctm12 { order: 8; } .framer-AKtW8 .framer-19452yl { order: 4; } .framer-AKtW8 .framer-vtt31p { order: 5; } .framer-AKtW8 .framer-1ysutlx { order: 6; } .framer-AKtW8 .framer-1hn5s20 { order: 7; } .framer-AKtW8 .framer-1hw3jwl { order: 0; } .framer-AKtW8 .framer-14e9gsi { padding: 0px; } .framer-AKtW8 .framer-1ipyy0m { padding: 32px 20px 32px 20px; } .framer-AKtW8 .framer-vh7t40 { flex-direction: column; } .framer-AKtW8 .framer-jdnvnm { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; flex: none; width: 100%; } .framer-AKtW8 .framer-15jsgjh-container { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AKtW8 .framer-16da1q8, .framer-AKtW8 .framer-y0qqdi, .framer-AKtW8 .framer-1ct296v, .framer-AKtW8 .framer-vh7t40, .framer-AKtW8 .framer-w3m0nr { gap: 0px; } .framer-AKtW8 .framer-16da1q8 > *, .framer-AKtW8 .framer-y0qqdi > *, .framer-AKtW8 .framer-vh7t40 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AKtW8 .framer-16da1q8 > :first-child, .framer-AKtW8 .framer-y0qqdi > :first-child, .framer-AKtW8 .framer-1ct296v > :first-child, .framer-AKtW8 .framer-vh7t40 > :first-child, .framer-AKtW8 .framer-w3m0nr > :first-child { margin-top: 0px; } .framer-AKtW8 .framer-16da1q8 > :last-child, .framer-AKtW8 .framer-y0qqdi > :last-child, .framer-AKtW8 .framer-1ct296v > :last-child, .framer-AKtW8 .framer-vh7t40 > :last-child, .framer-AKtW8 .framer-w3m0nr > :last-child { margin-bottom: 0px; } .framer-AKtW8 .framer-1ct296v > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-AKtW8 .framer-w3m0nr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12846\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"i3Q_RJPrY\":{\"layout\":[\"fixed\",\"auto\"]},\"USdtUDPce\":{\"layout\":[\"fixed\",\"auto\"]},\"SeBoKWmMK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"qb2GkZT5C\":{\"pattern\":\":qb2GkZT5C\",\"name\":\"top\"},\"zWXT6BI5F\":{\"pattern\":\":zWXT6BI5F\",\"name\":\"start\"},\"Wy5Otf5A_\":{\"pattern\":\":Wy5Otf5A_\",\"name\":\"content\"},\"nAunUVaeZ\":{\"pattern\":\":nAunUVaeZ\",\"name\":\"top-trigger\"},\"ixpb1EBGB\":{\"pattern\":\":ixpb1EBGB\",\"name\":\"end\"}}\n * @framerResponsiveScreen\n */const FramerZUoEVMx5W=withCSS(Component,css,\"framer-AKtW8\");export default FramerZUoEVMx5W;FramerZUoEVMx5W.displayName=\"Blog Detail\";FramerZUoEVMx5W.defaultProps={height:12846,width:1440};addFonts(FramerZUoEVMx5W,[{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:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]},...CTAIconFonts,...NavigationTopnavFonts,...NavigationSidenavFonts,...TextLinkFonts,...ContentDurationFonts,...SocialShareFonts,...BlogToCFonts,...TagsFonts,...SpotifyFonts,...BlogCardFonts,...NavigationFooterFonts,...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?.[\"mP3IMCj3b\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"mP3IMCj3b\"]):[],...componentPresets.fonts?.[\"zbIPCrZMV\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"zbIPCrZMV\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZUoEVMx5W\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"qb2GkZT5C\\\":{\\\"pattern\\\":\\\":qb2GkZT5C\\\",\\\"name\\\":\\\"top\\\"},\\\"zWXT6BI5F\\\":{\\\"pattern\\\":\\\":zWXT6BI5F\\\",\\\"name\\\":\\\"start\\\"},\\\"Wy5Otf5A_\\\":{\\\"pattern\\\":\\\":Wy5Otf5A_\\\",\\\"name\\\":\\\"content\\\"},\\\"nAunUVaeZ\\\":{\\\"pattern\\\":\\\":nAunUVaeZ\\\",\\\"name\\\":\\\"top-trigger\\\"},\\\"ixpb1EBGB\\\":{\\\"pattern\\\":\\\":ixpb1EBGB\\\",\\\"name\\\":\\\"end\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i3Q_RJPrY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"USdtUDPce\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SeBoKWmMK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"12846\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["urlRegex", "Spotify", "props", "theme", "sourceUrl", "identifier", "te", "strippedUrl", "url", "p", "addPropertyControls", "ControlType", "BRAND_COLORS", "PLATFORM_NAMES", "SocialShare", "props", "type", "colors", "iconSize", "border", "shareUrl", "setShareUrl", "ye", "encodedUrl", "borderRadius", "ue", "window", "linkUrl", "copyToClipboard", "navigator", "err", "u", "Color", "p", "SocialIcon", "addPropertyControls", "ControlType", "size", "color", "customIcon", "contents", "fill", "stroke", "l", "f2cFgDlh6_exports", "__export", "__FramerMetadata__", "f2cFgDlh6_default", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "qoKzxhYts", "J9jWUW6v2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "Link", "css", "Framerf2cFgDlh6", "withCSS", "f2cFgDlh6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "z3Y1J_HGp", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "css", "FramergP2ZzK36A", "withCSS", "gP2ZzK36A_default", "addPropertyControls", "ControlType", "addFonts", "ContentDuration", "props", "duration", "setDuration", "ye", "ue", "contentElement", "text", "wordsPerMinute", "words", "minutes", "u", "getStyle", "addPropertyControls", "ControlType", "withProgress", "Component", "props", "progress", "setProgress", "ye", "isScrolling", "setIsScrolling", "prevScrollY", "pe", "ue", "calculateProgress", "startEl", "endEl", "sectionHeight", "sectionProgress", "window", "handleScroll", "scrollY", "handleScrollEnd", "p", "HEADING_TO_DISPLAY", "SCROLL_MARGIN_TOP", "useStore", "createStore", "withTableOfContent", "Component", "props", "store", "p", "l", "window", "a", "b", "type", "id", "heading", "index", "withContent", "setStore", "newProps", "setNewProps", "ye", "ue", "formatTableOfContent", "newChildren", "item", "children", "formattedId", "formatHeading", "newItem", "u", "result", "formattedHeading", "CTAIconFonts", "getFonts", "gP2ZzK36A_default", "ContainerWithFX", "withFX", "Container", "NavigationTopnavFonts", "AE6rTZoVe_default", "NavigationSidenavFonts", "JnxHiz9JR_default", "MotionDivWithProgress16da1q8", "withCodeBoundaryForOverrides", "motion", "withProgress", "TextLinkFonts", "brcQOC6Ya_default", "ContentDurationFonts", "ContentDuration", "SocialShareFonts", "SocialShare", "BlogToCFonts", "f2cFgDlh6_default", "BlogToCWithTableOfContentixgtj0WithMappedReactPropsz78zwi", "withMappedReactProps", "withTableOfContent", "f2cFgDlh6_exports", "MotionDivWithFX", "TagsFonts", "ugrLbNwee_default", "SpotifyFonts", "Spotify", "RichTextWithContent19452yl", "RichText2", "withContent", "BlogCardFonts", "vVVo0ZCBw_default", "NavigationFooterFonts", "pGALuAU_A_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "animation1", "isSet", "value", "negate", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "toResponsiveImage", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "kvJ4Lyj9V_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "wSl6kHUUJ", "zkptcx2jt", "IGpjBJXF3", "UgISQxpyy", "irF2UPzp3", "QvQ5EdO_n", "ugrh3TtXa", "JdadcWHqF", "hgArXYHem", "we5SQP2kX", "jcGrZCvvW", "wSl6kHUUJfRp8C1KEw", "ugrh3TtXafRp8C1KEw", "O1jHcxj3PfRp8C1KEw", "zkptcx2jtfRp8C1KEw", "irF2UPzp3fRp8C1KEw", "QvQ5EdO_nfRp8C1KEw", "UgISQxpyyfRp8C1KEw", "idfRp8C1KEw", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "ref1", "isDisplayed1", "router", "useRouter", "ref2", "isDisplayed2", "visible", "elementId1", "ref3", "activeLocaleCode", "useLocaleCode", "textContent", "visible1", "elementId2", "ref4", "elementId3", "elementId4", "ref5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "x", "enumToDisplayNameFunctions", "Image2", "ComponentPresetsProvider", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "css", "FramerZUoEVMx5W", "withCSS", "ZUoEVMx5W_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
