{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/q6TPcm1rVRPb4ymPsf0M/ukEM2DrdqZklbSePOgRx/TableOfContent.js", "ssg:https://framerusercontent.com/modules/jKFnOj71Qz9ZUeA8lkyN/w5VNUQXEQLdkBbeLf3Qr/mcrHs0_gp.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerIntrinsicWidth 600\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicHeight 400\n */export default function Table_of_Content(props){const[headers,setHeaders]=useState([]);const[activeId,setActiveId]=useState(\"\");const[firstHeadingLevel,setFirstHeadingLevel]=useState(null);const ignoreNextScrollEvent=useRef(false);const scrollTimeoutRef=useRef(null);useEffect(()=>{const sectionElement=document.getElementById(props.section_id)||document.body;const headingElements=Array.from(sectionElement.querySelectorAll(\"h1, h2, h3, h4, h5, h6\"));if(headingElements.length>0&&firstHeadingLevel===null){setFirstHeadingLevel(parseInt(headingElements[0].tagName[1],10));}const headers=headingElements.map((element,index)=>{if(!element.id){element.id=`header-${index}`;}return{id:element.id,text:element.innerText,level:parseInt(element.tagName[1],10)};});setHeaders(headers);},[props.section_id,firstHeadingLevel]);useEffect(()=>{const onScroll=()=>{if(ignoreNextScrollEvent.current){ignoreNextScrollEvent.current=false;return;}let currentSectionId=\"\";headers.forEach(header=>{const element=document.getElementById(header.id);const scrollPosition=element.getBoundingClientRect().top+window.scrollY;if(scrollPosition<window.scrollY+props.yOffset+5){currentSectionId=header.id;}});setActiveId(currentSectionId);};window.addEventListener(\"scroll\",onScroll);return()=>window.removeEventListener(\"scroll\",onScroll);},[headers,props.yOffset]);const getStyle=header=>{const indentation=firstHeadingLevel?header.level-firstHeadingLevel:0;const headerFont=props[`h${header.level}Font`]||{};return{display:\"block\",...headerFont,color:header.id===activeId?props.activeColor:props.fontColor,fontWeight:header.id===activeId?props.activeFontWeight:headerFont.fontWeight||\"normal\",textDecoration:\"none\",marginBottom:`${props.spacing}px`,marginLeft:`${indentation*props.indentation}px`};};const handleClick=headerId=>{ignoreNextScrollEvent.current=true;const element=document.getElementById(headerId);if(element){const y=element.getBoundingClientRect().top+window.pageYOffset-props.yOffset;window.scrollTo({top:y,behavior:\"smooth\"});checkIfScrollFinished(headerId);}};const checkIfScrollFinished=headerId=>{if(scrollTimeoutRef.current){clearTimeout(scrollTimeoutRef.current);}const isScrolled=()=>{const element=document.getElementById(headerId);if(element){const rect=element.getBoundingClientRect();return Math.abs(rect.top-props.yOffset)<=1;}return false;};const checkScroll=()=>{if(isScrolled()){setActiveId(headerId);}else{scrollTimeoutRef.current=setTimeout(()=>{requestAnimationFrame(checkScroll);},10);}};checkScroll();};return /*#__PURE__*/_jsx(\"div\",{children:headers.filter(header=>props[`showH${header.level}`]!==false).map(header=>/*#__PURE__*/_jsx(\"a\",{href:`#${header.id}`,style:getStyle(header),onMouseOver:e=>e.currentTarget.style.color=props.onHoverColor,onMouseOut:e=>{e.currentTarget.style.color=header.id===activeId?props.activeColor:props.fontColor;e.currentTarget.style.fontWeight=header.id===activeId?props.activeFontWeight:getStyle(header).fontWeight;},onClick:e=>{e.preventDefault();handleClick(header.id);},children:header.text},header.id))});}Table_of_Content.defaultProps={section_id:\"\",fontColor:\"#000000\",activeColor:\"#FF0000\",onHoverColor:\"#00FF00\",spacing:8,indentation:10,yOffset:0,activeFontWeight:\"bold\"};addPropertyControls(Table_of_Content,{section_id:{type:ControlType.String,title:\"Section ID\"},fontColor:{type:ControlType.Color,title:\"Font Color\"},activeColor:{type:ControlType.Color,title:\"Active Color\"},onHoverColor:{type:ControlType.Color,title:\"On Hover Color\"},spacing:{type:ControlType.Number,title:\"Spacing\"},indentation:{type:ControlType.Number,title:\"Indentation\"},yOffset:{type:ControlType.Number,title:\"Y Offset\",min:0,max:200,step:1},activeFontWeight:{type:ControlType.Enum,title:\"Active Font Weight\",options:[\"normal\",\"bold\",\"bolder\",\"lighter\",\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"],defaultValue:\"bold\"},showH1:{type:ControlType.Boolean,title:\"Show H1\",defaultValue:true},showH2:{type:ControlType.Boolean,title:\"Show H2\",defaultValue:true},showH3:{type:ControlType.Boolean,title:\"Show H3\",defaultValue:true},showH4:{type:ControlType.Boolean,title:\"Show H4\",defaultValue:true},showH5:{type:ControlType.Boolean,title:\"Show H5\",defaultValue:true},showH6:{type:ControlType.Boolean,title:\"Show H6\",defaultValue:true},h1Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H1 Font\"},h2Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H2 Font\"},h3Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H3 Font\"},h4Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H4 Font\"},h5Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H5 Font\"},h6Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H6 Font\",description:\"v1.0 \\n[via SegmentUI](https://www.segmentUI.com)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Table_of_Content\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContent.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Table_of_Content from\"https://framerusercontent.com/modules/q6TPcm1rVRPb4ymPsf0M/ukEM2DrdqZklbSePOgRx/TableOfContent.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import ArticleTag from\"#framer/local/canvasComponent/gBDDjRoq1/gBDDjRoq1.js\";import AuthorCard from\"#framer/local/canvasComponent/GenFlTeAg/GenFlTeAg.js\";import Footer from\"#framer/local/canvasComponent/vrlkyGmVf/vrlkyGmVf.js\";import NavigationNAV01 from\"#framer/local/canvasComponent/yV2Tm7CKm/yV2Tm7CKm.js\";import Team from\"#framer/local/collection/PTyXWRWe2/PTyXWRWe2.js\";import Articles from\"#framer/local/collection/veSpLpDRb/veSpLpDRb.js\";import Categories from\"#framer/local/collection/ZZBh2phNf/ZZBh2phNf.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle2 from\"#framer/local/css/aQvdsOQm0/aQvdsOQm0.js\";import*as sharedStyle7 from\"#framer/local/css/B0jP3YNiV/B0jP3YNiV.js\";import*as sharedStyle11 from\"#framer/local/css/jDrU2dCTx/jDrU2dCTx.js\";import*as sharedStyle3 from\"#framer/local/css/JN8h9e47J/JN8h9e47J.js\";import*as sharedStyle5 from\"#framer/local/css/jT5XMQPh7/jT5XMQPh7.js\";import*as sharedStyle10 from\"#framer/local/css/kSFy7JeCx/kSFy7JeCx.js\";import*as sharedStyle12 from\"#framer/local/css/lp62DMAHw/lp62DMAHw.js\";import*as sharedStyle from\"#framer/local/css/LWuo0HOBM/LWuo0HOBM.js\";import*as sharedStyle9 from\"#framer/local/css/MZbc9qFO7/MZbc9qFO7.js\";import*as sharedStyle4 from\"#framer/local/css/nppRMYtdv/nppRMYtdv.js\";import*as sharedStyle1 from\"#framer/local/css/or57LcKjB/or57LcKjB.js\";import*as sharedStyle8 from\"#framer/local/css/rj3XCUbWr/rj3XCUbWr.js\";import*as sharedStyle6 from\"#framer/local/css/t2qWpSPBc/t2qWpSPBc.js\";import metadataProvider from\"#framer/local/webPageMetadata/mcrHs0_gp/mcrHs0_gp.js\";const NavigationNAV01Fonts=getFonts(NavigationNAV01);const PhosphorFonts=getFonts(Phosphor);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const Table_of_ContentFonts=getFonts(Table_of_Content);const AuthorCardFonts=getFonts(AuthorCard);const ArticleTagFonts=getFonts(ArticleTag);const FooterFonts=getFonts(Footer);const breakpoints={a_Z7tHoWu:\"(min-width: 1200px)\",n2ukHzcXJ:\"(max-width: 809px)\",zQAdMOpcu:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-DJcjO\";const variantClassNames={a_Z7tHoWu:\"framer-v-l6sask\",n2ukHzcXJ:\"framer-v-14xdy0d\",zQAdMOpcu:\"framer-v-1mpgg5a\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:100,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};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 isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"a_Z7tHoWu\",Phone:\"n2ukHzcXJ\",Tablet:\"zQAdMOpcu\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"a_Z7tHoWu\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"mcrHs0_gp\",name:\"dyZU1BP21\",type:\"Identifier\"},operator:\"==\",right:{collection:\"dyZU1BP21\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"mcrHs0_gp\",name:\"dfqqMYoFm\",type:\"Identifier\"},operator:\"==\",right:{collection:\"dfqqMYoFm\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"mcrHs0_gp\",data:Articles,type:\"Collection\"},right:{alias:\"dfqqMYoFm\",data:Team,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"dyZU1BP21\",data:Categories,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"mcrHs0_gp\",name:\"uIxlpjz09\",type:\"Identifier\"},{collection:\"mcrHs0_gp\",name:\"u1t6MvQnC\",type:\"Identifier\"},{collection:\"mcrHs0_gp\",name:\"LZTeW8iRr\",type:\"Identifier\"},{alias:\"dfqqMYoFm.tS83OwF5O\",collection:\"dfqqMYoFm\",name:\"tS83OwF5O\",type:\"Identifier\"},{alias:\"dfqqMYoFm.h0ZoLQ6_l\",collection:\"dfqqMYoFm\",name:\"h0ZoLQ6_l\",type:\"Identifier\"},{alias:\"dfqqMYoFm.cI2gE_HAL\",collection:\"dfqqMYoFm\",name:\"cI2gE_HAL\",type:\"Identifier\"},{alias:\"dfqqMYoFm.klVZoEzrc\",collection:\"dfqqMYoFm\",name:\"klVZoEzrc\",type:\"Identifier\"},{alias:\"dyZU1BP21.tyJhTIgyC\",collection:\"dyZU1BP21\",name:\"tyJhTIgyC\",type:\"Identifier\"},{alias:\"dyZU1BP21.OIoxUI_tS\",collection:\"dyZU1BP21\",name:\"OIoxUI_tS\",type:\"Identifier\"},{collection:\"mcrHs0_gp\",name:\"Wdpew46m0\",type:\"Identifier\"},{collection:\"mcrHs0_gp\",name:\"rmA1tpyCd\",type:\"Identifier\"},{collection:\"mcrHs0_gp\",name:\"Hh8nfzDC1\",type:\"Identifier\"},{collection:\"mcrHs0_gp\",name:\"sTUY2GOEw\",type:\"Identifier\"},{collection:\"mcrHs0_gp\",name:\"Mogp3GDxc\",type:\"Identifier\"},{collection:\"mcrHs0_gp\",name:\"UObPpZsJd\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"mcrHs0_gp\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,uIxlpjz09=getFromCurrentRouteData(\"uIxlpjz09\")??\"\",Wdpew46m0=getFromCurrentRouteData(\"Wdpew46m0\"),rmA1tpyCd=getFromCurrentRouteData(\"rmA1tpyCd\")??true,dfqqMYoFm_klVZoEzrc=getFromCurrentRouteData(\"dfqqMYoFm.klVZoEzrc\")??\"\",dfqqMYoFm_cI2gE_HAL=getFromCurrentRouteData(\"dfqqMYoFm.cI2gE_HAL\"),dfqqMYoFm_tS83OwF5O=getFromCurrentRouteData(\"dfqqMYoFm.tS83OwF5O\")??\"\",dfqqMYoFm_h0ZoLQ6_l=getFromCurrentRouteData(\"dfqqMYoFm.h0ZoLQ6_l\")??\"\",dyZU1BP21_tyJhTIgyC=getFromCurrentRouteData(\"dyZU1BP21.tyJhTIgyC\")??\"\",dyZU1BP21_OIoxUI_tS=getFromCurrentRouteData(\"dyZU1BP21.OIoxUI_tS\")??\"\",LZTeW8iRr=getFromCurrentRouteData(\"LZTeW8iRr\")??true,u1t6MvQnC=getFromCurrentRouteData(\"u1t6MvQnC\"),Hh8nfzDC1=getFromCurrentRouteData(\"Hh8nfzDC1\")??\"\",sTUY2GOEw=getFromCurrentRouteData(\"sTUY2GOEw\")??\"\",...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 elementId=useRouteElementId(\"tJ4G5TsaI\");const ref1=React.useRef(null);const router=useRouter();const activeLocaleCode=useLocaleCode();const textContent=toDateString(u1t6MvQnC,{dateStyle:\"long\",locale:\"\"},activeLocaleCode);const visible=isSet(sTUY2GOEw);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"a_Z7tHoWu\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-efd75801-8b6d-4405-a1f3-cea42c0a77df, rgb(245, 241, 235)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-l6sask\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tyuhfi-container\",layoutScroll:true,nodeId:\"LDgyvlxxJ\",scopeId:\"mcrHs0_gp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2ukHzcXJ:{variant:\"JjeAqXen6\"},zQAdMOpcu:{variant:\"JjeAqXen6\"}},children:/*#__PURE__*/_jsx(NavigationNAV01,{height:\"100%\",id:\"LDgyvlxxJ\",layoutId:\"LDgyvlxxJ\",style:{width:\"100%\"},variant:\"V5SPBh6Wm\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-722hcg\",\"data-framer-name\":\"Header Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-crqu7k\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jbPli2M57\"},motionChild:true,nodeId:\"u3Cnox0su\",scopeId:\"mcrHs0_gp\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-gr1zng framer-1mv8qqj\",\"data-framer-name\":\"Return\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ohs9ri-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PDwaX7OqX\",scopeId:\"mcrHs0_gp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-15743000-89f8-48c8-afd8-2d242fd441b8, rgb(64, 64, 64))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowLeft\",id:\"PDwaX7OqX\",layoutId:\"PDwaX7OqX\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijxp25\",\"data-styles-preset\":\"LWuo0HOBM\",style:{\"--framer-text-alignment\":\"center\"},children:\"Return to Articles\"})}),className:\"framer-1c6bm01\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2ukHzcXJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1yZWd1bGFy\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-size\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-291f8795-dabe-4919-8177-a4aae3d64ee9, rgb(8, 83, 91))\",\"--framer-text-transform\":\"capitalize\"},children:\"A Return of the Bull: Blog II\"})})},zQAdMOpcu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1yZWd1bGFy\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-size\":\"42px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-291f8795-dabe-4919-8177-a4aae3d64ee9, rgb(8, 83, 91))\",\"--framer-text-transform\":\"capitalize\"},children:\"A Return of the Bull: Blog II\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1yZWd1bGFy\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-size\":\"72px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-291f8795-dabe-4919-8177-a4aae3d64ee9, rgb(8, 83, 91))\",\"--framer-text-transform\":\"capitalize\"},children:\"A Return of the Bull: Blog II\"})}),className:\"framer-1t4uwto\",\"data-framer-name\":\"Title\",fonts:[\"GF;Instrument Serif-regular\"],text:uIxlpjz09,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2ukHzcXJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+70+0+20+126.4),sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1160px)`,...toResponsiveImage(Wdpew46m0),...{positionX:\"center\",positionY:\"center\"}}},zQAdMOpcu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+70+0+40+133.6),sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1160px)`,...toResponsiveImage(Wdpew46m0),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+70+0+40+169.6),sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1160px)`,...toResponsiveImage(Wdpew46m0),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-t8p1m0\",\"data-framer-appear-id\":\"t8p1m0\",initial:animation1,optimized:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ypapn5\",\"data-framer-name\":\"Body Wrapper\",children:[rmA1tpyCd&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-79m2uj\",\"data-framer-name\":\"Sidebar\",children:rmA1tpyCd&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rxayjv\",\"data-framer-name\":\"TOC Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-291f8795-dabe-4919-8177-a4aae3d64ee9, rgb(8, 83, 91))\"},children:\"Table of Contents\"})}),className:\"framer-1n9slfk\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kzswff\",\"data-framer-name\":\"Divider Line\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-amp2w5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"B9oH199ra\",scopeId:\"mcrHs0_gp\",children:/*#__PURE__*/_jsx(Table_of_Content,{activeColor:\"var(--token-d82ec8d1-c14c-4ab0-95a1-0e1bfe532216, rgb(4, 76, 84))\",activeFontWeight:\"600\",fontColor:\"var(--token-9d5bd426-812a-4c26-a538-6bca02ecf20e, rgb(84, 84, 84))\",h1Font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1.2em\"},h2Font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.3em\"},h3Font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"13px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.3em\"},h4Font:{},h5Font:{},h6Font:{},height:\"100%\",id:\"B9oH199ra\",indentation:20,layoutId:\"B9oH199ra\",onHoverColor:\"var(--token-932f0244-2902-4f46-98da-ebc4b9cafe9d, rgb(12, 158, 172))\",section_id:\"post-body\",showH1:false,showH2:true,showH3:true,showH4:false,showH5:false,showH6:false,spacing:10,style:{width:\"100%\"},width:\"100%\",yOffset:20})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pqhn1v\",\"data-framer-name\":\"Content\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vzp6u2\",\"data-framer-name\":\"Body Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wgox72\",\"data-framer-name\":\"Author Details\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:dfqqMYoFm_klVZoEzrc,implicitPathVariables:undefined},{href:dfqqMYoFm_klVZoEzrc,implicitPathVariables:undefined},{href:dfqqMYoFm_klVZoEzrc,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2ukHzcXJ:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 720px)`,y:(componentViewport?.y||0)+70+475.9+20+564.4+0+0+0+0+0+0},zQAdMOpcu:{width:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 680px)`,y:(componentViewport?.y||0)+70+483.1+20+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 720px)`,y:(componentViewport?.y||0)+70+519.1+20+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rwk2nb-container\",nodeId:\"AHP2TI9ZL\",scopeId:\"mcrHs0_gp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2ukHzcXJ:{k00O9zz4H:resolvedLinks[2]},zQAdMOpcu:{k00O9zz4H:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(AuthorCard,{G9gTa0qI4:toResponsiveImage(dfqqMYoFm_cI2gE_HAL),height:\"100%\",id:\"AHP2TI9ZL\",JlcSpKle8:dfqqMYoFm_tS83OwF5O,k00O9zz4H:resolvedLinks[0],layoutId:\"AHP2TI9ZL\",style:{width:\"100%\"},variant:\"xV2L_xHs8\",width:\"100%\",wKlhVdBDX:dfqqMYoFm_h0ZoLQ6_l})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nmg1f8\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:dyZU1BP21_OIoxUI_tS,implicitPathVariables:undefined},{href:dyZU1BP21_OIoxUI_tS,implicitPathVariables:undefined},{href:dyZU1BP21_OIoxUI_tS,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2ukHzcXJ:{y:(componentViewport?.y||0)+70+475.9+20+564.4+0+0+0+0+0+70+0},zQAdMOpcu:{y:(componentViewport?.y||0)+70+483.1+20+0+0+0+0+0+70+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+70+519.1+20+0+0+0+0+0+70+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f72ck5-container\",nodeId:\"VC3xF0JQf\",scopeId:\"mcrHs0_gp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2ukHzcXJ:{pEFpE2nBR:resolvedLinks1[2]},zQAdMOpcu:{pEFpE2nBR:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ArticleTag,{dnO3Qk6f_:dyZU1BP21_tyJhTIgyC,height:\"100%\",id:\"VC3xF0JQf\",layoutId:\"VC3xF0JQf\",pEFpE2nBR:resolvedLinks1[0],variant:\"BLc6DCD67\",width:\"100%\"})})})})})}),LZTeW8iRr&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijxp25\",\"data-styles-preset\":\"LWuo0HOBM\",children:\"October 15, 2024\"})}),className:\"framer-hvohf\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14oxqir\"})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"apsZqN9bf\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Hh8nfzDC1,className:\"framer-15bjruq\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1btxu2l\",blockquote:\"framer-styles-preset-18h8bh2\",code:\"framer-styles-preset-fgx688\",h1:\"framer-styles-preset-q4c4zt\",h2:\"framer-styles-preset-1u8g08c\",h3:\"framer-styles-preset-19xyk9n\",h4:\"framer-styles-preset-ktzy75\",h5:\"framer-styles-preset-4pynjx\",h6:\"framer-styles-preset-1bl0fot\",img:\"framer-styles-preset-1hu8hyy\",p:\"framer-styles-preset-xz8pdd\",table:\"framer-styles-preset-r33klq\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ip29os\",\"data-framer-name\":\"Disclosure Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-15743000-89f8-48c8-afd8-2d242fd441b8, rgb(64, 64, 64))\"},children:\"DISCLOSURE:\"})}),className:\"framer-ptesx8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"apsZqN9bf\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:sTUY2GOEw,className:\"framer-15bgi81\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1btxu2l\",blockquote:\"framer-styles-preset-18h8bh2\",code:\"framer-styles-preset-fgx688\",h1:\"framer-styles-preset-q4c4zt\",h2:\"framer-styles-preset-1u8g08c\",h3:\"framer-styles-preset-19xyk9n\",h4:\"framer-styles-preset-ktzy75\",h5:\"framer-styles-preset-4pynjx\",h6:\"framer-styles-preset-1bl0fot\",img:\"framer-styles-preset-1hu8hyy\",p:\"framer-styles-preset-1ijxp25\",table:\"framer-styles-preset-r33klq\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2ukHzcXJ:{y:(componentViewport?.y||0)+70+1669.3},zQAdMOpcu:{y:(componentViewport?.y||0)+70+1172.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1090,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+70+1208.1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o0so1u-container\",nodeId:\"dqPKXB9Pe\",scopeId:\"mcrHs0_gp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2ukHzcXJ:{variant:\"Kgn_oFkYT\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"dqPKXB9Pe\",layoutId:\"dqPKXB9Pe\",style:{width:\"100%\"},variant:\"SLWGV4IkI\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DJcjO.framer-1mv8qqj, .framer-DJcjO .framer-1mv8qqj { display: block; }\",\".framer-DJcjO.framer-l6sask { align-content: center; align-items: center; background-color: var(--token-efd75801-8b6d-4405-a1f3-cea42c0a77df, #f5f1eb); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 70px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-DJcjO .framer-1tyuhfi-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-DJcjO .framer-722hcg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 40px 40px 20px 40px; position: relative; width: 100%; }\",\".framer-DJcjO .framer-crqu7k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1160px; overflow: hidden; padding: 0px 0px 0px 6px; position: relative; width: 100%; }\",\".framer-DJcjO .framer-gr1zng { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-DJcjO .framer-ohs9ri-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-DJcjO .framer-1c6bm01, .framer-DJcjO .framer-1n9slfk, .framer-DJcjO .framer-hvohf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-DJcjO .framer-1t4uwto { --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-DJcjO .framer-t8p1m0 { aspect-ratio: 1.8666666666666667 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 600px); max-width: 1160px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-DJcjO .framer-1ypapn5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 20px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-DJcjO .framer-79m2uj { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 380px; overflow: hidden; padding: 0px; position: sticky; top: 80px; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-DJcjO .framer-rxayjv { align-content: flex-start; align-items: flex-start; background-color: var(--token-9ba4dbd9-faf4-46f1-9f36-e94bfa62289b, #faf7f3); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-DJcjO .framer-1kzswff, .framer-DJcjO .framer-14oxqir { background-color: var(--token-ee4dd945-cabd-44ae-9acf-932719b8ed55, rgba(0, 0, 0, 0.1)); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DJcjO .framer-amp2w5-container, .framer-DJcjO .framer-rwk2nb-container, .framer-DJcjO .framer-o0so1u-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-DJcjO .framer-1pqhn1v { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 720px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-DJcjO .framer-1vzp6u2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DJcjO .framer-1wgox72 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DJcjO .framer-1nmg1f8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-DJcjO .framer-f72ck5-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-DJcjO .framer-15bjruq, .framer-DJcjO .framer-15bgi81 { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-DJcjO .framer-ip29os { align-content: center; align-items: center; background-color: var(--token-189c6386-6747-4579-9d00-bc398f81fc99, #ebe7e0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 20px 40px 20px; position: relative; width: 100%; }\",\".framer-DJcjO .framer-ptesx8 { --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; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-DJcjO.framer-l6sask, .framer-DJcjO .framer-722hcg, .framer-DJcjO .framer-crqu7k, .framer-DJcjO .framer-gr1zng, .framer-DJcjO .framer-1ypapn5, .framer-DJcjO .framer-79m2uj, .framer-DJcjO .framer-rxayjv, .framer-DJcjO .framer-1pqhn1v, .framer-DJcjO .framer-1vzp6u2, .framer-DJcjO .framer-1wgox72, .framer-DJcjO .framer-1nmg1f8, .framer-DJcjO .framer-ip29os { gap: 0px; } .framer-DJcjO.framer-l6sask > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DJcjO.framer-l6sask > :first-child, .framer-DJcjO .framer-722hcg > :first-child, .framer-DJcjO .framer-crqu7k > :first-child, .framer-DJcjO .framer-79m2uj > :first-child, .framer-DJcjO .framer-rxayjv > :first-child, .framer-DJcjO .framer-1pqhn1v > :first-child, .framer-DJcjO .framer-1vzp6u2 > :first-child, .framer-DJcjO .framer-1wgox72 > :first-child, .framer-DJcjO .framer-ip29os > :first-child { margin-top: 0px; } .framer-DJcjO.framer-l6sask > :last-child, .framer-DJcjO .framer-722hcg > :last-child, .framer-DJcjO .framer-crqu7k > :last-child, .framer-DJcjO .framer-79m2uj > :last-child, .framer-DJcjO .framer-rxayjv > :last-child, .framer-DJcjO .framer-1pqhn1v > :last-child, .framer-DJcjO .framer-1vzp6u2 > :last-child, .framer-DJcjO .framer-1wgox72 > :last-child, .framer-DJcjO .framer-ip29os > :last-child { margin-bottom: 0px; } .framer-DJcjO .framer-722hcg > *, .framer-DJcjO .framer-1pqhn1v > *, .framer-DJcjO .framer-1vzp6u2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-DJcjO .framer-crqu7k > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-DJcjO .framer-gr1zng > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-DJcjO .framer-gr1zng > :first-child, .framer-DJcjO .framer-1ypapn5 > :first-child, .framer-DJcjO .framer-1nmg1f8 > :first-child { margin-left: 0px; } .framer-DJcjO .framer-gr1zng > :last-child, .framer-DJcjO .framer-1ypapn5 > :last-child, .framer-DJcjO .framer-1nmg1f8 > :last-child { margin-right: 0px; } .framer-DJcjO .framer-1ypapn5 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-DJcjO .framer-79m2uj > *, .framer-DJcjO .framer-rxayjv > *, .framer-DJcjO .framer-1wgox72 > *, .framer-DJcjO .framer-ip29os > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-DJcjO .framer-1nmg1f8 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 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,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-DJcjO.framer-l6sask { width: 810px; } .framer-DJcjO .framer-crqu7k, .framer-DJcjO .framer-rxayjv { order: 0; } .framer-DJcjO .framer-t8p1m0 { height: var(--framer-aspect-ratio-supported, 391px); order: 1; } .framer-DJcjO .framer-1ypapn5 { gap: 40px; } .framer-DJcjO .framer-79m2uj { flex: 1 0 0px; max-width: 300px; order: 0; } .framer-DJcjO .framer-1pqhn1v { max-width: 680px; order: 1; } .framer-DJcjO .framer-ip29os { max-width: 680px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-DJcjO .framer-1ypapn5 { gap: 0px; } .framer-DJcjO .framer-1ypapn5 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-DJcjO .framer-1ypapn5 > :first-child { margin-left: 0px; } .framer-DJcjO .framer-1ypapn5 > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-DJcjO.framer-l6sask { width: 390px; } .framer-DJcjO .framer-1tyuhfi-container, .framer-DJcjO .framer-crqu7k { order: 0; } .framer-DJcjO .framer-722hcg { order: 1; padding: 20px 20px 40px 20px; } .framer-DJcjO .framer-t8p1m0 { height: var(--framer-aspect-ratio-supported, 188px); order: 1; } .framer-DJcjO .framer-1ypapn5 { flex-direction: column; order: 2; padding: 20px 20px 40px 20px; } .framer-DJcjO .framer-79m2uj { flex: none; order: 0; position: relative; top: unset; width: 100%; } .framer-DJcjO .framer-1pqhn1v { flex: none; order: 1; width: 100%; } .framer-DJcjO .framer-o0so1u-container { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-DJcjO .framer-1ypapn5 { gap: 0px; } .framer-DJcjO .framer-1ypapn5 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-DJcjO .framer-1ypapn5 > :first-child { margin-top: 0px; } .framer-DJcjO .framer-1ypapn5 > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 19727\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zQAdMOpcu\":{\"layout\":[\"fixed\",\"auto\"]},\"n2ukHzcXJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"tJ4G5TsaI\":{\"pattern\":\":tJ4G5TsaI\",\"name\":\"post-body\"}}\n * @framerResponsiveScreen\n */const FramermcrHs0_gp=withCSS(Component,css,\"framer-DJcjO\");export default FramermcrHs0_gp;FramermcrHs0_gp.displayName=\"Articles Detail\";FramermcrHs0_gp.defaultProps={height:19727,width:1200};addFonts(FramermcrHs0_gp,[{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:\"Instrument Serif\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentserif/v4/jizBRFtNs2ka5fXjeivQ4LroWlx-2zcZj1bIkNo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...NavigationNAV01Fonts,...PhosphorFonts,...Table_of_ContentFonts,...AuthorCardFonts,...ArticleTagFonts,...FooterFonts,...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?.[\"apsZqN9bf\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"apsZqN9bf\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermcrHs0_gp\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"tJ4G5TsaI\\\":{\\\"pattern\\\":\\\":tJ4G5TsaI\\\",\\\"name\\\":\\\"post-body\\\"}}\",\"framerIntrinsicHeight\":\"19727\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zQAdMOpcu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n2ukHzcXJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Table_of_Content", "props", "headers", "setHeaders", "ye", "activeId", "setActiveId", "firstHeadingLevel", "setFirstHeadingLevel", "ignoreNextScrollEvent", "pe", "scrollTimeoutRef", "ue", "sectionElement", "headingElements", "element", "index", "onScroll", "currentSectionId", "header", "window", "getStyle", "indentation", "headerFont", "handleClick", "headerId", "y", "checkIfScrollFinished", "isScrolled", "rect", "checkScroll", "p", "e", "addPropertyControls", "ControlType", "NavigationNAV01Fonts", "getFonts", "yV2Tm7CKm_default", "PhosphorFonts", "Icon", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "Table_of_ContentFonts", "Table_of_Content", "AuthorCardFonts", "GenFlTeAg_default", "ArticleTagFonts", "gBDDjRoq1_default", "FooterFonts", "vrlkyGmVf_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "animation", "animation1", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "isSet", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "veSpLpDRb_default", "PTyXWRWe2_default", "ZZBh2phNf_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "uIxlpjz09", "Wdpew46m0", "rmA1tpyCd", "dfqqMYoFm_klVZoEzrc", "dfqqMYoFm_cI2gE_HAL", "dfqqMYoFm_tS83OwF5O", "dfqqMYoFm_h0ZoLQ6_l", "dyZU1BP21_tyJhTIgyC", "dyZU1BP21_OIoxUI_tS", "LZTeW8iRr", "u1t6MvQnC", "Hh8nfzDC1", "sTUY2GOEw", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "textContent", "visible", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "yV2Tm7CKm_default", "Link", "Icon", "RichText2", "x", "getLoadingLazyAtYPosition", "ImageWithOptimizedAppearEffect", "Table_of_Content", "ResolveLinks", "resolvedLinks", "GenFlTeAg_default", "resolvedLinks1", "gBDDjRoq1_default", "ComponentPresetsProvider", "vrlkyGmVf_default", "css", "FramermcrHs0_gp", "withCSS", "mcrHs0_gp_default", "addFonts", "NavigationNAV01Fonts", "PhosphorFonts", "Table_of_ContentFonts", "AuthorCardFonts", "ArticleTagFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
