{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js", "ssg:https://framerusercontent.com/modules/fvK6AaYYN50nMO6hZtqi/jx9EYofLLkG9aaoKKtQY/ArticleStyles.js", "ssg:https://framerusercontent.com/modules/kCrPyzkChRMr3g9P5w3R/9h8Jbg8H2ib90bYHv9rZ/ReadTime.js", "ssg:https://framerusercontent.com/modules/8yGi6KLdMV1EmS2eZYMW/lEQDGX0RUp3BqvGSIQ3d/Table_of_Contents.js", "ssg:https://framerusercontent.com/modules/pVr8WMBq02NeXETQfuv3/hzXnDdJMbSIomMFixiIz/ng1fGSmoE.js", "ssg:https://framerusercontent.com/modules/wsXNHxRxmk1WXRNI0BmH/AreeuqkoKKoUGN6HJDTc/nWiTUbn4I.js", "ssg:https://framerusercontent.com/modules/lLw40zL0EPnG7rlUwLWp/DyoGEAXuyHmB453DorJ2/nWiTUbn4I.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail)}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}// https://www.youtube.com/shorts/zwMEhBq4kYM\nif(pathSegments[0]===\"shorts\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as _jsx}from\"react/jsx-runtime\";const styles=`\n\n    a{\n    text-underline-offset:5px!important;\n    text-decoration-thickness:1px!important;}\n\n    [data-framer-name=\"Body\"] img{\n    margin-top:45px!important;\n    margin-bottom:-10px!important;}\n\n   \n\n`;export function GlobalCSS(){return /*#__PURE__*/_jsx(\"style\",{children:styles});}\nexport const __FramerMetadata__ = {\"exports\":{\"GlobalCSS\":{\"type\":\"reactComponent\",\"name\":\"GlobalCSS\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ArticleStyles.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";export function ReadTime(){const[readTime,setReadTime]=React.useState(null);React.useEffect(()=>{// Find the Blog Content container.\nconst blogContent=document.querySelector('[data-framer-name=\"Blog Content\"]');if(!blogContent)return;// Get the text content.\nconst text=blogContent.innerText||\"\";// Split the text into words.\nconst words=text.trim().split(/\\s+/);const wordCount=words.filter(word=>word!==\"\").length;// Calculate reading time: assume 200 words per minute.\nconst minutes=Math.max(1,Math.ceil(wordCount/200));setReadTime(minutes);},[]);return /*#__PURE__*/_jsx(\"div\",{style:{fontFamily:\"S\\xf6hne Kr\\xe4ftig\",fontSize:\"16px\",opacity:1,color:\"#171515\"},children:readTime!==null?`${readTime} minute read`:\"Calculating read time...\"});}\nexport const __FramerMetadata__ = {\"exports\":{\"ReadTime\":{\"type\":\"reactComponent\",\"name\":\"ReadTime\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ReadTime.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";export function TableOfContents(){const[headings,setHeadings]=React.useState([]);const[activeHeading,setActiveHeading]=React.useState(null);// Gather H2 elements from Blog Content.\nReact.useEffect(()=>{// Enable smooth scrolling.\ndocument.documentElement.style.scrollBehavior=\"smooth\";const blogContent=document.querySelector('[data-framer-name=\"Blog Content\"]');if(!blogContent)return;const headingElements=blogContent.querySelectorAll(\"h2\");const headingData=Array.from(headingElements).map((heading,index)=>{let id=heading.id;if(!id){id=heading.textContent.trim().toLowerCase().replace(/\\s+/g,\"-\").replace(/[^\\w\\-]/g,\"\");if(!id)id=`heading-${index}`;heading.id=id;}// Set scroll margin so headings aren\u2019t hidden behind fixed elements.\nheading.style.scrollMarginTop=\"120px\";return{id,text:heading.textContent.trim()};});setHeadings(headingData);},[]);// Update active heading based on scroll position.\nReact.useEffect(()=>{const handleScroll=()=>{let currentActive=null;// Loop in reverse order so the last heading that passed the threshold is active.\nfor(let i=headings.length-1;i>=0;i--){const heading=headings[i];const element=document.getElementById(heading.id);if(element){const rect=element.getBoundingClientRect();// When the heading's top is at or above 60px, mark it active.\nif(rect.top<=300){currentActive=heading.id;break;}}}setActiveHeading(currentActive);};window.addEventListener(\"scroll\",handleScroll,{passive:true});// Run once on mount.\nhandleScroll();return()=>window.removeEventListener(\"scroll\",handleScroll);},[headings]);// Define styles for inactive and active links.\nconst inactiveStyle={fontSize:\"15px\",fontFamily:\"S\\xf6hne Buch\",letterSpacing:\".015em\",lineHeight:\"1.5\",opacity:.5,whiteSpace:\"normal\",wordBreak:\"break-word\",textDecoration:\"none\",color:\"#171515\",transition:\"all .25s ease\"};const activeStyle={fontSize:\"15px\",fontFamily:\"S\\xf6hne Kr\\xe4ftig\",letterSpacing:\".015em\",lineHeight:\"1.5\",opacity:1,whiteSpace:\"normal\",wordBreak:\"break-word\",textDecoration:\"none\",color:\"#171515\",transition:\"all .25s ease\"};return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:\"10px\",cursor:\"pointer\"},children:headings.map((heading,index)=>/*#__PURE__*/_jsx(\"a\",{href:`#${heading.id}`,style:heading.id===activeHeading?activeStyle:inactiveStyle,onClick:()=>setActiveHeading(heading.id),children:heading.text},index))});}\nexport const __FramerMetadata__ = {\"exports\":{\"TableOfContents\":{\"type\":\"reactComponent\",\"name\":\"TableOfContents\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Table_of_Contents.map", "// Generated by Framer (1d068b1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-IGfIn .framer-styles-preset-14pk4e8:not(.rich-text-wrapper), .framer-IGfIn .framer-styles-preset-14pk4e8.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-465431dd-f6be-4cde-8afb-9ed86315fb2f, #8a8a8a); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-7761805d-b97b-48e7-9634-4b30a55a8a04, #000000); --framer-link-text-decoration: none; transition: color 0.15s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-IGfIn\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (99efa6a)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={TPCjLV9S0:new LazyValue(()=>import(\"./nWiTUbn4I-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (99efa6a)\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,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js\";import Newsletter from\"#framer/local/canvasComponent/nUF96gCTT/nUF96gCTT.js\";import BlogCard from\"#framer/local/canvasComponent/wFPui3nTu/wFPui3nTu.js\";import{GlobalCSS}from\"#framer/local/codeFile/rqEsfkN/ArticleStyles.js\";import{ReadTime}from\"#framer/local/codeFile/U508r01/ReadTime.js\";import{TableOfContents}from\"#framer/local/codeFile/WtBRWjA/Table_of_Contents.js\";import Blogs from\"#framer/local/collection/fCoJfe0sY/fCoJfe0sY.js\";import Topics from\"#framer/local/collection/K0Her90gJ/K0Her90gJ.js\";import Physicians from\"#framer/local/collection/pniLy2ATx/pniLy2ATx.js\";import Categories from\"#framer/local/collection/q7_k5DRV2/q7_k5DRV2.js\";import Team from\"#framer/local/collection/q7SugvCSd/q7SugvCSd.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle13 from\"#framer/local/css/GCWuV2j9D/GCWuV2j9D.js\";import*as sharedStyle7 from\"#framer/local/css/hKcOHTsq6/hKcOHTsq6.js\";import*as sharedStyle8 from\"#framer/local/css/ibGRUAWvK/ibGRUAWvK.js\";import*as sharedStyle3 from\"#framer/local/css/IjEdWYaiK/IjEdWYaiK.js\";import*as sharedStyle5 from\"#framer/local/css/koz4ds5z3/koz4ds5z3.js\";import*as sharedStyle from\"#framer/local/css/L4hSYwTpw/L4hSYwTpw.js\";import*as sharedStyle12 from\"#framer/local/css/Lxss_T_W_/Lxss_T_W_.js\";import*as sharedStyle15 from\"#framer/local/css/ng1fGSmoE/ng1fGSmoE.js\";import*as sharedStyle14 from\"#framer/local/css/nZ57VjhJN/nZ57VjhJN.js\";import*as sharedStyle11 from\"#framer/local/css/oB9EF5hNc/oB9EF5hNc.js\";import*as sharedStyle9 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle1 from\"#framer/local/css/SaiMKKkwc/SaiMKKkwc.js\";import*as sharedStyle10 from\"#framer/local/css/tHbkldFVA/tHbkldFVA.js\";import*as sharedStyle4 from\"#framer/local/css/tlvNP_KsT/tlvNP_KsT.js\";import*as sharedStyle6 from\"#framer/local/css/zaqwiO1HA/zaqwiO1HA.js\";import*as sharedStyle2 from\"#framer/local/css/zPAhAkR68/zPAhAkR68.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/nWiTUbn4I/nWiTUbn4I.js\";import metadataProvider from\"#framer/local/webPageMetadata/nWiTUbn4I/nWiTUbn4I.js\";const ReadTimeFonts=getFonts(ReadTime);const YouTubeFonts=getFonts(YouTube);const TableOfContentsFonts=getFonts(TableOfContents);const NewsletterFonts=getFonts(Newsletter);const BlogCardFonts=getFonts(BlogCard);const GlobalCSSFonts=getFonts(GlobalCSS);const breakpoints={cKM9lZSxK:\"(min-width: 1200px)\",Cu2YtJXIJ:\"(min-width: 800px) and (max-width: 1199px)\",xCd7DkO5o:\"(max-width: 799px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-dFKQB\";const variantClassNames={cKM9lZSxK:\"framer-v-e955dn\",Cu2YtJXIJ:\"framer-v-1id970x\",xCd7DkO5o:\"framer-v-s9cpf3\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const negate=value=>{return!value;};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:\"cKM9lZSxK\",Phone:\"xCd7DkO5o\",Tablet:\"Cu2YtJXIJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"cKM9lZSxK\"};};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:\"TOCMOARtf\",name:\"hjTPDB6kL\",type:\"Identifier\"},operator:\"==\",right:{collection:\"TOCMOARtf.hjTPDB6kL\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"nWiTUbn4I\",name:\"TOCMOARtf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"TOCMOARtf\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"nWiTUbn4I\",name:\"BzPjUeVZB\",type:\"Identifier\"},operator:\"==\",right:{collection:\"BzPjUeVZB\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"nWiTUbn4I\",name:\"jQXt8BLrL\",type:\"Identifier\"},operator:\"==\",right:{collection:\"jQXt8BLrL\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"nWiTUbn4I\",data:Blogs,type:\"Collection\"},right:{alias:\"jQXt8BLrL\",data:Team,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"BzPjUeVZB\",data:Physicians,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"TOCMOARtf\",data:Topics,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"TOCMOARtf.hjTPDB6kL\",data:Categories,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"nWiTUbn4I\",name:\"jt6ELpDUV\",type:\"Identifier\"},{collection:\"nWiTUbn4I\",name:\"OL_6r_nxS\",type:\"Identifier\"},{alias:\"jQXt8BLrL.F11pfe_Rp\",collection:\"jQXt8BLrL\",name:\"F11pfe_Rp\",type:\"Identifier\"},{alias:\"jQXt8BLrL.hG8rjWue5\",collection:\"jQXt8BLrL\",name:\"hG8rjWue5\",type:\"Identifier\"},{alias:\"jQXt8BLrL.plSSbbuoz\",collection:\"jQXt8BLrL\",name:\"plSSbbuoz\",type:\"Identifier\"},{alias:\"BzPjUeVZB.RHrQ1I5eJ\",collection:\"BzPjUeVZB\",name:\"RHrQ1I5eJ\",type:\"Identifier\"},{alias:\"BzPjUeVZB.dpUqV1jDv\",collection:\"BzPjUeVZB\",name:\"dpUqV1jDv\",type:\"Identifier\"},{alias:\"BzPjUeVZB.kWLLrA4d1\",collection:\"BzPjUeVZB\",name:\"kWLLrA4d1\",type:\"Identifier\"},{alias:\"BzPjUeVZB.LOJlfklJp\",collection:\"BzPjUeVZB\",name:\"LOJlfklJp\",type:\"Identifier\"},{alias:\"BzPjUeVZB\",collection:\"BzPjUeVZB\",name:\"id\",type:\"Identifier\"},{collection:\"nWiTUbn4I\",name:\"uvCKGcDcQ\",type:\"Identifier\"},{collection:\"nWiTUbn4I\",name:\"McgR53zCl\",type:\"Identifier\"},{alias:\"TOCMOARtf.AKTCcKRZV\",collection:\"TOCMOARtf\",name:\"AKTCcKRZV\",type:\"Identifier\"},{alias:\"TOCMOARtf.aC8QGQvRD\",collection:\"TOCMOARtf\",name:\"aC8QGQvRD\",type:\"Identifier\"},{alias:\"TOCMOARtf.hjTPDB6kL.MxYTy9f6Q\",collection:\"TOCMOARtf.hjTPDB6kL\",name:\"MxYTy9f6Q\",type:\"Identifier\"},{alias:\"TOCMOARtf\",collection:\"TOCMOARtf\",name:\"id\",type:\"Identifier\"},{collection:\"nWiTUbn4I\",name:\"e21EK9OvM\",type:\"Identifier\"},{collection:\"nWiTUbn4I\",name:\"NXK6v8l_K\",type:\"Identifier\"},{collection:\"nWiTUbn4I\",name:\"BYualvoY5\",type:\"Identifier\"},{collection:\"nWiTUbn4I\",name:\"JPSMDNMxU\",type:\"Identifier\"},{collection:\"nWiTUbn4I\",name:\"SeprSnrw3\",type:\"Identifier\"},{collection:\"nWiTUbn4I\",name:\"NMck28ZyL\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"nWiTUbn4I\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,e21EK9OvM=getFromCurrentRouteData(\"e21EK9OvM\"),TOCMOARtf=getFromCurrentRouteData(\"TOCMOARtf\"),TOCMOARtf_aC8QGQvRD=getFromCurrentRouteData(\"TOCMOARtf.aC8QGQvRD\")??\"\",TOCMOARtf_AKTCcKRZV=getFromCurrentRouteData(\"TOCMOARtf.AKTCcKRZV\")??\"\",jt6ELpDUV=getFromCurrentRouteData(\"jt6ELpDUV\")??\"\",uvCKGcDcQ=getFromCurrentRouteData(\"uvCKGcDcQ\")??\"\",jQXt8BLrL_hG8rjWue5=getFromCurrentRouteData(\"jQXt8BLrL.hG8rjWue5\"),jQXt8BLrL_F11pfe_Rp=getFromCurrentRouteData(\"jQXt8BLrL.F11pfe_Rp\")??\"\",jQXt8BLrL_plSSbbuoz=getFromCurrentRouteData(\"jQXt8BLrL.plSSbbuoz\")??\"\",BzPjUeVZB=getFromCurrentRouteData(\"BzPjUeVZB\"),BzPjUeVZB_dpUqV1jDv=getFromCurrentRouteData(\"BzPjUeVZB.dpUqV1jDv\")??\"\",BzPjUeVZB_kWLLrA4d1=getFromCurrentRouteData(\"BzPjUeVZB.kWLLrA4d1\"),BzPjUeVZB_RHrQ1I5eJ=getFromCurrentRouteData(\"BzPjUeVZB.RHrQ1I5eJ\")??\"\",BzPjUeVZB_LOJlfklJp=getFromCurrentRouteData(\"BzPjUeVZB.LOJlfklJp\")??\"\",OL_6r_nxS=getFromCurrentRouteData(\"OL_6r_nxS\"),NXK6v8l_K=getFromCurrentRouteData(\"NXK6v8l_K\")??\"\",JPSMDNMxU=getFromCurrentRouteData(\"JPSMDNMxU\")??\"\",BYualvoY5=getFromCurrentRouteData(\"BYualvoY5\")??\"\",SeprSnrw3=getFromCurrentRouteData(\"SeprSnrw3\")??true,F58tcKRSKf_GDqQEnz,NMck28ZyL=getFromCurrentRouteData(\"NMck28ZyL\")??true,OL_6r_nxSrUHo1K0_o,jt6ELpDUVrUHo1K0_o,McgR53zClrUHo1K0_o,TOCMOARtf_AKTCcKRZVrUHo1K0_o,jQXt8BLrL_hG8rjWue5rUHo1K0_o,jQXt8BLrL_F11pfe_RprUHo1K0_o,TOCMOARtf_hjTPDB6kL_MxYTy9f6Q=getFromCurrentRouteData(\"TOCMOARtf.hjTPDB6kL.MxYTy9f6Q\")??\"\",q9M3WzQ_crUHo1K0_o,idrUHo1K0_o,...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,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"kFnqxkMgW\");const ref1=React.useRef(null);usePreloadLocalizedValues(activeLocale);const activeLocaleCode=useLocaleCode();const textContent=toDateString(e21EK9OvM,{dateStyle:\"short\",locale:\"\"},activeLocaleCode);const visible=isSet(TOCMOARtf);const visible1=isSet(uvCKGcDcQ);const visible2=isSet(BzPjUeVZB);const elementId1=useRouteElementId(\"skUEJIoUU\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"zDprpXdAP\");const ref3=React.useRef(null);const visible3=isSet(JPSMDNMxU);const visible4=isSet(BYualvoY5);const isDisplayed=()=>{if(!isBrowser())return true;if([\"Cu2YtJXIJ\",\"xCd7DkO5o\"].includes(baseVariant))return false;return true;};const visible5=negate(SeprSnrw3);const visible6=negate(NMck28ZyL);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"cKM9lZSxK\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-3f5da9af-c600-40e3-adc4-5a765c132259, rgb(253, 255, 250)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-e955dn\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-161zp4k\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fr7qc1\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-l021vz\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u91qb0\",\"data-framer-name\":\"Introduction\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lvhllt\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14guh5q\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lqoc75\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a6ispz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xCd7DkO5o:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hytiq0\",\"data-styles-preset\":\"SaiMKKkwc\",style:{\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\"},children:\"Published\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",style:{\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\"},children:\"Published\"})}),className:\"framer-1kpvolm\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xCd7DkO5o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hytiq0\",\"data-styles-preset\":\"SaiMKKkwc\",style:{\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\"},children:\"2/4/25\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",style:{\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\"},children:\"Content\"})}),className:\"framer-1jzg8w7\",\"data-framer-name\":\"Published Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xCd7DkO5o:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hytiq0\",\"data-styles-preset\":\"SaiMKKkwc\",style:{\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\"},children:\"in\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",style:{\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\"},children:\"in\"})}),className:\"framer-1qyjamr\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fm31fa\",children:visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xCd7DkO5o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hytiq0\",\"data-styles-preset\":\"SaiMKKkwc\",style:{\"--framer-text-color\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\"},children:\"Developmental milestones\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",style:{\"--framer-text-color\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aC8QGQvRD:TOCMOARtf_aC8QGQvRD},webPageId:\"ZGEDgPIrS\"},motionChild:true,nodeId:\"BZnkpKfh1\",openInNewTab:false,scopeId:\"nWiTUbn4I\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18mbx60\",\"data-styles-preset\":\"zPAhAkR68\",children:\"Minor cuts and scrapes\"})})})}),className:\"framer-9j806u\",\"data-framer-name\":\"Topic\",fonts:[\"Inter\"],text:TOCMOARtf_AKTCcKRZV,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nhmbpo\",\"data-framer-name\":\"Header Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xCd7DkO5o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-s5ny4c\",\"data-styles-preset\":\"IjEdWYaiK\",children:\"Summer Health Expands Pediatric Care Through Acquisition of Caraway Health\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-s5ny4c\",\"data-styles-preset\":\"IjEdWYaiK\",children:\"Hand foot mouth disease (HFMD) in children\"})}),className:\"framer-11ekvsx\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],text:jt6ELpDUV,verticalAlignment:\"top\",withExternalLayout:true})})}),visible1&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-b3cp13\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xCd7DkO5o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"Understanding gross motor developmental milestones in preschool-age children\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-a4x95g\",\"data-styles-preset\":\"tlvNP_KsT\",children:\"We want the transition to the crib to be as smooth as possible (and we want some well-deserved rest for you too!), so we sat down with Summer Health\u2019s sleep specialist Jess Ellsworth for some pro tips on getting your newborn to sleep in the crib.\"})}),className:\"framer-1oq6q8g\",\"data-framer-name\":\"Introduction\",fonts:[\"Inter\"],text:uvCKGcDcQ,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14wucxv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o5beek\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zjzei8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cu2YtJXIJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1991,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+120+0+0+0+0+0+0+318.9+0+0+0),pixelHeight:2500,pixelWidth:2500,sizes:\"50px\",...toResponsiveImage(jQXt8BLrL_hG8rjWue5),...{positionX:\"center\",positionY:\"top\"}}},xCd7DkO5o:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1991,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+50+0+0+0+0+0+0+280.1+0+0+0+0+0),pixelHeight:2500,pixelWidth:2500,sizes:\"50px\",...toResponsiveImage(jQXt8BLrL_hG8rjWue5),...{positionX:\"center\",positionY:\"top\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1991,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+120+0+0+0+0+0+318.9+0+0+0),pixelHeight:2500,pixelWidth:2500,sizes:\"50px\",...toResponsiveImage(jQXt8BLrL_hG8rjWue5),...{positionX:\"center\",positionY:\"top\"}},className:\"framer-1vnlfm5\",\"data-framer-name\":\"Author Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s5ab49\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7wxg46\",\"data-framer-name\":\"Author Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hytiq0\",\"data-styles-preset\":\"SaiMKKkwc\",style:{\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\"},children:\"Dahlia Rimmon, RDN\"})}),className:\"framer-1ea0st5\",\"data-framer-name\":\"Article Author\",fonts:[\"Inter\"],text:jQXt8BLrL_F11pfe_Rp,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",style:{\"--framer-text-color\":\"var(--token-af993041-628d-415d-ae20-04a6fa8adc09, rgba(23, 21, 21, 0.7))\"},children:\"Content Writer\"})}),className:\"framer-cbn1xh\",\"data-framer-name\":\"Article Author Role\",fonts:[\"Inter\"],text:jQXt8BLrL_plSSbbuoz,verticalAlignment:\"top\",withExternalLayout:true})]})})]}),visible2&&/*#__PURE__*/_jsx(Link,{href:{pathVariables:{dpUqV1jDv:BzPjUeVZB_dpUqV1jDv},webPageId:\"RVj0s6h1b\"},motionChild:true,nodeId:\"Rj3ZNXYzK\",scopeId:\"nWiTUbn4I\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-173cwc framer-1twq35i\",\"data-framer-name\":\"Reviewed By\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vu4noj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cu2YtJXIJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1991,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+120+0+0+0+0+0+0+318.9+0+0+0+3),pixelHeight:2500,pixelWidth:2500,sizes:\"48px\",...toResponsiveImage(BzPjUeVZB_kWLLrA4d1),...{positionX:\"center\",positionY:\"top\"}}},xCd7DkO5o:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1991,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+50+0+0+0+0+0+0+280.1+0+77+0+0+0+3),pixelHeight:2500,pixelWidth:2500,sizes:\"48px\",...toResponsiveImage(BzPjUeVZB_kWLLrA4d1),...{positionX:\"center\",positionY:\"top\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1991,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+120+0+0+0+0+0+318.9+0+0+0+3),pixelHeight:2500,pixelWidth:2500,sizes:\"48px\",...toResponsiveImage(BzPjUeVZB_kWLLrA4d1),...{positionX:\"center\",positionY:\"top\"}},className:\"framer-1jmxo1n\",\"data-framer-name\":\"Reviewer Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14cf833\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u5ffmd\",\"data-framer-name\":\"Author Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hytiq0\",\"data-styles-preset\":\"SaiMKKkwc\",style:{\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\"},children:\"Jess Ellsworth\"})}),className:\"framer-1agrw0g\",\"data-framer-name\":\"Medically Reviewed By\",fonts:[\"Inter\"],text:BzPjUeVZB_RHrQ1I5eJ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",style:{\"--framer-text-color\":\"var(--token-af993041-628d-415d-ae20-04a6fa8adc09, rgba(23, 21, 21, 0.7))\"},children:\"Pediatrician\"})}),className:\"framer-1dxzs3f\",\"data-framer-name\":\"Medically Reviewed By Role\",fonts:[\"Inter\"],text:BzPjUeVZB_LOJlfklJp,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m9vben\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-8ogvjr\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wrshy3\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10g9ohq\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cu2YtJXIJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+120+0+0+0+0+455.9+0+0+0+0+0+0+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1350px) - 100px)`,...toResponsiveImage(OL_6r_nxS)}},xCd7DkO5o:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+50+0+0+0+0+457.1+0+0+0+0+0+0+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1350px) - 50px)`,...toResponsiveImage(OL_6r_nxS)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+120+0+0+0+0+0+15.45+0+0+0+0+0+0),sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1350px) - 100px) * 0.42)`,...toResponsiveImage(OL_6r_nxS)},className:\"framer-1bwmy7s\",\"data-framer-name\":\"Thumbnail\"})})})})})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p89wdd\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h5h4pb\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xCd7DkO5o:{style:{scale:.8}}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ry7453\",\"data-framer-name\":\"Read Time\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tj59v5\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 5 L 10 10 L 13.333 11.667 M 18.333 10 C 18.333 14.603 14.603 18.333 10 18.333 C 5.398 18.333 1.667 14.603 1.667 10 C 1.667 5.398 5.398 1.667 10 1.667 C 14.603 1.667 18.333 5.398 18.333 10 Z\" fill=\"transparent\" stroke-width=\"1.68\" stroke=\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21)) /* {&quot;name&quot;:&quot;Black&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12794382723,withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-100aqhr-container\",isAuthoredByUser:true,nodeId:\"bnr3b4zSf\",scopeId:\"nWiTUbn4I\",children:/*#__PURE__*/_jsx(ReadTime,{height:\"100%\",id:\"bnr3b4zSf\",layoutId:\"bnr3b4zSf\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i5ngay\",\"data-framer-name\":\"Content\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4mxjsk\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-w5l24p\",\"data-framer-name\":\"Section\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x6rip\",\"data-framer-name\":\"Body\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/VTIRgCtWbPApsTjNtLlL/YouTube.js:Youtube\":componentPresets.props[\"wuP7IwBjo\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"mCvdKFUtW\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xCd7DkO5o:{stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1wnr8k1\",code:\"framer-styles-preset-18slfzs\",h1:\"framer-styles-preset-1gan9ba\",h2:\"framer-styles-preset-4yc8zw\",h3:\"framer-styles-preset-1pm57th\",img:\"framer-styles-preset-1h0v0ad\",p:\"framer-styles-preset-17tmkx9\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:NXK6v8l_K,className:\"framer-cdst5k\",\"data-framer-name\":\"Blog Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",blockquote:\"framer-styles-preset-1wnr8k1\",code:\"framer-styles-preset-18slfzs\",h2:\"framer-styles-preset-4yc8zw\",h3:\"framer-styles-preset-1pm57th\",img:\"framer-styles-preset-1h0v0ad\",p:\"framer-styles-preset-17tmkx9\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible3&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wsmz17\",\"data-framer-name\":\"YouTube\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-oheis6-container\",isModuleExternal:true,nodeId:\"wBPhpJZRs\",scopeId:\"nWiTUbn4I\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"wBPhpJZRs\",isMixedBorderRadius:false,isRed:true,layoutId:\"wBPhpJZRs\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:JPSMDNMxU,width:\"100%\"})})})}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-111hp4x\",\"data-framer-name\":\"References\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pm57th\",\"data-styles-preset\":\"ibGRUAWvK\",children:\"References\"})}),className:\"framer-dhmsql\",\"data-framer-name\":\"Action\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/VTIRgCtWbPApsTjNtLlL/YouTube.js:Youtube\":componentPresets.props[\"wuP7IwBjo\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"mCvdKFUtW\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cu2YtJXIJ:{stylesPresetsClassNames:{a:\"framer-styles-preset-ltjapk\",blockquote:\"framer-styles-preset-1wnr8k1\",code:\"framer-styles-preset-18slfzs\",h2:\"framer-styles-preset-4yc8zw\",h3:\"framer-styles-preset-1pm57th\",img:\"framer-styles-preset-1h0v0ad\",p:\"framer-styles-preset-17tmkx9\"}},xCd7DkO5o:{stylesPresetsClassNames:{a:\"framer-styles-preset-ltjapk\",blockquote:\"framer-styles-preset-1wnr8k1\",code:\"framer-styles-preset-18slfzs\",h1:\"framer-styles-preset-1gan9ba\",h2:\"framer-styles-preset-4yc8zw\",h3:\"framer-styles-preset-1pm57th\",img:\"framer-styles-preset-1h0v0ad\",p:\"framer-styles-preset-17tmkx9\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:BYualvoY5,className:\"framer-5x7b2\",\"data-framer-name\":\"References\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-ltjapk\",blockquote:\"framer-styles-preset-1wnr8k1\",code:\"framer-styles-preset-18slfzs\",img:\"framer-styles-preset-1h0v0ad\",p:\"framer-styles-preset-17tmkx9\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uhr7wr\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xCd7DkO5o:{children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Summer Health\"}),\" offers fast and reliable pediatric urgent care through online doctors, all via text. Whether you\u2019re worried about your baby's fever, rashes, or other children's health concerns, we provide expert advice and support anytime, right from your phone.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Summer Health\"}),\" offers fast and reliable pediatric urgent care through online doctors, all via text. Whether you\u2019re worried about your baby's fever, rashes, or other children's health concerns, we provide expert advice and support anytime, right from your phone.\"]})}),className:\"framer-4r7zb1\",\"data-framer-name\":\"Action\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vownxd\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"m14.905 14.634 5.724-5.63-1.702-1.672-5.724 5.629V5h-2.406v7.96L5.903 8.149l-.83-.816L3.37 9.005l5.724 5.629H1V17h7.563a5.543 5.543 0 0 0 3.434-1.183l.001-.002-.013-.012.015.011.015-.011-.013.012.001.002A5.543 5.543 0 0 0 15.437 17H23v-2.366h-8.095Z\" fill=\"#FFC220\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-gyjrke hidden-1id970x hidden-s9cpf3\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-njsbbm\",\"data-framer-name\":\"Sticky\",children:[visible5&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uqm38f\",\"data-border\":true,\"data-framer-name\":\"Table of Contents\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)?.({F58tcKRSKf_GDqQEnz})??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ph233o\",\"data-styles-preset\":\"nZ57VjhJN\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{F58tcKRSK:F58tcKRSKf_GDqQEnz},webPageId:\"f_GDqQEnz\"},motionChild:true,nodeId:\"Sy00fXXID\",openInNewTab:false,scopeId:\"nWiTUbn4I\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14pk4e8\",\"data-styles-preset\":\"ng1fGSmoE\",children:\"In this article\"})})})}),className:\"framer-39ehy5\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lnfapn-container\",isAuthoredByUser:true,nodeId:\"ojj_1xqEj\",scopeId:\"nWiTUbn4I\",children:/*#__PURE__*/_jsx(TableOfContents,{height:\"100%\",id:\"ojj_1xqEj\",layoutId:\"ojj_1xqEj\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ozwqy\",\"data-framer-name\":\"Newsletter\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1701y3j\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:40,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+600.9+0+0+100+0+0+0+0+0+428+20+0+0+0),pixelHeight:80,pixelWidth:80,src:\"https://framerusercontent.com/images/CKE49DPKseo3z5s2mxRNVRLmY.svg\"},className:\"framer-kzimkh\",\"data-framer-name\":\"Graphic\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ph233o\",\"data-styles-preset\":\"nZ57VjhJN\",style:{\"--framer-text-alignment\":\"left\"},children:\"Never miss a post!\"})}),className:\"framer-cntdxk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",style:{\"--framer-text-alignment\":\"left\"},children:\"Sign up for our newsletter to receive articles and guides directly to your inbox!\"})}),className:\"framer-1917etn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:`calc((min(${componentViewport?.width||\"100vw\"}, 1350px) - 100px) * 0.3 - 70px)`,y:(componentViewport?.y||0)+0+0+0+600.9+0+0+100+0+0+0+0+0+428+20+348.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fbpkp-container\",nodeId:\"UDlhHtmjT\",scopeId:\"nWiTUbn4I\",children:/*#__PURE__*/_jsx(Newsletter,{height:\"100%\",id:\"UDlhHtmjT\",layoutId:\"UDlhHtmjT\",style:{width:\"100%\"},variant:\"KmvKjbH4u\",width:\"100%\"})})})]})]})})]}),visible6&&/*#__PURE__*/_jsxs(\"section\",{className:\"framer-dkuxtk\",\"data-framer-name\":\"Read More\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-idlmxo\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ve953f\",\"data-framer-name\":\"More Articles\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4yc8zw\",\"data-styles-preset\":\"hKcOHTsq6\",children:\"Continue Reading\"})}),className:\"framer-tx835y\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xrwfeo\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-17owtvf\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cu2YtJXIJ:{query:{from:{constraint:{left:{collection:\"rUHo1K0_o\",name:\"jQXt8BLrL\",type:\"Identifier\"},operator:\"==\",right:{collection:\"jQXt8BLrL\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"rUHo1K0_o\",name:\"TOCMOARtf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"TOCMOARtf\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"rUHo1K0_o\",data:Blogs,type:\"Collection\"},right:{alias:\"TOCMOARtf\",data:Topics,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"jQXt8BLrL\",data:Team,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:9},select:[{collection:\"rUHo1K0_o\",name:\"OL_6r_nxS\",type:\"Identifier\"},{collection:\"rUHo1K0_o\",name:\"jt6ELpDUV\",type:\"Identifier\"},{collection:\"rUHo1K0_o\",name:\"McgR53zCl\",type:\"Identifier\"},{alias:\"TOCMOARtf.AKTCcKRZV\",collection:\"TOCMOARtf\",name:\"AKTCcKRZV\",type:\"Identifier\"},{alias:\"jQXt8BLrL.hG8rjWue5\",collection:\"jQXt8BLrL\",name:\"hG8rjWue5\",type:\"Identifier\"},{alias:\"jQXt8BLrL.F11pfe_Rp\",collection:\"jQXt8BLrL\",name:\"F11pfe_Rp\",type:\"Identifier\"},{collection:\"rUHo1K0_o\",name:\"q9M3WzQ_c\",type:\"Identifier\"},{collection:\"rUHo1K0_o\",name:\"id\",type:\"Identifier\"}]}},xCd7DkO5o:{query:{from:{constraint:{left:{collection:\"rUHo1K0_o\",name:\"jQXt8BLrL\",type:\"Identifier\"},operator:\"==\",right:{collection:\"jQXt8BLrL\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"rUHo1K0_o\",name:\"TOCMOARtf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"TOCMOARtf\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"rUHo1K0_o\",data:Blogs,type:\"Collection\"},right:{alias:\"TOCMOARtf\",data:Topics,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"jQXt8BLrL\",data:Team,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:5},select:[{collection:\"rUHo1K0_o\",name:\"OL_6r_nxS\",type:\"Identifier\"},{collection:\"rUHo1K0_o\",name:\"jt6ELpDUV\",type:\"Identifier\"},{collection:\"rUHo1K0_o\",name:\"McgR53zCl\",type:\"Identifier\"},{alias:\"TOCMOARtf.AKTCcKRZV\",collection:\"TOCMOARtf\",name:\"AKTCcKRZV\",type:\"Identifier\"},{alias:\"jQXt8BLrL.hG8rjWue5\",collection:\"jQXt8BLrL\",name:\"hG8rjWue5\",type:\"Identifier\"},{alias:\"jQXt8BLrL.F11pfe_Rp\",collection:\"jQXt8BLrL\",name:\"F11pfe_Rp\",type:\"Identifier\"},{collection:\"rUHo1K0_o\",name:\"q9M3WzQ_c\",type:\"Identifier\"},{collection:\"rUHo1K0_o\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"rUHo1K0_o\",name:\"jt6ELpDUV\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:jt6ELpDUV},type:\"BinaryOperation\"}},operator:\"and\",right:{left:{collection:\"TOCMOARtf\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:TOCMOARtf},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{constraint:{left:{collection:\"rUHo1K0_o\",name:\"jQXt8BLrL\",type:\"Identifier\"},operator:\"==\",right:{collection:\"jQXt8BLrL\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"rUHo1K0_o\",name:\"TOCMOARtf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"TOCMOARtf\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"rUHo1K0_o\",data:Blogs,type:\"Collection\"},right:{alias:\"TOCMOARtf\",data:Topics,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"jQXt8BLrL\",data:Team,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:9},select:[{collection:\"rUHo1K0_o\",name:\"OL_6r_nxS\",type:\"Identifier\"},{collection:\"rUHo1K0_o\",name:\"jt6ELpDUV\",type:\"Identifier\"},{collection:\"rUHo1K0_o\",name:\"McgR53zCl\",type:\"Identifier\"},{alias:\"TOCMOARtf.AKTCcKRZV\",collection:\"TOCMOARtf\",name:\"AKTCcKRZV\",type:\"Identifier\"},{alias:\"jQXt8BLrL.hG8rjWue5\",collection:\"jQXt8BLrL\",name:\"hG8rjWue5\",type:\"Identifier\"},{alias:\"jQXt8BLrL.F11pfe_Rp\",collection:\"jQXt8BLrL\",name:\"F11pfe_Rp\",type:\"Identifier\"},{collection:\"rUHo1K0_o\",name:\"q9M3WzQ_c\",type:\"Identifier\"},{collection:\"rUHo1K0_o\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"rUHo1K0_o\",name:\"jt6ELpDUV\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:jt6ELpDUV},type:\"BinaryOperation\"}},operator:\"and\",right:{left:{collection:\"TOCMOARtf\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:TOCMOARtf},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({\"jQXt8BLrL.F11pfe_Rp\":jQXt8BLrL_F11pfe_RprUHo1K0_o,\"jQXt8BLrL.hG8rjWue5\":jQXt8BLrL_hG8rjWue5rUHo1K0_o,\"TOCMOARtf.AKTCcKRZV\":TOCMOARtf_AKTCcKRZVrUHo1K0_o,id:idrUHo1K0_o,jt6ELpDUV:jt6ELpDUVrUHo1K0_o,McgR53zCl:McgR53zClrUHo1K0_o,OL_6r_nxS:OL_6r_nxSrUHo1K0_o,q9M3WzQ_c:q9M3WzQ_crUHo1K0_o},index)=>{jt6ELpDUVrUHo1K0_o??=\"\";McgR53zClrUHo1K0_o??=\"\";TOCMOARtf_AKTCcKRZVrUHo1K0_o??=\"\";jQXt8BLrL_F11pfe_RprUHo1K0_o??=\"\";q9M3WzQ_crUHo1K0_o??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`rUHo1K0_o-${idrUHo1K0_o}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{q9M3WzQ_c:q9M3WzQ_crUHo1K0_o},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{q9M3WzQ_c:q9M3WzQ_crUHo1K0_o},webPageId:\"nWiTUbn4I\"},implicitPathVariables:undefined},{href:{pathVariables:{q9M3WzQ_c:q9M3WzQ_crUHo1K0_o},webPageId:\"nWiTUbn4I\"},implicitPathVariables:undefined},{href:{pathVariables:{q9M3WzQ_c:q9M3WzQ_crUHo1K0_o},webPageId:\"nWiTUbn4I\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cu2YtJXIJ:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1350px) - 125px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+1075.9+0+0+100+453+0+76+0+87.4+0+0+0+0},xCd7DkO5o:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1350px) - 50px)`,y:(componentViewport?.y||0)+0+0+0+777.1+0+0+80+453+0+51+0+87.4+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:409,width:`max((min(${componentViewport?.width||\"100vw\"}, 1350px) - 150px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+600.9+0+0+100+453+0+76+0+87.4+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1itmjga-container\",\"data-framer-name\":\"Blog Card\",name:\"Blog Card\",nodeId:\"dAhpKtZ1S\",scopeId:\"nWiTUbn4I\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cu2YtJXIJ:{t2Ul2ym_Q:resolvedLinks[1]},xCd7DkO5o:{t2Ul2ym_Q:resolvedLinks[2],variant:\"K_F24z_EO\"}},children:/*#__PURE__*/_jsx(BlogCard,{e6eN5JcGJ:toResponsiveImage(OL_6r_nxSrUHo1K0_o),epZk4NOTt:false,height:\"100%\",id:\"dAhpKtZ1S\",jymgZzxHe:TOCMOARtf_hjTPDB6kL_MxYTy9f6Q,layoutId:\"dAhpKtZ1S\",name:\"Blog Card\",nsTQijnMw:jt6ELpDUVrUHo1K0_o,OYNGOXj7m:McgR53zClrUHo1K0_o,style:{width:\"100%\"},t2Ul2ym_Q:resolvedLinks[0],unk1CtRgg:\"var(--token-794efd9c-67d4-485c-a851-82f90c75bae0, rgb(249, 242, 236))\",uZY0BkyrQ:toResponsiveImage(jQXt8BLrL_hG8rjWue5rUHo1K0_o),variant:\"J8ibj8Ein\",width:\"100%\",WkCzwSEk3:jQXt8BLrL_F11pfe_RprUHo1K0_o,zFbNL7zs7:TOCMOARtf_AKTCcKRZVrUHo1K0_o})})})})})})})},idrUHo1K0_o);})})})})})})})]})]})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rt1rvv-container\",isAuthoredByUser:true,nodeId:\"QimSRgpGH\",scopeId:\"nWiTUbn4I\",children:/*#__PURE__*/_jsx(GlobalCSS,{height:\"100%\",id:\"QimSRgpGH\",layoutId:\"QimSRgpGH\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dFKQB.framer-1twq35i, .framer-dFKQB .framer-1twq35i { display: block; }\",\".framer-dFKQB.framer-e955dn { align-content: center; align-items: center; background-color: var(--token-3f5da9af-c600-40e3-adc4-5a765c132259, #fdfffa); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-dFKQB .framer-161zp4k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-1fr7qc1 { align-content: center; align-items: center; background-color: var(--token-8670fec8-1d7c-4269-b2a5-8d8e7b2a1b40, #cfe9ff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-l021vz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1350px; overflow: visible; padding: 120px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-1u91qb0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 300px; width: 100%; }\",\".framer-dFKQB .framer-1lvhllt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 75px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-14guh5q { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-dFKQB .framer-1lqoc75 { 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: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-a6ispz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-dFKQB .framer-1kpvolm, .framer-dFKQB .framer-1jzg8w7, .framer-dFKQB .framer-1qyjamr, .framer-dFKQB .framer-9j806u { --framer-paragraph-spacing: 20px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-dFKQB .framer-fm31fa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-dFKQB .framer-1nhmbpo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-11ekvsx, .framer-dFKQB .framer-1oq6q8g, .framer-dFKQB .framer-39ehy5, .framer-dFKQB .framer-tx835y { --framer-paragraph-spacing: 24px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dFKQB .framer-b3cp13 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 750px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-14wucxv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-o5beek { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-dFKQB .framer-zjzei8 { 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 2px 0px; position: relative; width: min-content; }\",\".framer-dFKQB .framer-1vnlfm5 { aspect-ratio: 1 / 1; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dFKQB .framer-s5ab49 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-dFKQB .framer-7wxg46, .framer-dFKQB .framer-u5ffmd { 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: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-dFKQB .framer-1ea0st5, .framer-dFKQB .framer-cbn1xh, .framer-dFKQB .framer-1agrw0g, .framer-dFKQB .framer-1dxzs3f { --framer-paragraph-spacing: 24px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-dFKQB .framer-173cwc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-dFKQB .framer-1vu4noj { align-content: flex-end; align-items: flex-end; background-color: var(--token-8b052c92-2d7a-404e-a57b-3af2a9b932d9, #b2dbfe); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dFKQB .framer-1jmxo1n { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; width: 48px; }\",\".framer-dFKQB .framer-14cf833 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-dFKQB .framer-1m9vben { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 42%; }\",\".framer-dFKQB .framer-8ogvjr, .framer-dFKQB .framer-1p89wdd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-wrshy3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-10g9ohq { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 350px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-dFKQB .framer-1bwmy7s { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-h5h4pb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1350px; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-1ry7453 { align-content: center; align-items: center; background-color: var(--token-8670fec8-1d7c-4269-b2a5-8d8e7b2a1b40, #cfe9ff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: absolute; right: 50px; top: 0px; width: 150px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-dFKQB .framer-1tj59v5 { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-dFKQB .framer-100aqhr-container, .framer-dFKQB .framer-1rt1rvv-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-dFKQB .framer-1i5ngay { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 135px; width: 100%; }\",\".framer-dFKQB .framer-4mxjsk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-dFKQB .framer-w5l24p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 135px; width: 100%; }\",\".framer-dFKQB .framer-x6rip { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 700px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-cdst5k, .framer-dFKQB .framer-dhmsql, .framer-dFKQB .framer-5x7b2, .framer-dFKQB .framer-4r7zb1 { --framer-paragraph-spacing: 25px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dFKQB .framer-1wsmz17 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-dFKQB .framer-oheis6-container { flex: none; height: 390px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-111hp4x { align-content: center; align-items: center; 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-dFKQB .framer-1uhr7wr { background-color: rgba(110, 108, 102, 0.1); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-dFKQB .framer-vownxd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-dFKQB .framer-gyjrke { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px 30px 0px 0px; position: relative; width: 30%; z-index: 1; }\",\".framer-dFKQB .framer-njsbbm { 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: flex-start; overflow: hidden; padding: 0px; position: sticky; top: 135px; width: 100%; z-index: 1; }\",\".framer-dFKQB .framer-1uqm38f { --border-bottom-width: 1px; --border-color: var(--token-775d0a2f-7b97-40c0-91c9-22925d7d1f8a, #edeceb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-dFKQB .framer-lnfapn-container, .framer-dFKQB .framer-1fbpkp-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-dFKQB .framer-16ozwqy { align-content: center; align-items: center; background-color: var(--token-6b636ab4-7f94-4a74-a5df-49d1a3e42d48, #ede7e1); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; 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-dFKQB .framer-1701y3j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-kzimkh { -webkit-user-select: none; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); overflow: visible; position: relative; user-select: none; width: 70px; }\",\".framer-dFKQB .framer-cntdxk { --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-dFKQB .framer-1917etn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 650px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dFKQB .framer-dkuxtk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 75px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-idlmxo { background-color: var(--token-b7046cab-a803-4f27-934d-bf5b26201782, #eeeeee); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-dFKQB .framer-ve953f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-xrwfeo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-17owtvf { display: grid; flex: none; gap: 25px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-dFKQB .framer-1itmjga-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-dFKQB.framer-e955dn, .framer-dFKQB .framer-161zp4k, .framer-dFKQB .framer-1fr7qc1, .framer-dFKQB .framer-l021vz, .framer-dFKQB .framer-1u91qb0, .framer-dFKQB .framer-1lvhllt, .framer-dFKQB .framer-14guh5q, .framer-dFKQB .framer-1lqoc75, .framer-dFKQB .framer-a6ispz, .framer-dFKQB .framer-fm31fa, .framer-dFKQB .framer-1nhmbpo, .framer-dFKQB .framer-b3cp13, .framer-dFKQB .framer-14wucxv, .framer-dFKQB .framer-o5beek, .framer-dFKQB .framer-zjzei8, .framer-dFKQB .framer-s5ab49, .framer-dFKQB .framer-7wxg46, .framer-dFKQB .framer-173cwc, .framer-dFKQB .framer-1vu4noj, .framer-dFKQB .framer-14cf833, .framer-dFKQB .framer-u5ffmd, .framer-dFKQB .framer-1m9vben, .framer-dFKQB .framer-8ogvjr, .framer-dFKQB .framer-wrshy3, .framer-dFKQB .framer-10g9ohq, .framer-dFKQB .framer-1p89wdd, .framer-dFKQB .framer-h5h4pb, .framer-dFKQB .framer-1ry7453, .framer-dFKQB .framer-1i5ngay, .framer-dFKQB .framer-4mxjsk, .framer-dFKQB .framer-x6rip, .framer-dFKQB .framer-1wsmz17, .framer-dFKQB .framer-111hp4x, .framer-dFKQB .framer-gyjrke, .framer-dFKQB .framer-njsbbm, .framer-dFKQB .framer-1uqm38f, .framer-dFKQB .framer-16ozwqy, .framer-dFKQB .framer-1701y3j, .framer-dFKQB .framer-dkuxtk, .framer-dFKQB .framer-ve953f, .framer-dFKQB .framer-xrwfeo { gap: 0px; } .framer-dFKQB.framer-e955dn > *, .framer-dFKQB .framer-161zp4k > *, .framer-dFKQB .framer-7wxg46 > *, .framer-dFKQB .framer-u5ffmd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-dFKQB.framer-e955dn > :first-child, .framer-dFKQB .framer-161zp4k > :first-child, .framer-dFKQB .framer-1fr7qc1 > :first-child, .framer-dFKQB .framer-l021vz > :first-child, .framer-dFKQB .framer-1u91qb0 > :first-child, .framer-dFKQB .framer-14guh5q > :first-child, .framer-dFKQB .framer-1lqoc75 > :first-child, .framer-dFKQB .framer-1nhmbpo > :first-child, .framer-dFKQB .framer-b3cp13 > :first-child, .framer-dFKQB .framer-s5ab49 > :first-child, .framer-dFKQB .framer-7wxg46 > :first-child, .framer-dFKQB .framer-14cf833 > :first-child, .framer-dFKQB .framer-u5ffmd > :first-child, .framer-dFKQB .framer-1m9vben > :first-child, .framer-dFKQB .framer-8ogvjr > :first-child, .framer-dFKQB .framer-wrshy3 > :first-child, .framer-dFKQB .framer-10g9ohq > :first-child, .framer-dFKQB .framer-1p89wdd > :first-child, .framer-dFKQB .framer-h5h4pb > :first-child, .framer-dFKQB .framer-4mxjsk > :first-child, .framer-dFKQB .framer-x6rip > :first-child, .framer-dFKQB .framer-1wsmz17 > :first-child, .framer-dFKQB .framer-111hp4x > :first-child, .framer-dFKQB .framer-gyjrke > :first-child, .framer-dFKQB .framer-njsbbm > :first-child, .framer-dFKQB .framer-1uqm38f > :first-child, .framer-dFKQB .framer-16ozwqy > :first-child, .framer-dFKQB .framer-1701y3j > :first-child, .framer-dFKQB .framer-dkuxtk > :first-child, .framer-dFKQB .framer-ve953f > :first-child, .framer-dFKQB .framer-xrwfeo > :first-child { margin-top: 0px; } .framer-dFKQB.framer-e955dn > :last-child, .framer-dFKQB .framer-161zp4k > :last-child, .framer-dFKQB .framer-1fr7qc1 > :last-child, .framer-dFKQB .framer-l021vz > :last-child, .framer-dFKQB .framer-1u91qb0 > :last-child, .framer-dFKQB .framer-14guh5q > :last-child, .framer-dFKQB .framer-1lqoc75 > :last-child, .framer-dFKQB .framer-1nhmbpo > :last-child, .framer-dFKQB .framer-b3cp13 > :last-child, .framer-dFKQB .framer-s5ab49 > :last-child, .framer-dFKQB .framer-7wxg46 > :last-child, .framer-dFKQB .framer-14cf833 > :last-child, .framer-dFKQB .framer-u5ffmd > :last-child, .framer-dFKQB .framer-1m9vben > :last-child, .framer-dFKQB .framer-8ogvjr > :last-child, .framer-dFKQB .framer-wrshy3 > :last-child, .framer-dFKQB .framer-10g9ohq > :last-child, .framer-dFKQB .framer-1p89wdd > :last-child, .framer-dFKQB .framer-h5h4pb > :last-child, .framer-dFKQB .framer-4mxjsk > :last-child, .framer-dFKQB .framer-x6rip > :last-child, .framer-dFKQB .framer-1wsmz17 > :last-child, .framer-dFKQB .framer-111hp4x > :last-child, .framer-dFKQB .framer-gyjrke > :last-child, .framer-dFKQB .framer-njsbbm > :last-child, .framer-dFKQB .framer-1uqm38f > :last-child, .framer-dFKQB .framer-16ozwqy > :last-child, .framer-dFKQB .framer-1701y3j > :last-child, .framer-dFKQB .framer-dkuxtk > :last-child, .framer-dFKQB .framer-ve953f > :last-child, .framer-dFKQB .framer-xrwfeo > :last-child { margin-bottom: 0px; } .framer-dFKQB .framer-1fr7qc1 > *, .framer-dFKQB .framer-b3cp13 > *, .framer-dFKQB .framer-s5ab49 > *, .framer-dFKQB .framer-14cf833 > *, .framer-dFKQB .framer-8ogvjr > *, .framer-dFKQB .framer-10g9ohq > *, .framer-dFKQB .framer-1p89wdd > *, .framer-dFKQB .framer-1wsmz17 > *, .framer-dFKQB .framer-1701y3j > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dFKQB .framer-l021vz > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-dFKQB .framer-1u91qb0 > *, .framer-dFKQB .framer-14guh5q > *, .framer-dFKQB .framer-h5h4pb > *, .framer-dFKQB .framer-x6rip > *, .framer-dFKQB .framer-ve953f > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-dFKQB .framer-1lvhllt > * { margin: 0px; margin-left: calc(75px / 2); margin-right: calc(75px / 2); } .framer-dFKQB .framer-1lvhllt > :first-child, .framer-dFKQB .framer-a6ispz > :first-child, .framer-dFKQB .framer-fm31fa > :first-child, .framer-dFKQB .framer-14wucxv > :first-child, .framer-dFKQB .framer-o5beek > :first-child, .framer-dFKQB .framer-zjzei8 > :first-child, .framer-dFKQB .framer-173cwc > :first-child, .framer-dFKQB .framer-1vu4noj > :first-child, .framer-dFKQB .framer-1ry7453 > :first-child, .framer-dFKQB .framer-1i5ngay > :first-child { margin-left: 0px; } .framer-dFKQB .framer-1lvhllt > :last-child, .framer-dFKQB .framer-a6ispz > :last-child, .framer-dFKQB .framer-fm31fa > :last-child, .framer-dFKQB .framer-14wucxv > :last-child, .framer-dFKQB .framer-o5beek > :last-child, .framer-dFKQB .framer-zjzei8 > :last-child, .framer-dFKQB .framer-173cwc > :last-child, .framer-dFKQB .framer-1vu4noj > :last-child, .framer-dFKQB .framer-1ry7453 > :last-child, .framer-dFKQB .framer-1i5ngay > :last-child { margin-right: 0px; } .framer-dFKQB .framer-1lqoc75 > *, .framer-dFKQB .framer-111hp4x > *, .framer-dFKQB .framer-gyjrke > *, .framer-dFKQB .framer-njsbbm > *, .framer-dFKQB .framer-16ozwqy > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-dFKQB .framer-a6ispz > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-dFKQB .framer-fm31fa > *, .framer-dFKQB .framer-zjzei8 > *, .framer-dFKQB .framer-1vu4noj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dFKQB .framer-1nhmbpo > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-dFKQB .framer-14wucxv > *, .framer-dFKQB .framer-1i5ngay > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-dFKQB .framer-o5beek > *, .framer-dFKQB .framer-173cwc > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-dFKQB .framer-1m9vben > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-dFKQB .framer-wrshy3 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-dFKQB .framer-1ry7453 > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-dFKQB .framer-4mxjsk > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-dFKQB .framer-1uqm38f > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-dFKQB .framer-dkuxtk > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } .framer-dFKQB .framer-xrwfeo > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,'.framer-dFKQB[data-border=\"true\"]::after, .framer-dFKQB [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: 800px) and (max-width: 1199px) { .framer-dFKQB.framer-e955dn { width: 800px; } .framer-dFKQB .framer-l021vz { gap: 50px; } .framer-dFKQB .framer-1lvhllt { flex-direction: column; order: 0; } .framer-dFKQB .framer-14guh5q { flex: none; order: 0; width: 100%; } .framer-dFKQB .framer-1lqoc75 { order: 0; } .framer-dFKQB .framer-11ekvsx, .framer-dFKQB .framer-1oq6q8g, .framer-dFKQB .framer-1ea0st5, .framer-dFKQB .framer-cbn1xh, .framer-dFKQB .framer-1agrw0g, .framer-dFKQB .framer-1dxzs3f, .framer-dFKQB .framer-tx835y { --framer-paragraph-spacing: 20px; } .framer-dFKQB .framer-14wucxv { order: 1; } .framer-dFKQB .framer-1m9vben { align-self: unset; height: min-content; order: 1; width: 100%; } .framer-dFKQB .framer-wrshy3 { gap: 75px; } .framer-dFKQB .framer-10g9ohq { height: min-content; } .framer-dFKQB .framer-1bwmy7s { flex: none; height: 400px; } .framer-dFKQB .framer-17owtvf { grid-template-columns: repeat(2, minmax(200px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-dFKQB .framer-l021vz, .framer-dFKQB .framer-1lvhllt, .framer-dFKQB .framer-wrshy3 { gap: 0px; } .framer-dFKQB .framer-l021vz > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-dFKQB .framer-l021vz > :first-child, .framer-dFKQB .framer-1lvhllt > :first-child, .framer-dFKQB .framer-wrshy3 > :first-child { margin-top: 0px; } .framer-dFKQB .framer-l021vz > :last-child, .framer-dFKQB .framer-1lvhllt > :last-child, .framer-dFKQB .framer-wrshy3 > :last-child { margin-bottom: 0px; } .framer-dFKQB .framer-1lvhllt > *, .framer-dFKQB .framer-wrshy3 > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } }}\",\"@media (max-width: 799px) { .framer-dFKQB.framer-e955dn { width: 390px; } .framer-dFKQB .framer-l021vz { gap: 50px; justify-content: flex-start; padding: 50px 25px 50px 25px; } .framer-dFKQB .framer-1u91qb0 { gap: 35px; } .framer-dFKQB .framer-1lvhllt { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 50px; order: 0; } .framer-dFKQB .framer-14guh5q { flex: none; gap: 25px; order: 0; width: 100%; } .framer-dFKQB .framer-1lqoc75 { order: 0; } .framer-dFKQB .framer-a6ispz { gap: 3px; } .framer-dFKQB .framer-1nhmbpo { align-content: flex-start; align-items: flex-start; } .framer-dFKQB .framer-11ekvsx, .framer-dFKQB .framer-1oq6q8g, .framer-dFKQB .framer-1ea0st5, .framer-dFKQB .framer-cbn1xh, .framer-dFKQB .framer-1agrw0g, .framer-dFKQB .framer-1dxzs3f, .framer-dFKQB .framer-cdst5k, .framer-dFKQB .framer-dhmsql, .framer-dFKQB .framer-5x7b2, .framer-dFKQB .framer-4r7zb1, .framer-dFKQB .framer-tx835y { --framer-paragraph-spacing: 20px; } .framer-dFKQB .framer-b3cp13, .framer-dFKQB .framer-x6rip { max-width: unset; } .framer-dFKQB .framer-14wucxv { flex-direction: column; gap: 15px; order: 1; } .framer-dFKQB .framer-o5beek, .framer-dFKQB .framer-173cwc { align-content: flex-end; align-items: flex-end; } .framer-dFKQB .framer-1vnlfm5 { height: var(--framer-aspect-ratio-supported, 60px); } .framer-dFKQB .framer-1jmxo1n { height: var(--framer-aspect-ratio-supported, 47px); } .framer-dFKQB .framer-1m9vben { align-self: unset; gap: 0px; height: min-content; order: 1; width: 100%; } .framer-dFKQB .framer-wrshy3, .framer-dFKQB .framer-dkuxtk { gap: 50px; } .framer-dFKQB .framer-10g9ohq { height: min-content; } .framer-dFKQB .framer-1bwmy7s { flex: none; height: 220px; } .framer-dFKQB .framer-h5h4pb { justify-content: flex-start; order: 0; padding: 80px 25px 50px 25px; } .framer-dFKQB .framer-1ry7453 { left: 10px; right: unset; top: -5px; } .framer-dFKQB .framer-17owtvf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-dFKQB .framer-1itmjga-container { align-self: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-dFKQB .framer-l021vz, .framer-dFKQB .framer-1u91qb0, .framer-dFKQB .framer-1lvhllt, .framer-dFKQB .framer-14guh5q, .framer-dFKQB .framer-a6ispz, .framer-dFKQB .framer-14wucxv, .framer-dFKQB .framer-1m9vben, .framer-dFKQB .framer-wrshy3, .framer-dFKQB .framer-dkuxtk, .framer-dFKQB .framer-17owtvf { gap: 0px; } .framer-dFKQB .framer-l021vz > *, .framer-dFKQB .framer-1lvhllt > *, .framer-dFKQB .framer-wrshy3 > *, .framer-dFKQB .framer-dkuxtk > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-dFKQB .framer-l021vz > :first-child, .framer-dFKQB .framer-1u91qb0 > :first-child, .framer-dFKQB .framer-1lvhllt > :first-child, .framer-dFKQB .framer-14guh5q > :first-child, .framer-dFKQB .framer-14wucxv > :first-child, .framer-dFKQB .framer-1m9vben > :first-child, .framer-dFKQB .framer-wrshy3 > :first-child, .framer-dFKQB .framer-dkuxtk > :first-child, .framer-dFKQB .framer-17owtvf > :first-child { margin-top: 0px; } .framer-dFKQB .framer-l021vz > :last-child, .framer-dFKQB .framer-1u91qb0 > :last-child, .framer-dFKQB .framer-1lvhllt > :last-child, .framer-dFKQB .framer-14guh5q > :last-child, .framer-dFKQB .framer-14wucxv > :last-child, .framer-dFKQB .framer-1m9vben > :last-child, .framer-dFKQB .framer-wrshy3 > :last-child, .framer-dFKQB .framer-dkuxtk > :last-child, .framer-dFKQB .framer-17owtvf > :last-child { margin-bottom: 0px; } .framer-dFKQB .framer-1u91qb0 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-dFKQB .framer-14guh5q > *, .framer-dFKQB .framer-17owtvf > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-dFKQB .framer-a6ispz > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-dFKQB .framer-a6ispz > :first-child { margin-left: 0px; } .framer-dFKQB .framer-a6ispz > :last-child { margin-right: 0px; } .framer-dFKQB .framer-14wucxv > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-dFKQB .framer-1m9vben > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5220\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Cu2YtJXIJ\":{\"layout\":[\"fixed\",\"auto\"]},\"xCd7DkO5o\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"kFnqxkMgW\":{\"pattern\":\":kFnqxkMgW\",\"name\":\"introduction\"},\"skUEJIoUU\":{\"pattern\":\":skUEJIoUU\",\"name\":\"start\"},\"zDprpXdAP\":{\"pattern\":\":zDprpXdAP\",\"name\":\"section-1\"}}\n * @framerResponsiveScreen\n */const FramernWiTUbn4I=withCSS(Component,css,\"framer-dFKQB\");export default FramernWiTUbn4I;FramernWiTUbn4I.displayName=\"Blog Detail\";FramernWiTUbn4I.defaultProps={height:5220,width:1200};addFonts(FramernWiTUbn4I,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...ReadTimeFonts,...YouTubeFonts,...TableOfContentsFonts,...NewsletterFonts,...BlogCardFonts,...GlobalCSSFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...componentPresets.fonts?.[\"mCvdKFUtW\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"mCvdKFUtW\"]):[],...componentPresets.fonts?.[\"wuP7IwBjo\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"wuP7IwBjo\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernWiTUbn4I\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"{\\\"kFnqxkMgW\\\":{\\\"pattern\\\":\\\":kFnqxkMgW\\\",\\\"name\\\":\\\"introduction\\\"},\\\"skUEJIoUU\\\":{\\\"pattern\\\":\\\":skUEJIoUU\\\",\\\"name\\\":\\\"start\\\"},\\\"zDprpXdAP\\\":{\\\"pattern\\\":\\\":zDprpXdAP\\\",\\\"name\\\":\\\"section-1\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"5220\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Cu2YtJXIJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xCd7DkO5o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "styles", "GlobalCSS", "p", "ReadTime", "readTime", "setReadTime", "ye", "ue", "blogContent", "wordCount", "word", "minutes", "p", "TableOfContents", "headings", "setHeadings", "ye", "activeHeading", "setActiveHeading", "ue", "blogContent", "headingElements", "headingData", "heading", "index", "id", "handleScroll", "currentActive", "i", "element", "window", "inactiveStyle", "activeStyle", "p", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "ReadTimeFonts", "getFonts", "ReadTime", "YouTubeFonts", "Youtube", "TableOfContentsFonts", "TableOfContents", "NewsletterFonts", "nUF96gCTT_default", "BlogCardFonts", "wFPui3nTu_default", "GlobalCSSFonts", "GlobalCSS", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "isSet", "toResponsiveImage", "negate", "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", "fCoJfe0sY_default", "q7SugvCSd_default", "pniLy2ATx_default", "K0Her90gJ_default", "q7_k5DRV2_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "e21EK9OvM", "TOCMOARtf", "TOCMOARtf_aC8QGQvRD", "TOCMOARtf_AKTCcKRZV", "jt6ELpDUV", "uvCKGcDcQ", "jQXt8BLrL_hG8rjWue5", "jQXt8BLrL_F11pfe_Rp", "jQXt8BLrL_plSSbbuoz", "BzPjUeVZB", "BzPjUeVZB_dpUqV1jDv", "BzPjUeVZB_kWLLrA4d1", "BzPjUeVZB_RHrQ1I5eJ", "BzPjUeVZB_LOJlfklJp", "OL_6r_nxS", "NXK6v8l_K", "JPSMDNMxU", "BYualvoY5", "SeprSnrw3", "F58tcKRSKf_GDqQEnz", "NMck28ZyL", "OL_6r_nxSrUHo1K0_o", "jt6ELpDUVrUHo1K0_o", "McgR53zClrUHo1K0_o", "TOCMOARtf_AKTCcKRZVrUHo1K0_o", "jQXt8BLrL_hG8rjWue5rUHo1K0_o", "jQXt8BLrL_F11pfe_RprUHo1K0_o", "TOCMOARtf_hjTPDB6kL_MxYTy9f6Q", "q9M3WzQ_crUHo1K0_o", "idrUHo1K0_o", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "usePreloadLocalizedValues", "activeLocaleCode", "useLocaleCode", "textContent", "visible", "visible1", "visible2", "elementId1", "ref2", "elementId2", "ref3", "visible3", "visible4", "isDisplayed", "visible5", "visible6", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "getLocalizedValue", "x", "RichText2", "Link", "getLoadingLazyAtYPosition", "Image2", "SVG", "ComponentViewportProvider", "Container", "ComponentPresetsProvider", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "css", "FramernWiTUbn4I", "withCSS", "nWiTUbn4I_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
