{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/T8DGL9quKneuQ2dhzw8Y/bbmBrFU78KvBkGJ7CUMI/Table_cms.js", "ssg:https://framerusercontent.com/modules/VBYo5CLBmkxOzAECDCB8/paCRcwXxEbeQ8MSSG32v/gftG3nZHu.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useStore=createStore({background:\"#f0f0f0\"});export function TableOverride(Component){return props=>{const[store]=useStore();const extractAndFormatTable=React.useCallback(()=>{const contentDivs=document.querySelectorAll('[data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"]');contentDivs.forEach(contentDiv=>{const codeBlocks=contentDiv.querySelectorAll(\".framer-text.framer-text-module\");codeBlocks.forEach(codeBlock=>{if(codeBlock instanceof HTMLElement){// Get the framer-cb div to access CSS variables\nconst framerCbDiv=codeBlock.querySelector(\".framer-cb\");if(!framerCbDiv)return;// Extract CSS variables from the style attribute\nconst styleAttr=framerCbDiv.getAttribute(\"style\")||\"\";const cssVars={};styleAttr.split(\";\").forEach(pair=>{const[key,value]=pair.split(\":\").map(s=>s.trim());if(key.startsWith(\"--\")){cssVars[key]=value;}});// Determine if we're in light or dark mode\nconst colorScheme=cssVars[\"--cb-color-scheme-dark\"]===\"light\"?\"light\":\"dark\";// Find the div with the border (sp-layout)\nconst borderDiv=codeBlock.querySelector(\".sp-layout\");if(!borderDiv)return;// Extract the border properties and padding from the style attribute\nconst borderStyle=window.getComputedStyle(borderDiv);const borderWidth=borderStyle.borderWidth;const borderColor=borderStyle.borderColor;const borderRadius=borderStyle.borderRadius;const padding=borderStyle.getPropertyValue(\"--cb-padding\")||\"27px\"// Default to 27px if not set\n;// Create an outer container for the border\nconst outerContainer=document.createElement(\"div\");outerContainer.style.cssText=`\n                            border: ${borderWidth} solid ${borderColor};\n                            border-radius: ${borderRadius};\n                            overflow: hidden;\n                            width: 100%;\n                            height: 100%;\n                        `;// Create an inner container for the scrollable content\nconst innerContainer=document.createElement(\"div\");innerContainer.style.cssText=`\n                            overflow: auto;\n                            width: 100%;\n                            height: 100%;\n                        `;// Create the table\nconst table=document.createElement(\"table\");table.style.cssText=`\n                            border-collapse: separate;\n                            border-spacing: 0;\n                            width: 100%;\n                        `;// Convert extracted content to HTML table\nconst codeContent=codeBlock.textContent||\"\";const tableLines=codeContent.split(/\\r?\\n/).filter(line=>line.trim()!==\"\");const tableHtml=tableLines.map((row,index)=>{const cells=row.split(\"|\").map(cell=>cell.trim()).filter(cell=>cell!==\"\");if(index===0){return`<tr>${cells.map((cell,cellIndex)=>`<th${cellIndex===0?' class=\"first-column\"':\"\"}>${cell}</th>`).join(\"\")}</tr>`;}else if(index===1){return\"\"// Skip the separator row\n;}else{while(cells.length<4){cells.push(\"\");}return`<tr>${cells.map((cell,cellIndex)=>`<td${cellIndex===0?' class=\"first-column\"':\"\"}>${cell.replace(/\\<br\\>/g,\"<br>\")}</td>`).join(\"\")}</tr>`;}}).filter(row=>row!==\"\").join(\"\");table.innerHTML=`\n                            <table style=\"width: 100%; border-collapse: separate; border-spacing: 0;\">\n                                ${tableHtml}\n                            </table>\n                        `;// Add styles\nconst style=document.createElement(\"style\");style.textContent=`\n                            table th, table td {\n                                padding: ${padding};\n                                text-align: left;\n                                background-color: ${cssVars[`--cb-colors-surface1-${colorScheme}`]};\n                                border-right: 1px solid ${borderColor};\n                                border-bottom: 1px solid ${borderColor};\n                            }\n                            table th {\n                                font-weight: bold;\n                                color: ${cssVars[`--cb-syntax-color-plain-${colorScheme}`]};\n                                position: sticky;\n                                top: 0;\n                                z-index: 1;\n                            }\n                            .first-column {\n                                white-space: nowrap;\n                                overflow: hidden;\n                                text-overflow: ellipsis;\n                            }\n                            table tr:last-child td {\n                                border-bottom: none;\n                            }\n                            table th:last-child,\n                            table td:last-child {\n                                border-right: none;\n                            }\n                        `;outerContainer.appendChild(style);// Assemble the structure\ninnerContainer.appendChild(table);outerContainer.appendChild(innerContainer);// Replace the content of the code block with the new structure\ncodeBlock.innerHTML=\"\";codeBlock.appendChild(outerContainer);}});});},[store.background]);React.useEffect(()=>{extractAndFormatTable();// Add a MutationObserver to handle dynamic content changes\nconst observer=new MutationObserver(extractAndFormatTable);const contentDivs=document.querySelectorAll('[data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"]');contentDivs.forEach(contentDiv=>{observer.observe(contentDiv,{childList:true,subtree:true});});// Remove white-space: pre-wrap from the Content div and set opacity to 1\nconst style=document.createElement(\"style\");style.textContent=`\n                [data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"] {\n                    white-space: normal !important;\n                    opacity: 1 !important;\n                }\n                [data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"] > div {\n                    white-space: normal !important;\n                    opacity: 1 !important;\n                }\n            `;document.head.appendChild(style);return()=>{observer.disconnect();document.head.removeChild(style);};},[extractAndFormatTable]);return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"TableOverride\":{\"type\":\"reactHoc\",\"name\":\"TableOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Table_cms.map", "// Generated by Framer (4e800ba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,withCodeBoundaryForOverrides,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Navbar from\"#framer/local/canvasComponent/g4fYxvbl0/g4fYxvbl0.js\";import Footer from\"#framer/local/canvasComponent/sKJ95guDU/sKJ95guDU.js\";import{TableOverride}from\"#framer/local/codeFile/IKSZnl8/Table_cms.js\";import Blog from\"#framer/local/collection/WHzz_L7AJ/WHzz_L7AJ.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle3 from\"#framer/local/css/d1Wx2toJG/d1Wx2toJG.js\";import*as sharedStyle1 from\"#framer/local/css/els0PDaHh/els0PDaHh.js\";import*as sharedStyle8 from\"#framer/local/css/ixEbqJFNs/ixEbqJFNs.js\";import*as sharedStyle9 from\"#framer/local/css/mqmg637CA/mqmg637CA.js\";import*as sharedStyle5 from\"#framer/local/css/oTPTiKiNB/oTPTiKiNB.js\";import*as sharedStyle2 from\"#framer/local/css/saWTbBsmA/saWTbBsmA.js\";import*as sharedStyle7 from\"#framer/local/css/TfDWczITk/TfDWczITk.js\";import*as sharedStyle4 from\"#framer/local/css/y8la8UwUu/y8la8UwUu.js\";import*as sharedStyle6 from\"#framer/local/css/z4OLKfE73/z4OLKfE73.js\";import*as sharedStyle from\"#framer/local/css/zn_6M6lZj/zn_6M6lZj.js\";import metadataProvider from\"#framer/local/webPageMetadata/gftG3nZHu/gftG3nZHu.js\";const NavbarFonts=getFonts(Navbar);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextTableOverride1p9qiczWithOptimizedAppearEffect=withOptimizedAppearEffect(withCodeBoundaryForOverrides(RichText,{nodeId:\"IQ_YEEKCU\",override:TableOverride,scopeId:\"gftG3nZHu\"}));const FooterFonts=getFonts(Footer);const breakpoints={i81mdTrVw:\"(min-width: 768px) and (max-width: 1199px)\",PX1KbnxLB:\"(max-width: 767px)\",R69OBGEbC:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-bhyD7\";const variantClassNames={i81mdTrVw:\"framer-v-15jdlst\",PX1KbnxLB:\"framer-v-kzwbl4\",R69OBGEbC:\"framer-v-d433fs\"};const transition1={delay:1,duration:.8,ease:[.45,0,0,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-200};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-200};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={delay:.4,duration:1.4,ease:[.45,0,0,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-750};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-800};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-700};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"R69OBGEbC\",Phone:\"PX1KbnxLB\",Tablet:\"i81mdTrVw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"R69OBGEbC\"};};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:\"gftG3nZHu\",name:\"nextItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nextItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"gftG3nZHu\",name:\"previousItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"gftG3nZHu\",data:Blog,type:\"Collection\"},right:{alias:\"previousItemId\",data:Blog,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"nextItemId\",data:Blog,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"gftG3nZHu\",name:\"flm7Obz3F\",type:\"Identifier\"},{collection:\"gftG3nZHu\",name:\"bCGNrVa0K\",type:\"Identifier\"},{collection:\"gftG3nZHu\",name:\"QiBUGq00b\",type:\"Identifier\"},{collection:\"gftG3nZHu\",name:\"q1yEw87_J\",type:\"Identifier\"},{collection:\"gftG3nZHu\",name:\"JjtzvmaL_\",type:\"Identifier\"},{alias:\"previousItemId.flm7Obz3F\",collection:\"previousItemId\",name:\"flm7Obz3F\",type:\"Identifier\"},{alias:\"previousItemId.NB4gnwXDp\",collection:\"previousItemId\",name:\"NB4gnwXDp\",type:\"Identifier\"},{alias:\"previousItemId\",collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},{alias:\"nextItemId.flm7Obz3F\",collection:\"nextItemId\",name:\"flm7Obz3F\",type:\"Identifier\"},{alias:\"nextItemId.NB4gnwXDp\",collection:\"nextItemId\",name:\"NB4gnwXDp\",type:\"Identifier\"},{alias:\"nextItemId\",collection:\"nextItemId\",name:\"id\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"gftG3nZHu\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,flm7Obz3F=getFromCurrentRouteData(\"flm7Obz3F\")??\"\",QiBUGq00b=getFromCurrentRouteData(\"QiBUGq00b\")??\"\",q1yEw87_J=getFromCurrentRouteData(\"q1yEw87_J\"),JjtzvmaL_=getFromCurrentRouteData(\"JjtzvmaL_\")??\"\",previousItemId=getFromCurrentRouteData(\"previousItemId\"),previousItemId_NB4gnwXDp=getFromCurrentRouteData(\"previousItemId.NB4gnwXDp\")??\"\",previousItemId_flm7Obz3F=getFromCurrentRouteData(\"previousItemId.flm7Obz3F\")??\"\",nextItemId=getFromCurrentRouteData(\"nextItemId\"),nextItemId_NB4gnwXDp=getFromCurrentRouteData(\"nextItemId.NB4gnwXDp\")??\"\",nextItemId_flm7Obz3F=getFromCurrentRouteData(\"nextItemId.flm7Obz3F\")??\"\",...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(previousItemId);const textContent=prefix(previousItemId_flm7Obz3F,\"\u2039 \");const visible1=isSet(nextItemId);const textContent1=suffix(nextItemId_flm7Obz3F,\" \u203A\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"R69OBGEbC\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-7c243cc1-7048-4056-a08b-d00866b93902, rgb(33, 33, 35)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-d433fs\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i81mdTrVw:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`},PX1KbnxLB:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:\"1200px\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2hqd9s-container\",nodeId:\"itdWeqkOe\",scopeId:\"gftG3nZHu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i81mdTrVw:{variant:\"actVxRU07\"},PX1KbnxLB:{variant:\"OVpHYbmYc\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"itdWeqkOe\",layoutId:\"itdWeqkOe\",style:{width:\"100%\"},variant:\"r3SRi3kKp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mh1s9s\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4rohkc\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ruxvlz\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p13o1o\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u7mnzh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i81mdTrVw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9885cd8c-6abb-4417-9286-fe1578198992, rgb(173, 133, 81))\",\"--framer-text-transform\":\"uppercase\"},children:\"Crafting Killer YouTube Videos for Your Company: A Step-by-Step Guide (2025 Edition)\"})}),initial:animation2},PX1KbnxLB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9885cd8c-6abb-4417-9286-fe1578198992, rgb(173, 133, 81))\",\"--framer-text-transform\":\"uppercase\"},children:\"Crafting Killer YouTube Videos for Your Company: A Step-by-Step Guide (2025 Edition)\"})}),initial:animation2}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"37px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"90%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9885cd8c-6abb-4417-9286-fe1578198992, rgb(173, 133, 81))\",\"--framer-text-transform\":\"uppercase\"},children:\"Crafting Killer YouTube Videos for Your Company: A Step-by-Step Guide (2025 Edition)\"})}),className:\"framer-t4qw06\",\"data-framer-appear-id\":\"t4qw06\",\"data-framer-name\":\"Title\",fonts:[\"FS;Switzer-semibold\"],initial:animation1,optimized:true,style:{transformPerspective:1200},text:flm7Obz3F,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-x18nsg\",\"data-framer-appear-id\":\"x18nsg\",initial:animation4,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tyrhpo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-125zkxd\",\"data-styles-preset\":\"zn_6M6lZj\",style:{\"--framer-text-color\":\"var(--token-b740f1d8-819f-424e-8ed4-13557f40bfa1, rgb(0, 0, 0))\"},children:\"with Little Words Project\"})}),className:\"framer-1es1h91\",\"data-framer-name\":\"Location\",fonts:[\"Inter\"],text:QiBUGq00b,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-251fbn\",\"data-framer-name\":\"Divider\"})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1886ni4\",\"data-framer-name\":\"Filler\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ejptm\",\"data-framer-name\":\"Hero Video\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tqga1n\",\"data-framer-name\":\"Banner\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i81mdTrVw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+250+0+312+250+0-560),sizes:`max((${componentViewport?.width||\"100vw\"} - 104px) * 1, 1px)`,...toResponsiveImage(q1yEw87_J)}},PX1KbnxLB:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+250+0+245+150+0-560),sizes:`max((${componentViewport?.width||\"100vw\"} - 88px) * 1, 1px)`,...toResponsiveImage(q1yEw87_J)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+250+0+312+350+0-560),sizes:`max((${componentViewport?.width||\"100vw\"} - 136px) * 1, 1px)`,...toResponsiveImage(q1yEw87_J)},className:\"framer-19i1x33\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i81mdTrVw:{initial:animation7},PX1KbnxLB:{initial:animation8}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-lydjdh\",\"data-framer-appear-id\":\"lydjdh\",\"data-framer-name\":\"White Overlay\",initial:animation6,optimized:true,style:{transformPerspective:1200}})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14rgndk\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-47jnu3\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-u5fagg\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-142qxms\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"el6QkseK_\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"Fcc5d9vdy\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i81mdTrVw:{stylesPresetsClassNames:{a:\"framer-styles-preset-a9le3s\",h1:\"framer-styles-preset-11zjva4\",h2:\"framer-styles-preset-1jsmsq1\",h3:\"framer-styles-preset-7s592u\",h4:\"framer-styles-preset-nvgwgo\",img:\"framer-styles-preset-1has884\",p:\"framer-styles-preset-125zkxd\",table:\"framer-styles-preset-1oxcnow\"}},PX1KbnxLB:{stylesPresetsClassNames:{a:\"framer-styles-preset-a9le3s\",h1:\"framer-styles-preset-11zjva4\",h2:\"framer-styles-preset-1jsmsq1\",h3:\"framer-styles-preset-7s592u\",h4:\"framer-styles-preset-nvgwgo\",img:\"framer-styles-preset-1has884\",p:\"framer-styles-preset-125zkxd\",table:\"framer-styles-preset-1oxcnow\"}}},children:/*#__PURE__*/_jsx(RichTextTableOverride1p9qiczWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:JjtzvmaL_,className:\"framer-1p9qicz\",\"data-framer-appear-id\":\"1p9qicz\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],initial:animation4,optimized:true,stylesPresetsClassNames:{a:\"framer-styles-preset-1kbk570\",h1:\"framer-styles-preset-11zjva4\",h2:\"framer-styles-preset-1jsmsq1\",h3:\"framer-styles-preset-7s592u\",h4:\"framer-styles-preset-nvgwgo\",img:\"framer-styles-preset-1has884\",p:\"framer-styles-preset-125zkxd\",table:\"framer-styles-preset-1oxcnow\"},verticalAlignment:\"top\",withExternalLayout:true})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jahv5q\",children:[visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1jsmsq1\",\"data-styles-preset\":\"saWTbBsmA\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{NB4gnwXDp:previousItemId_NB4gnwXDp},webPageId:\"gftG3nZHu\"},motionChild:true,nodeId:\"ikXtQRC0g\",openInNewTab:false,scopeId:\"gftG3nZHu\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-stqizy\",\"data-styles-preset\":\"mqmg637CA\",children:\"\u2039 \"})})})}),className:\"framer-11qann4\",\"data-framer-name\":\"Previous\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19ra7kh\",\"data-framer-name\":\"Spacer\"}),visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1jsmsq1\",\"data-styles-preset\":\"saWTbBsmA\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{NB4gnwXDp:nextItemId_NB4gnwXDp},webPageId:\"gftG3nZHu\"},motionChild:true,nodeId:\"olDnXMLvw\",openInNewTab:false,scopeId:\"gftG3nZHu\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-stqizy\",\"data-styles-preset\":\"mqmg637CA\",children:\" \u203A\"})})})}),className:\"framer-1tsmn8n\",\"data-framer-name\":\"Next\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i81mdTrVw:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1450},PX1KbnxLB:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1175}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:434,width:\"1200px\",y:(componentViewport?.y||0)+0+1658,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k7xm7c-container\",nodeId:\"hx0iYjrpY\",scopeId:\"gftG3nZHu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i81mdTrVw:{variant:\"HZ3czXuGI\"},PX1KbnxLB:{variant:\"St9GJpfNv\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"hx0iYjrpY\",layoutId:\"hx0iYjrpY\",style:{width:\"100%\"},variant:\"GOmevoI8z\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bhyD7.framer-18vnfo8, .framer-bhyD7 .framer-18vnfo8 { display: block; }\",\".framer-bhyD7.framer-d433fs { align-content: center; align-items: center; background-color: var(--token-7c243cc1-7048-4056-a08b-d00866b93902, #212123); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1200px; }\",\".framer-bhyD7 .framer-2hqd9s-container, .framer-bhyD7 .framer-k7xm7c-container { flex: none; height: auto; position: relative; width: 1200px; }\",\".framer-bhyD7 .framer-mh1s9s { align-content: center; align-items: center; background-color: var(--token-7c243cc1-7048-4056-a08b-d00866b93902, #212123); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-bhyD7 .framer-4rohkc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 312px; justify-content: center; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 90%; }\",\".framer-bhyD7 .framer-1ruxvlz, .framer-bhyD7 .framer-u5fagg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bhyD7 .framer-1p13o1o { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.6666667 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bhyD7 .framer-u7mnzh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bhyD7 .framer-t4qw06 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-bhyD7 .framer-x18nsg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-bhyD7 .framer-tyrhpo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-bhyD7 .framer-1es1h91, .framer-bhyD7 .framer-11qann4, .framer-bhyD7 .framer-1tsmn8n { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-bhyD7 .framer-251fbn { background-color: var(--token-b740f1d8-819f-424e-8ed4-13557f40bfa1, #000000); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-bhyD7 .framer-1886ni4 { background-color: rgba(34, 34, 36, 0); flex: 0.33 0 0px; height: 100px; overflow: hidden; position: relative; width: 1px; }\",\".framer-bhyD7 .framer-8ejptm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 70vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-bhyD7 .framer-1tqga1n { align-content: center; align-items: center; display: flex; flex: 0.9 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 560px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bhyD7 .framer-19i1x33 { bottom: 0px; flex: none; height: 560px; left: calc(49.93894993894996% - 100% / 2); position: absolute; width: 100%; z-index: 1; }\",\".framer-bhyD7 .framer-lydjdh { background-color: var(--token-7c243cc1-7048-4056-a08b-d00866b93902, #ffffff); flex: none; height: 560px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 750px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-bhyD7 .framer-14rgndk { align-content: center; align-items: center; background-color: var(--token-7c243cc1-7048-4056-a08b-d00866b93902, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-bhyD7 .framer-47jnu3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 90%; }\",\".framer-bhyD7 .framer-142qxms { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bhyD7 .framer-1p9qicz { --framer-paragraph-spacing: 49px; flex: none; height: auto; max-width: 70%; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-bhyD7 .framer-1jahv5q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 600px; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bhyD7 .framer-19ra7kh { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bhyD7.framer-d433fs, .framer-bhyD7 .framer-mh1s9s, .framer-bhyD7 .framer-4rohkc, .framer-bhyD7 .framer-1ruxvlz, .framer-bhyD7 .framer-1p13o1o, .framer-bhyD7 .framer-u7mnzh, .framer-bhyD7 .framer-x18nsg, .framer-bhyD7 .framer-tyrhpo, .framer-bhyD7 .framer-8ejptm, .framer-bhyD7 .framer-1tqga1n, .framer-bhyD7 .framer-14rgndk, .framer-bhyD7 .framer-47jnu3, .framer-bhyD7 .framer-u5fagg, .framer-bhyD7 .framer-142qxms, .framer-bhyD7 .framer-1jahv5q { gap: 0px; } .framer-bhyD7.framer-d433fs > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-bhyD7.framer-d433fs > :first-child, .framer-bhyD7 .framer-mh1s9s > :first-child, .framer-bhyD7 .framer-4rohkc > :first-child, .framer-bhyD7 .framer-1p13o1o > :first-child, .framer-bhyD7 .framer-u7mnzh > :first-child, .framer-bhyD7 .framer-x18nsg > :first-child, .framer-bhyD7 .framer-1tqga1n > :first-child, .framer-bhyD7 .framer-14rgndk > :first-child, .framer-bhyD7 .framer-47jnu3 > :first-child, .framer-bhyD7 .framer-142qxms > :first-child { margin-top: 0px; } .framer-bhyD7.framer-d433fs > :last-child, .framer-bhyD7 .framer-mh1s9s > :last-child, .framer-bhyD7 .framer-4rohkc > :last-child, .framer-bhyD7 .framer-1p13o1o > :last-child, .framer-bhyD7 .framer-u7mnzh > :last-child, .framer-bhyD7 .framer-x18nsg > :last-child, .framer-bhyD7 .framer-1tqga1n > :last-child, .framer-bhyD7 .framer-14rgndk > :last-child, .framer-bhyD7 .framer-47jnu3 > :last-child, .framer-bhyD7 .framer-142qxms > :last-child { margin-bottom: 0px; } .framer-bhyD7 .framer-mh1s9s > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bhyD7 .framer-4rohkc > *, .framer-bhyD7 .framer-1p13o1o > *, .framer-bhyD7 .framer-14rgndk > *, .framer-bhyD7 .framer-47jnu3 > *, .framer-bhyD7 .framer-142qxms > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-bhyD7 .framer-1ruxvlz > *, .framer-bhyD7 .framer-u5fagg > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-bhyD7 .framer-1ruxvlz > :first-child, .framer-bhyD7 .framer-tyrhpo > :first-child, .framer-bhyD7 .framer-8ejptm > :first-child, .framer-bhyD7 .framer-u5fagg > :first-child, .framer-bhyD7 .framer-1jahv5q > :first-child { margin-left: 0px; } .framer-bhyD7 .framer-1ruxvlz > :last-child, .framer-bhyD7 .framer-tyrhpo > :last-child, .framer-bhyD7 .framer-8ejptm > :last-child, .framer-bhyD7 .framer-u5fagg > :last-child, .framer-bhyD7 .framer-1jahv5q > :last-child { margin-right: 0px; } .framer-bhyD7 .framer-u7mnzh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-bhyD7 .framer-x18nsg > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-bhyD7 .framer-tyrhpo > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-bhyD7 .framer-8ejptm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-bhyD7 .framer-1tqga1n > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bhyD7 .framer-1jahv5q > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,\"@media (min-width: 768px) and (max-width: 1199px) { .framer-bhyD7.framer-d433fs { width: 768px; } .framer-bhyD7 .framer-2hqd9s-container, .framer-bhyD7 .framer-k7xm7c-container { width: 100%; } .framer-bhyD7 .framer-mh1s9s { padding: 0px 32px 0px 32px; } .framer-bhyD7 .framer-4rohkc, .framer-bhyD7 .framer-47jnu3 { gap: 32px; padding: 32px 0px 0px 0px; } .framer-bhyD7 .framer-1ruxvlz { flex-direction: column; gap: 8px; } .framer-bhyD7 .framer-1p13o1o { flex: none; width: 100%; } .framer-bhyD7 .framer-u7mnzh { gap: 16px; } .framer-bhyD7 .framer-x18nsg { gap: 12px; } .framer-bhyD7 .framer-1886ni4 { flex: none; width: 0%; } .framer-bhyD7 .framer-8ejptm { height: 50vh; } .framer-bhyD7 .framer-lydjdh { top: 800px; } .framer-bhyD7 .framer-14rgndk { gap: 32px; } .framer-bhyD7 .framer-u5fagg { gap: 24px; } .framer-bhyD7 .framer-1p9qicz { max-width: 560px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bhyD7 .framer-4rohkc, .framer-bhyD7 .framer-1ruxvlz, .framer-bhyD7 .framer-u7mnzh, .framer-bhyD7 .framer-x18nsg, .framer-bhyD7 .framer-14rgndk, .framer-bhyD7 .framer-47jnu3, .framer-bhyD7 .framer-u5fagg { gap: 0px; } .framer-bhyD7 .framer-4rohkc > *, .framer-bhyD7 .framer-14rgndk > *, .framer-bhyD7 .framer-47jnu3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-bhyD7 .framer-4rohkc > :first-child, .framer-bhyD7 .framer-1ruxvlz > :first-child, .framer-bhyD7 .framer-u7mnzh > :first-child, .framer-bhyD7 .framer-x18nsg > :first-child, .framer-bhyD7 .framer-14rgndk > :first-child, .framer-bhyD7 .framer-47jnu3 > :first-child { margin-top: 0px; } .framer-bhyD7 .framer-4rohkc > :last-child, .framer-bhyD7 .framer-1ruxvlz > :last-child, .framer-bhyD7 .framer-u7mnzh > :last-child, .framer-bhyD7 .framer-x18nsg > :last-child, .framer-bhyD7 .framer-14rgndk > :last-child, .framer-bhyD7 .framer-47jnu3 > :last-child { margin-bottom: 0px; } .framer-bhyD7 .framer-1ruxvlz > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-bhyD7 .framer-u7mnzh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-bhyD7 .framer-x18nsg > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-bhyD7 .framer-u5fagg > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-bhyD7 .framer-u5fagg > :first-child { margin-left: 0px; } .framer-bhyD7 .framer-u5fagg > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 767px) { .framer-bhyD7.framer-d433fs { width: 390px; } .framer-bhyD7 .framer-2hqd9s-container, .framer-bhyD7 .framer-k7xm7c-container { width: 100%; } .framer-bhyD7 .framer-mh1s9s { padding: 0px 24px 0px 24px; } .framer-bhyD7 .framer-4rohkc { gap: 24px; height: 245px; padding: 24px 0px 0px 0px; } .framer-bhyD7 .framer-1ruxvlz { flex-direction: column; gap: 8px; } .framer-bhyD7 .framer-1p13o1o, .framer-bhyD7 .framer-142qxms { flex: none; width: 100%; } .framer-bhyD7 .framer-u7mnzh { gap: 16px; } .framer-bhyD7 .framer-x18nsg { gap: 12px; } .framer-bhyD7 .framer-1886ni4 { flex: none; width: 0%; } .framer-bhyD7 .framer-8ejptm { height: 30vh; } .framer-bhyD7 .framer-lydjdh { top: 700px; } .framer-bhyD7 .framer-14rgndk { gap: 32px; } .framer-bhyD7 .framer-47jnu3 { gap: 24px; padding: 24px 0px 0px 0px; } .framer-bhyD7 .framer-u5fagg { flex-direction: column; gap: 24px; } .framer-bhyD7 .framer-1p9qicz { max-width: 560px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bhyD7 .framer-4rohkc, .framer-bhyD7 .framer-1ruxvlz, .framer-bhyD7 .framer-u7mnzh, .framer-bhyD7 .framer-x18nsg, .framer-bhyD7 .framer-14rgndk, .framer-bhyD7 .framer-47jnu3, .framer-bhyD7 .framer-u5fagg { gap: 0px; } .framer-bhyD7 .framer-4rohkc > *, .framer-bhyD7 .framer-47jnu3 > *, .framer-bhyD7 .framer-u5fagg > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-bhyD7 .framer-4rohkc > :first-child, .framer-bhyD7 .framer-1ruxvlz > :first-child, .framer-bhyD7 .framer-u7mnzh > :first-child, .framer-bhyD7 .framer-x18nsg > :first-child, .framer-bhyD7 .framer-14rgndk > :first-child, .framer-bhyD7 .framer-47jnu3 > :first-child, .framer-bhyD7 .framer-u5fagg > :first-child { margin-top: 0px; } .framer-bhyD7 .framer-4rohkc > :last-child, .framer-bhyD7 .framer-1ruxvlz > :last-child, .framer-bhyD7 .framer-u7mnzh > :last-child, .framer-bhyD7 .framer-x18nsg > :last-child, .framer-bhyD7 .framer-14rgndk > :last-child, .framer-bhyD7 .framer-47jnu3 > :last-child, .framer-bhyD7 .framer-u5fagg > :last-child { margin-bottom: 0px; } .framer-bhyD7 .framer-1ruxvlz > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-bhyD7 .framer-u7mnzh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-bhyD7 .framer-x18nsg > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-bhyD7 .framer-14rgndk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4755\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"i81mdTrVw\":{\"layout\":[\"fixed\",\"auto\"]},\"PX1KbnxLB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramergftG3nZHu=withCSS(Component,css,\"framer-bhyD7\");export default FramergftG3nZHu;FramergftG3nZHu.displayName=\"Blog\";FramergftG3nZHu.defaultProps={height:4755,width:1200};addFonts(FramergftG3nZHu,[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5SZVFDB7V52TI6ULVC6J3WQZQCIZVDV5/ODYPSTCUDMKSTYIPTV4CLQ7URIK7XYBJ/YS3VPNVO4B3TOJMEXDGFZQ4TLZGGSRZC.woff2\",weight:\"600\"},{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\"}]},...NavbarFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...componentPresets.fonts?.[\"el6QkseK_\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"el6QkseK_\"]):[],...componentPresets.fonts?.[\"Fcc5d9vdy\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"Fcc5d9vdy\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergftG3nZHu\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i81mdTrVw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PX1KbnxLB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"4755\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useStore", "createStore", "TableOverride", "Component", "props", "store", "extractAndFormatTable", "te", "contentDiv", "codeBlock", "framerCbDiv", "styleAttr", "cssVars", "pair", "key", "value", "s", "colorScheme", "borderDiv", "borderStyle", "window", "borderWidth", "borderColor", "borderRadius", "padding", "outerContainer", "innerContainer", "table", "tableHtml", "line", "row", "index", "cells", "cell", "cellIndex", "style", "ue", "observer", "p", "NavbarFonts", "getFonts", "g4fYxvbl0_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "MotionDivWithOptimizedAppearEffect", "motion", "RichTextTableOverride1p9qiczWithOptimizedAppearEffect", "withCodeBoundaryForOverrides", "TableOverride", "FooterFonts", "sKJ95guDU_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "animation3", "animation4", "toResponsiveImage", "value", "transition2", "animation5", "animation6", "animation7", "animation8", "isSet", "prefix", "suffix", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "WHzz_L7AJ_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "flm7Obz3F", "QiBUGq00b", "q1yEw87_J", "JjtzvmaL_", "previousItemId", "previousItemId_NB4gnwXDp", "previousItemId_flm7Obz3F", "nextItemId", "nextItemId_NB4gnwXDp", "nextItemId_flm7Obz3F", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "visible", "textContent", "visible1", "textContent1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "g4fYxvbl0_default", "x", "RichTextWithOptimizedAppearEffect", "MotionDivWithOptimizedAppearEffect", "RichText2", "getLoadingLazyAtYPosition", "Image2", "ComponentPresetsProvider", "RichTextTableOverride1p9qiczWithOptimizedAppearEffect", "Link", "sKJ95guDU_default", "css", "FramergftG3nZHu", "withCSS", "gftG3nZHu_default", "addFonts", "NavbarFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
