{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js", "ssg:https://framerusercontent.com/modules/2XMG782VUO14LxJkvafg/jbswlaN3m7mYYpGvDbeu/W0s0jMcXR.js", "ssg:https://framerusercontent.com/modules/qbROrZsvn1tiy70lHO7q/rgMf7lrGOXxmKXrBm3sz/ckgnswqg7.js", "ssg:https://framerusercontent.com/modules/oFX0eoTcAXA8SfiiAqHc/3S1ktyhBBZDNS0qeOqn8/C5bCiq0FD.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (41c59c7)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={PGFJUHRsk:{hover:true}};const cycleOrder=[\"PGFJUHRsk\"];const serializationHash=\"framer-rZkzc\";const variantClassNames={PGFJUHRsk:\"framer-v-1dmm9gh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,link,width,...props})=>{return{...props,hEXKAdGgw:link!==null&&link!==void 0?link:props.hEXKAdGgw};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,hEXKAdGgw,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PGFJUHRsk\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:hEXKAdGgw,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1dmm9gh\",className,classNames)} framer-1pc8vzg`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"PGFJUHRsk\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-b0190dd8-9126-4162-a9a7-bf4c072f3dbc, rgb(6, 7, 9))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},variants:{\"PGFJUHRsk-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0190dd8-9126-4162-a9a7-bf4c072f3dbc, rgb(6, 7, 9))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"PGFJUHRsk-hover\":{\"data-border\":true,\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xmriec-container\",layoutDependency:layoutDependency,layoutId:\"G2G7LXmVf-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-505a41dc-8b59-4a87-b272-6b2ce4e1d1e8, rgb(250, 248, 243))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"G2G7LXmVf\",layoutId:\"G2G7LXmVf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({\"PGFJUHRsk-hover\":{color:\"var(--token-b0190dd8-9126-4162-a9a7-bf4c072f3dbc, rgb(6, 7, 9))\"}},baseVariant,gestureVariant)})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rZkzc.framer-1pc8vzg, .framer-rZkzc .framer-1pc8vzg { display: block; }\",\".framer-rZkzc.framer-1dmm9gh { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 20px 8px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-rZkzc .framer-1xmriec-container { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rZkzc.framer-1dmm9gh { gap: 0px; } .framer-rZkzc.framer-1dmm9gh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rZkzc.framer-1dmm9gh > :first-child { margin-left: 0px; } .framer-rZkzc.framer-1dmm9gh > :last-child { margin-right: 0px; } }\",'.framer-rZkzc[data-border=\"true\"]::after, .framer-rZkzc [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"BrjKPU8dH\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"hEXKAdGgw\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerW0s0jMcXR=withCSS(Component,css,\"framer-rZkzc\");export default FramerW0s0jMcXR;FramerW0s0jMcXR.displayName=\"Button/More\";FramerW0s0jMcXR.defaultProps={height:40,width:64};addPropertyControls(FramerW0s0jMcXR,{hEXKAdGgw:{title:\"Link\",type:ControlType.Link}});addFonts(FramerW0s0jMcXR,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW0s0jMcXR\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"hEXKAdGgw\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"64\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"BrjKPU8dH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W0s0jMcXR.map", "// Generated by Framer (3fa6aa4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/3kLuaEgJ3t0ZhcSvpWD4/0uWCm7fIzGHrfa8xKdAN/CJU2Zs3ke.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/7Mzlx3j7migdfYBrH2b5/pnriUfH6yZWhhZHjT2Ml/L3_4vo4JR.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ckETZB9xQuj6BKGSDGj6/1VPrKLMz9uYHuEKmOTPg/QgMJ5jqF1.js\";import ButtonMore from\"https://framerusercontent.com/modules/2XMG782VUO14LxJkvafg/jbswlaN3m7mYYpGvDbeu/W0s0jMcXR.js\";const ButtonMoreFonts=getFonts(ButtonMore);const enabledGestures={qz6TlziuO:{hover:true}};const cycleOrder=[\"qz6TlziuO\"];const serializationHash=\"framer-s4Eon\";const variantClassNames={qz6TlziuO:\"framer-v-1cvscu6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({click,date,excerpt,height,id,image,link,postTitle,width,...props})=>{return{...props,CP2BDGgO_:link??props.CP2BDGgO_,EvDYAqZoy:excerpt??props.EvDYAqZoy??\"Search engines are a super important traffic source for blogs. Our own blog is living proof of the power of SEO.\\xa0\",HFWvA37Ae:click??props.HFWvA37Ae,NOXs66nCN:date??props.NOXs66nCN??\"Apr 8, 2022\",x2N4pLHnL:image??props.x2N4pLHnL,Zd2TzALvd:postTitle??props.Zd2TzALvd??\"Starting and Growing a Career in Web Design\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,NOXs66nCN,Zd2TzALvd,EvDYAqZoy,CP2BDGgO_,x2N4pLHnL,HFWvA37Ae,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qz6TlziuO\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1idxs3t=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(HFWvA37Ae){const res=await HFWvA37Ae(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1cvscu6\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qz6TlziuO\",onTap:onTap1idxs3t,ref:ref??ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-505a41dc-8b59-4a87-b272-6b2ce4e1d1e8, rgb(250, 248, 243))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{\"qz6TlziuO-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9b28154e-5617-4e86-af3a-4bff3a6d5794, rgba(255, 255, 255, 0.6))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-1884a0d4-b1e7-496e-8da3-053c8a1ab99a, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"qz6TlziuO-hover\":{\"data-border\":true,\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:CP2BDGgO_,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1oj3qnh framer-18x2yig\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"UIInhwclJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15gxisk\",\"data-styles-preset\":\"CJU2Zs3ke\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b26e3eb1-f874-4076-bd15-fc9afd392d65, rgba(6, 7, 9, 0.7)))\"},children:\"Apr 8, 2022\"})}),className:\"framer-ds9dkd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Uhsd_N8ZO\",style:{\"--extracted-r6o4lv\":\"var(--token-b26e3eb1-f874-4076-bd15-fc9afd392d65, rgba(6, 7, 9, 0.7))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:NOXs66nCN,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-zqyee\",\"data-styles-preset\":\"QgMJ5jqF1\",children:\"Starting and Growing a Career in Web Design\"})}),className:\"framer-1mpgdhj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GZOLYts72\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Zd2TzALvd,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:CP2BDGgO_,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(x2N4pLHnL)},className:\"framer-e5ndi9 framer-18x2yig\",layoutDependency:layoutDependency,layoutId:\"MLAHkDUru\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hoa7m8\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"gw10xI6S2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-13j0oo7\",\"data-styles-preset\":\"L3_4vo4JR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b26e3eb1-f874-4076-bd15-fc9afd392d65, rgba(6, 7, 9, 0.7)))\"},children:\"Search engines are a super important traffic source for blogs. Our own blog is living proof of the power of SEO.\\xa0\"})}),className:\"framer-lddhro\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MIH2gdVjg\",style:{\"--extracted-r6o4lv\":\"var(--token-b26e3eb1-f874-4076-bd15-fc9afd392d65, rgba(6, 7, 9, 0.7))\"},text:EvDYAqZoy,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kwj8it-container\",layoutDependency:layoutDependency,layoutId:\"H8o8zU8G5-container\",children:/*#__PURE__*/_jsx(ButtonMore,{height:\"100%\",hEXKAdGgw:CP2BDGgO_,id:\"H8o8zU8G5\",layoutId:\"H8o8zU8G5\",width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-s4Eon.framer-18x2yig, .framer-s4Eon .framer-18x2yig { display: block; }\",\".framer-s4Eon.framer-1cvscu6 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; height: 450px; justify-content: space-between; overflow: hidden; padding: 20px; position: relative; width: 350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-s4Eon .framer-1oj3qnh { 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: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-s4Eon .framer-ds9dkd, .framer-s4Eon .framer-1mpgdhj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-s4Eon .framer-e5ndi9 { flex: none; height: 180px; overflow: visible; position: relative; text-decoration: none; width: 100%; }\",\".framer-s4Eon .framer-1hoa7m8 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s4Eon .framer-lddhro { flex: 1 0 0px; height: 90px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-s4Eon .framer-1kwj8it-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-s4Eon .framer-1oj3qnh, .framer-s4Eon .framer-1hoa7m8 { gap: 0px; } .framer-s4Eon .framer-1oj3qnh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-s4Eon .framer-1oj3qnh > :first-child { margin-top: 0px; } .framer-s4Eon .framer-1oj3qnh > :last-child { margin-bottom: 0px; } .framer-s4Eon .framer-1hoa7m8 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-s4Eon .framer-1hoa7m8 > :first-child { margin-left: 0px; } .framer-s4Eon .framer-1hoa7m8 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-s4Eon[data-border=\"true\"]::after, .framer-s4Eon [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 450\n * @framerIntrinsicWidth 350\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"XRB8goPuL\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"NOXs66nCN\":\"date\",\"Zd2TzALvd\":\"postTitle\",\"EvDYAqZoy\":\"excerpt\",\"CP2BDGgO_\":\"link\",\"x2N4pLHnL\":\"image\",\"HFWvA37Ae\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerckgnswqg7=withCSS(Component,css,\"framer-s4Eon\");export default Framerckgnswqg7;Framerckgnswqg7.displayName=\"Card/Post\";Framerckgnswqg7.defaultProps={height:450,width:350};addPropertyControls(Framerckgnswqg7,{NOXs66nCN:{defaultValue:\"Apr 8, 2022\",displayTextArea:false,title:\"Date\",type:ControlType.String},Zd2TzALvd:{defaultValue:\"Starting and Growing a Career in Web Design\",displayTextArea:false,title:\"Post Title\",type:ControlType.String},EvDYAqZoy:{defaultValue:\"Search engines are a super important traffic source for blogs. Our own blog is living proof of the power of SEO.\\xa0\",displayTextArea:false,title:\"Excerpt\",type:ControlType.String},CP2BDGgO_:{title:\"Link\",type:ControlType.Link},x2N4pLHnL:{title:\"Image\",type:ControlType.ResponsiveImage},HFWvA37Ae:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerckgnswqg7,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...ButtonMoreFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerckgnswqg7\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"450\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XRB8goPuL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"NOXs66nCN\\\":\\\"date\\\",\\\"Zd2TzALvd\\\":\\\"postTitle\\\",\\\"EvDYAqZoy\\\":\\\"excerpt\\\",\\\"CP2BDGgO_\\\":\\\"link\\\",\\\"x2N4pLHnL\\\":\\\"image\\\",\\\"HFWvA37Ae\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"350\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (18f6785)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,PathVariablesContext,ResolveLinks,useComponentViewport,useLocaleCode,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import Blog from\"https://framerusercontent.com/modules/gB61IUEs8ORcD2R2InUW/ymrCT8H5SmHVj0yypAE1/EnhQL0ZSF.js\";import Backstage from\"https://framerusercontent.com/modules/3BxYqSPgYVy9EXzwfrjZ/sJI3yB5aKx0zJI90SxFO/P8Y3b_w4H.js\";import CardPost from\"https://framerusercontent.com/modules/qbROrZsvn1tiy70lHO7q/rgMf7lrGOXxmKXrBm3sz/ckgnswqg7.js\";const CardPostFonts=getFonts(CardPost);const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"XqkG_LV1Y\",\"WDp4DuUR6\"];const serializationHash=\"framer-gLDvk\";const variantClassNames={WDp4DuUR6:\"framer-v-vk7meu\",XqkG_LV1Y:\"framer-v-1dhphtv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query=prequery=>prequery({from:{alias:\"default\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"default\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"default\",name:\"g_YzOxOTQ\",type:\"Identifier\"},{collection:\"default\",name:\"oQTlwNOGY\",type:\"Identifier\"},{collection:\"default\",name:\"PFgJLEdZB\",type:\"Identifier\"},{collection:\"default\",name:\"KxX5jAEnl\",type:\"Identifier\"},{collection:\"default\",name:\"VHuZsbrNd\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]});const query1=prequery=>prequery({from:{alias:\"default\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"default\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"default\",name:\"g_YzOxOTQ\",type:\"Identifier\"},{collection:\"default\",name:\"oQTlwNOGY\",type:\"Identifier\"},{collection:\"default\",name:\"PFgJLEdZB\",type:\"Identifier\"},{collection:\"default\",name:\"KxX5jAEnl\",type:\"Identifier\"},{collection:\"default\",name:\"VHuZsbrNd\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]});const query2=prequery=>prequery({from:{alias:\"default\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"default\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"default\",name:\"g_YzOxOTQ\",type:\"Identifier\"},{collection:\"default\",name:\"oQTlwNOGY\",type:\"Identifier\"},{collection:\"default\",name:\"PFgJLEdZB\",type:\"Identifier\"},{collection:\"default\",name:\"KxX5jAEnl\",type:\"Identifier\"},{collection:\"default\",name:\"VHuZsbrNd\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]});const query3=prequery=>prequery({from:{alias:\"default\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"default\",name:\"g_YzOxOTQ\",type:\"Identifier\"},{collection:\"default\",name:\"oQTlwNOGY\",type:\"Identifier\"},{collection:\"default\",name:\"PFgJLEdZB\",type:\"Identifier\"},{collection:\"default\",name:\"KxX5jAEnl\",type:\"Identifier\"},{collection:\"default\",name:\"VHuZsbrNd\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}],where:{collection:\"default\",name:\"NTeWlGFgn\",type:\"Identifier\"}});const query4=prequery=>prequery({from:{alias:\"default\",data:Backstage,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"default\",name:\"btsVJ28Cl\",type:\"Identifier\"},{collection:\"default\",name:\"fki2BHhLE\",type:\"Identifier\"},{collection:\"default\",name:\"p3vIcAMqM\",type:\"Identifier\"},{collection:\"default\",name:\"ObkbA54yC\",type:\"Identifier\"},{collection:\"default\",name:\"MaRNxnHcf\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]});const query5=prequery=>prequery({from:{alias:\"default\",data:Backstage,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"default\",name:\"btsVJ28Cl\",type:\"Identifier\"},{collection:\"default\",name:\"fki2BHhLE\",type:\"Identifier\"},{collection:\"default\",name:\"p3vIcAMqM\",type:\"Identifier\"},{collection:\"default\",name:\"ObkbA54yC\",type:\"Identifier\"},{collection:\"default\",name:\"MaRNxnHcf\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]});const query6=prequery=>prequery({from:{alias:\"default\",data:Backstage,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"default\",name:\"btsVJ28Cl\",type:\"Identifier\"},{collection:\"default\",name:\"fki2BHhLE\",type:\"Identifier\"},{collection:\"default\",name:\"p3vIcAMqM\",type:\"Identifier\"},{collection:\"default\",name:\"ObkbA54yC\",type:\"Identifier\"},{collection:\"default\",name:\"MaRNxnHcf\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]});const query7=prequery=>prequery({from:{alias:\"default\",data:Backstage,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"default\",name:\"btsVJ28Cl\",type:\"Identifier\"},{collection:\"default\",name:\"fki2BHhLE\",type:\"Identifier\"},{collection:\"default\",name:\"p3vIcAMqM\",type:\"Identifier\"},{collection:\"default\",name:\"ObkbA54yC\",type:\"Identifier\"},{collection:\"default\",name:\"MaRNxnHcf\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]});const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"XqkG_LV1Y\",\"Variant 2\":\"WDp4DuUR6\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"XqkG_LV1Y\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,g_YzOxOTQbGh8LDi1U,oQTlwNOGYbGh8LDi1U,PFgJLEdZBbGh8LDi1U,KxX5jAEnlbGh8LDi1U,VHuZsbrNdbGh8LDi1U,idbGh8LDi1U,g_YzOxOTQMwT_hBT28,oQTlwNOGYMwT_hBT28,PFgJLEdZBMwT_hBT28,KxX5jAEnlMwT_hBT28,VHuZsbrNdMwT_hBT28,idMwT_hBT28,g_YzOxOTQHb5iwYp0z,oQTlwNOGYHb5iwYp0z,PFgJLEdZBHb5iwYp0z,KxX5jAEnlHb5iwYp0z,VHuZsbrNdHb5iwYp0z,idHb5iwYp0z,g_YzOxOTQjMsq5PM_O,oQTlwNOGYjMsq5PM_O,PFgJLEdZBjMsq5PM_O,KxX5jAEnljMsq5PM_O,VHuZsbrNdjMsq5PM_O,idjMsq5PM_O,btsVJ28ClZyTLPV7Pg,fki2BHhLEZyTLPV7Pg,p3vIcAMqMZyTLPV7Pg,ObkbA54yCZyTLPV7Pg,MaRNxnHcfZyTLPV7Pg,idZyTLPV7Pg,btsVJ28ClK2DCA6xU5,fki2BHhLEK2DCA6xU5,p3vIcAMqMK2DCA6xU5,ObkbA54yCK2DCA6xU5,MaRNxnHcfK2DCA6xU5,idK2DCA6xU5,btsVJ28ClZJlTyGbyh,fki2BHhLEZJlTyGbyh,p3vIcAMqMZJlTyGbyh,ObkbA54yCZJlTyGbyh,MaRNxnHcfZJlTyGbyh,idZJlTyGbyh,btsVJ28ClrGUDH78QT,fki2BHhLErGUDH78QT,p3vIcAMqMrGUDH78QT,ObkbA54yCrGUDH78QT,MaRNxnHcfrGUDH78QT,idrGUDH78QT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XqkG_LV1Y\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"WDp4DuUR6\")return false;return true;};const activeLocaleCode=useLocaleCode();const router=useRouter();const isDisplayed1=()=>{if(baseVariant===\"WDp4DuUR6\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1dhphtv\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"XqkG_LV1Y\",ref:ref??ref1,style:{...style},...addPropertyOverrides({WDp4DuUR6:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13if3qa-container\",layoutDependency:layoutDependency,layoutId:\"thJQU0LBN-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:5},gap:30,height:\"100%\",id:\"thJQU0LBN\",layoutId:\"thJQU0LBN\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"stretch\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ugexlm\",\"data-framer-name\":\"Collection List Ben Baptie\",layoutDependency:layoutDependency,layoutId:\"bGh8LDi1U\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"default\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"default\",name:\"g_YzOxOTQ\",type:\"Identifier\"},{collection:\"default\",name:\"oQTlwNOGY\",type:\"Identifier\"},{collection:\"default\",name:\"PFgJLEdZB\",type:\"Identifier\"},{collection:\"default\",name:\"KxX5jAEnl\",type:\"Identifier\"},{collection:\"default\",name:\"VHuZsbrNd\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"g_YzOxOTQ\":g_YzOxOTQbGh8LDi1U,\"oQTlwNOGY\":oQTlwNOGYbGh8LDi1U,\"PFgJLEdZB\":PFgJLEdZBbGh8LDi1U,\"KxX5jAEnl\":KxX5jAEnlbGh8LDi1U,\"VHuZsbrNd\":VHuZsbrNdbGh8LDi1U,\"id\":idbGh8LDi1U},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`bGh8LDi1U-${idbGh8LDi1U}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KxX5jAEnl:KxX5jAEnlbGh8LDi1U},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{KxX5jAEnl:KxX5jAEnlbGh8LDi1U},webPageId:\"xeaYZQQpK\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"350px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b659gc-container\",layoutDependency:layoutDependency,layoutId:\"XEMiF6XlK-container\",children:/*#__PURE__*/_jsx(CardPost,{CP2BDGgO_:resolvedLinks[0],EvDYAqZoy:PFgJLEdZBbGh8LDi1U,height:\"100%\",id:\"XEMiF6XlK\",layoutId:\"XEMiF6XlK\",NOXs66nCN:toDateString(g_YzOxOTQbGh8LDi1U,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),style:{height:\"100%\",width:\"100%\"},width:\"100%\",x2N4pLHnL:toResponsiveImage(VHuZsbrNdbGh8LDi1U),Zd2TzALvd:oQTlwNOGYbGh8LDi1U})})})})})},idbGh8LDi1U);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-iogt1m\",\"data-framer-name\":\"Collection List Ghosty\",layoutDependency:layoutDependency,layoutId:\"MwT_hBT28\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"default\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"default\",name:\"g_YzOxOTQ\",type:\"Identifier\"},{collection:\"default\",name:\"oQTlwNOGY\",type:\"Identifier\"},{collection:\"default\",name:\"PFgJLEdZB\",type:\"Identifier\"},{collection:\"default\",name:\"KxX5jAEnl\",type:\"Identifier\"},{collection:\"default\",name:\"VHuZsbrNd\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"g_YzOxOTQ\":g_YzOxOTQMwT_hBT28,\"oQTlwNOGY\":oQTlwNOGYMwT_hBT28,\"PFgJLEdZB\":PFgJLEdZBMwT_hBT28,\"KxX5jAEnl\":KxX5jAEnlMwT_hBT28,\"VHuZsbrNd\":VHuZsbrNdMwT_hBT28,\"id\":idMwT_hBT28},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`MwT_hBT28-${idMwT_hBT28}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KxX5jAEnl:KxX5jAEnlMwT_hBT28},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{KxX5jAEnl:KxX5jAEnlMwT_hBT28},webPageId:\"xeaYZQQpK\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"350px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-avmcew-container\",layoutDependency:layoutDependency,layoutId:\"IIHX0DrRf-container\",children:/*#__PURE__*/_jsx(CardPost,{CP2BDGgO_:resolvedLinks1[0],EvDYAqZoy:PFgJLEdZBMwT_hBT28,height:\"100%\",id:\"IIHX0DrRf\",layoutId:\"IIHX0DrRf\",NOXs66nCN:toDateString(g_YzOxOTQMwT_hBT28,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),style:{height:\"100%\",width:\"100%\"},width:\"100%\",x2N4pLHnL:toResponsiveImage(VHuZsbrNdMwT_hBT28),Zd2TzALvd:oQTlwNOGYMwT_hBT28})})})})})},idMwT_hBT28);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e01p8v\",\"data-framer-name\":\"Collection List Lostboy\",layoutDependency:layoutDependency,layoutId:\"Hb5iwYp0z\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"default\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"default\",name:\"g_YzOxOTQ\",type:\"Identifier\"},{collection:\"default\",name:\"oQTlwNOGY\",type:\"Identifier\"},{collection:\"default\",name:\"PFgJLEdZB\",type:\"Identifier\"},{collection:\"default\",name:\"KxX5jAEnl\",type:\"Identifier\"},{collection:\"default\",name:\"VHuZsbrNd\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({\"g_YzOxOTQ\":g_YzOxOTQHb5iwYp0z,\"oQTlwNOGY\":oQTlwNOGYHb5iwYp0z,\"PFgJLEdZB\":PFgJLEdZBHb5iwYp0z,\"KxX5jAEnl\":KxX5jAEnlHb5iwYp0z,\"VHuZsbrNd\":VHuZsbrNdHb5iwYp0z,\"id\":idHb5iwYp0z},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`Hb5iwYp0z-${idHb5iwYp0z}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KxX5jAEnl:KxX5jAEnlHb5iwYp0z},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{KxX5jAEnl:KxX5jAEnlHb5iwYp0z},webPageId:\"xeaYZQQpK\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"350px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4924y3-container\",layoutDependency:layoutDependency,layoutId:\"gzrmFpHC0-container\",children:/*#__PURE__*/_jsx(CardPost,{CP2BDGgO_:resolvedLinks2[0],EvDYAqZoy:PFgJLEdZBHb5iwYp0z,height:\"100%\",id:\"gzrmFpHC0\",layoutId:\"gzrmFpHC0\",NOXs66nCN:toDateString(g_YzOxOTQHb5iwYp0z,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),style:{height:\"100%\",width:\"100%\"},width:\"100%\",x2N4pLHnL:toResponsiveImage(VHuZsbrNdHb5iwYp0z),Zd2TzALvd:oQTlwNOGYHb5iwYp0z})})})})})},idHb5iwYp0z);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kyikxx\",\"data-framer-name\":\"Collection List Tay Keith\",layoutDependency:layoutDependency,layoutId:\"jMsq5PM_O\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"default\",name:\"g_YzOxOTQ\",type:\"Identifier\"},{collection:\"default\",name:\"oQTlwNOGY\",type:\"Identifier\"},{collection:\"default\",name:\"PFgJLEdZB\",type:\"Identifier\"},{collection:\"default\",name:\"KxX5jAEnl\",type:\"Identifier\"},{collection:\"default\",name:\"VHuZsbrNd\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}],where:{collection:\"default\",name:\"NTeWlGFgn\",type:\"Identifier\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3.map(({\"g_YzOxOTQ\":g_YzOxOTQjMsq5PM_O,\"oQTlwNOGY\":oQTlwNOGYjMsq5PM_O,\"PFgJLEdZB\":PFgJLEdZBjMsq5PM_O,\"KxX5jAEnl\":KxX5jAEnljMsq5PM_O,\"VHuZsbrNd\":VHuZsbrNdjMsq5PM_O,\"id\":idjMsq5PM_O},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`jMsq5PM_O-${idjMsq5PM_O}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KxX5jAEnl:KxX5jAEnljMsq5PM_O},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{KxX5jAEnl:KxX5jAEnljMsq5PM_O},webPageId:\"xeaYZQQpK\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"350px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ikq9ww-container\",layoutDependency:layoutDependency,layoutId:\"z4mhq4hk7-container\",children:/*#__PURE__*/_jsx(CardPost,{CP2BDGgO_:resolvedLinks3[0],EvDYAqZoy:PFgJLEdZBjMsq5PM_O,height:\"100%\",id:\"z4mhq4hk7\",layoutId:\"z4mhq4hk7\",NOXs66nCN:toDateString(g_YzOxOTQjMsq5PM_O,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),style:{height:\"100%\",width:\"100%\"},width:\"100%\",x2N4pLHnL:toResponsiveImage(VHuZsbrNdjMsq5PM_O),Zd2TzALvd:oQTlwNOGYjMsq5PM_O})})})})})},idjMsq5PM_O);})})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"end\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-a28fhu-container\",layoutDependency:layoutDependency,layoutId:\"ATCkMgK2j-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:5},gap:30,height:\"100%\",id:\"ATCkMgK2j\",layoutId:\"ATCkMgK2j\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"stretch\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sqqwn\",\"data-framer-name\":\"Collection List Zach Templar\",layoutDependency:layoutDependency,layoutId:\"ZyTLPV7Pg\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Backstage,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"default\",name:\"btsVJ28Cl\",type:\"Identifier\"},{collection:\"default\",name:\"fki2BHhLE\",type:\"Identifier\"},{collection:\"default\",name:\"p3vIcAMqM\",type:\"Identifier\"},{collection:\"default\",name:\"ObkbA54yC\",type:\"Identifier\"},{collection:\"default\",name:\"MaRNxnHcf\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4.map(({\"btsVJ28Cl\":btsVJ28ClZyTLPV7Pg,\"fki2BHhLE\":fki2BHhLEZyTLPV7Pg,\"p3vIcAMqM\":p3vIcAMqMZyTLPV7Pg,\"ObkbA54yC\":ObkbA54yCZyTLPV7Pg,\"MaRNxnHcf\":MaRNxnHcfZyTLPV7Pg,\"id\":idZyTLPV7Pg},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZyTLPV7Pg-${idZyTLPV7Pg}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ObkbA54yC:ObkbA54yCZyTLPV7Pg},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ObkbA54yC:ObkbA54yCZyTLPV7Pg},webPageId:\"syxPVP8Le\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"350px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bg6mfx-container\",layoutDependency:layoutDependency,layoutId:\"obrFq2CB9-container\",children:/*#__PURE__*/_jsx(CardPost,{CP2BDGgO_:resolvedLinks4[0],EvDYAqZoy:p3vIcAMqMZyTLPV7Pg,height:\"100%\",id:\"obrFq2CB9\",layoutId:\"obrFq2CB9\",NOXs66nCN:toDateString(btsVJ28ClZyTLPV7Pg,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),style:{height:\"100%\",width:\"100%\"},width:\"100%\",x2N4pLHnL:toResponsiveImage(MaRNxnHcfZyTLPV7Pg),Zd2TzALvd:fki2BHhLEZyTLPV7Pg})})})})})},idZyTLPV7Pg);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nmeu5k\",\"data-framer-name\":\"Collection List Jonathan Roy\",layoutDependency:layoutDependency,layoutId:\"K2DCA6xU5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Backstage,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"default\",name:\"btsVJ28Cl\",type:\"Identifier\"},{collection:\"default\",name:\"fki2BHhLE\",type:\"Identifier\"},{collection:\"default\",name:\"p3vIcAMqM\",type:\"Identifier\"},{collection:\"default\",name:\"ObkbA54yC\",type:\"Identifier\"},{collection:\"default\",name:\"MaRNxnHcf\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5.map(({\"btsVJ28Cl\":btsVJ28ClK2DCA6xU5,\"fki2BHhLE\":fki2BHhLEK2DCA6xU5,\"p3vIcAMqM\":p3vIcAMqMK2DCA6xU5,\"ObkbA54yC\":ObkbA54yCK2DCA6xU5,\"MaRNxnHcf\":MaRNxnHcfK2DCA6xU5,\"id\":idK2DCA6xU5},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`K2DCA6xU5-${idK2DCA6xU5}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ObkbA54yC:ObkbA54yCK2DCA6xU5},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ObkbA54yC:ObkbA54yCK2DCA6xU5},webPageId:\"syxPVP8Le\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"350px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mlec1h-container\",layoutDependency:layoutDependency,layoutId:\"m4mMjcUYi-container\",children:/*#__PURE__*/_jsx(CardPost,{CP2BDGgO_:resolvedLinks5[0],EvDYAqZoy:p3vIcAMqMK2DCA6xU5,height:\"100%\",id:\"m4mMjcUYi\",layoutId:\"m4mMjcUYi\",NOXs66nCN:toDateString(btsVJ28ClK2DCA6xU5,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),style:{height:\"100%\",width:\"100%\"},width:\"100%\",x2N4pLHnL:toResponsiveImage(MaRNxnHcfK2DCA6xU5),Zd2TzALvd:fki2BHhLEK2DCA6xU5})})})})})},idK2DCA6xU5);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hqlu5s\",\"data-framer-name\":\"Collection List Cosmo Pyke\",layoutDependency:layoutDependency,layoutId:\"ZJlTyGbyh\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Backstage,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"default\",name:\"btsVJ28Cl\",type:\"Identifier\"},{collection:\"default\",name:\"fki2BHhLE\",type:\"Identifier\"},{collection:\"default\",name:\"p3vIcAMqM\",type:\"Identifier\"},{collection:\"default\",name:\"ObkbA54yC\",type:\"Identifier\"},{collection:\"default\",name:\"MaRNxnHcf\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6.map(({\"btsVJ28Cl\":btsVJ28ClZJlTyGbyh,\"fki2BHhLE\":fki2BHhLEZJlTyGbyh,\"p3vIcAMqM\":p3vIcAMqMZJlTyGbyh,\"ObkbA54yC\":ObkbA54yCZJlTyGbyh,\"MaRNxnHcf\":MaRNxnHcfZJlTyGbyh,\"id\":idZJlTyGbyh},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZJlTyGbyh-${idZJlTyGbyh}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ObkbA54yC:ObkbA54yCZJlTyGbyh},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ObkbA54yC:ObkbA54yCZJlTyGbyh},webPageId:\"syxPVP8Le\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"350px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13cwxf6-container\",layoutDependency:layoutDependency,layoutId:\"hP0yF9S6I-container\",children:/*#__PURE__*/_jsx(CardPost,{CP2BDGgO_:resolvedLinks6[0],EvDYAqZoy:p3vIcAMqMZJlTyGbyh,height:\"100%\",id:\"hP0yF9S6I\",layoutId:\"hP0yF9S6I\",NOXs66nCN:toDateString(btsVJ28ClZJlTyGbyh,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),style:{height:\"100%\",width:\"100%\"},width:\"100%\",x2N4pLHnL:toResponsiveImage(MaRNxnHcfZJlTyGbyh),Zd2TzALvd:fki2BHhLEZJlTyGbyh})})})})})},idZJlTyGbyh);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n2uy7s\",\"data-framer-name\":\"Collection List Sor\",layoutDependency:layoutDependency,layoutId:\"rGUDH78QT\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Backstage,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"default\",name:\"btsVJ28Cl\",type:\"Identifier\"},{collection:\"default\",name:\"fki2BHhLE\",type:\"Identifier\"},{collection:\"default\",name:\"p3vIcAMqM\",type:\"Identifier\"},{collection:\"default\",name:\"ObkbA54yC\",type:\"Identifier\"},{collection:\"default\",name:\"MaRNxnHcf\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7.map(({\"btsVJ28Cl\":btsVJ28ClrGUDH78QT,\"fki2BHhLE\":fki2BHhLErGUDH78QT,\"p3vIcAMqM\":p3vIcAMqMrGUDH78QT,\"ObkbA54yC\":ObkbA54yCrGUDH78QT,\"MaRNxnHcf\":MaRNxnHcfrGUDH78QT,\"id\":idrGUDH78QT},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`rGUDH78QT-${idrGUDH78QT}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ObkbA54yC:ObkbA54yCrGUDH78QT},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ObkbA54yC:ObkbA54yCrGUDH78QT},webPageId:\"syxPVP8Le\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"350px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13087dd-container\",layoutDependency:layoutDependency,layoutId:\"NqlXTQau0-container\",children:/*#__PURE__*/_jsx(CardPost,{CP2BDGgO_:resolvedLinks7[0],EvDYAqZoy:p3vIcAMqMrGUDH78QT,height:\"100%\",id:\"NqlXTQau0\",layoutId:\"NqlXTQau0\",NOXs66nCN:toDateString(btsVJ28ClrGUDH78QT,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),style:{height:\"100%\",width:\"100%\"},width:\"100%\",x2N4pLHnL:toResponsiveImage(MaRNxnHcfrGUDH78QT),Zd2TzALvd:fki2BHhLErGUDH78QT})})})})})},idrGUDH78QT);})})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"end\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gLDvk.framer-natmqh, .framer-gLDvk .framer-natmqh { display: block; }\",\".framer-gLDvk.framer-1dhphtv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 450px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-gLDvk .framer-13if3qa-container, .framer-gLDvk .framer-a28fhu-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-gLDvk .framer-1ugexlm, .framer-gLDvk .framer-iogt1m, .framer-gLDvk .framer-1e01p8v, .framer-gLDvk .framer-1kyikxx, .framer-gLDvk .framer-1sqqwn, .framer-gLDvk .framer-1hqlu5s { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-gLDvk .framer-1b659gc-container, .framer-gLDvk .framer-avmcew-container, .framer-gLDvk .framer-4924y3-container, .framer-gLDvk .framer-1ikq9ww-container, .framer-gLDvk .framer-bg6mfx-container, .framer-gLDvk .framer-mlec1h-container, .framer-gLDvk .framer-13cwxf6-container, .framer-gLDvk .framer-13087dd-container { flex: none; height: 550px; position: relative; width: 350px; }\",\".framer-gLDvk .framer-nmeu5k, .framer-gLDvk .framer-1n2uy7s { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 550px; justify-content: flex-start; padding: 0px; position: relative; width: 350px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gLDvk.framer-1dhphtv, .framer-gLDvk .framer-1ugexlm, .framer-gLDvk .framer-iogt1m, .framer-gLDvk .framer-1e01p8v, .framer-gLDvk .framer-1kyikxx, .framer-gLDvk .framer-1sqqwn, .framer-gLDvk .framer-nmeu5k, .framer-gLDvk .framer-1hqlu5s, .framer-gLDvk .framer-1n2uy7s { gap: 0px; } .framer-gLDvk.framer-1dhphtv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-gLDvk.framer-1dhphtv > :first-child { margin-left: 0px; } .framer-gLDvk.framer-1dhphtv > :last-child { margin-right: 0px; } .framer-gLDvk .framer-1ugexlm > *, .framer-gLDvk .framer-iogt1m > *, .framer-gLDvk .framer-1e01p8v > *, .framer-gLDvk .framer-1kyikxx > *, .framer-gLDvk .framer-1sqqwn > *, .framer-gLDvk .framer-nmeu5k > *, .framer-gLDvk .framer-1hqlu5s > *, .framer-gLDvk .framer-1n2uy7s > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-gLDvk .framer-1ugexlm > :first-child, .framer-gLDvk .framer-iogt1m > :first-child, .framer-gLDvk .framer-1e01p8v > :first-child, .framer-gLDvk .framer-1kyikxx > :first-child, .framer-gLDvk .framer-1sqqwn > :first-child, .framer-gLDvk .framer-nmeu5k > :first-child, .framer-gLDvk .framer-1hqlu5s > :first-child, .framer-gLDvk .framer-1n2uy7s > :first-child { margin-top: 0px; } .framer-gLDvk .framer-1ugexlm > :last-child, .framer-gLDvk .framer-iogt1m > :last-child, .framer-gLDvk .framer-1e01p8v > :last-child, .framer-gLDvk .framer-1kyikxx > :last-child, .framer-gLDvk .framer-1sqqwn > :last-child, .framer-gLDvk .framer-nmeu5k > :last-child, .framer-gLDvk .framer-1hqlu5s > :last-child, .framer-gLDvk .framer-1n2uy7s > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 450\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"WDp4DuUR6\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerC5bCiq0FD=withCSS(Component,css,\"framer-gLDvk\");export default FramerC5bCiq0FD;FramerC5bCiq0FD.displayName=\"Interactive/Post Slide\";FramerC5bCiq0FD.defaultProps={height:450,width:1200};addPropertyControls(FramerC5bCiq0FD,{variant:{options:[\"XqkG_LV1Y\",\"WDp4DuUR6\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerC5bCiq0FD,[{explicitInter:true,fonts:[]},...CardPostFonts,...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerC5bCiq0FD\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"450\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WDp4DuUR6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "n", "progress", "t", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "hEXKAdGgw", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "ComponentViewportProvider", "css", "FramerW0s0jMcXR", "withCSS", "W0s0jMcXR_default", "addPropertyControls", "ControlType", "addFonts", "ButtonMoreFonts", "getFonts", "W0s0jMcXR_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "date", "excerpt", "height", "id", "image", "link", "postTitle", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "NOXs66nCN", "Zd2TzALvd", "EvDYAqZoy", "CP2BDGgO_", "x2N4pLHnL", "HFWvA37Ae", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1idxs3t", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "RichText2", "Image2", "ComponentViewportProvider", "css", "Framerckgnswqg7", "withCSS", "ckgnswqg7_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CardPostFonts", "getFonts", "ckgnswqg7_default", "CarouselFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "toResponsiveImage", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "g_YzOxOTQbGh8LDi1U", "oQTlwNOGYbGh8LDi1U", "PFgJLEdZBbGh8LDi1U", "KxX5jAEnlbGh8LDi1U", "VHuZsbrNdbGh8LDi1U", "idbGh8LDi1U", "g_YzOxOTQMwT_hBT28", "oQTlwNOGYMwT_hBT28", "PFgJLEdZBMwT_hBT28", "KxX5jAEnlMwT_hBT28", "VHuZsbrNdMwT_hBT28", "idMwT_hBT28", "g_YzOxOTQHb5iwYp0z", "oQTlwNOGYHb5iwYp0z", "PFgJLEdZBHb5iwYp0z", "KxX5jAEnlHb5iwYp0z", "VHuZsbrNdHb5iwYp0z", "idHb5iwYp0z", "g_YzOxOTQjMsq5PM_O", "oQTlwNOGYjMsq5PM_O", "PFgJLEdZBjMsq5PM_O", "KxX5jAEnljMsq5PM_O", "VHuZsbrNdjMsq5PM_O", "idjMsq5PM_O", "btsVJ28ClZyTLPV7Pg", "fki2BHhLEZyTLPV7Pg", "p3vIcAMqMZyTLPV7Pg", "ObkbA54yCZyTLPV7Pg", "MaRNxnHcfZyTLPV7Pg", "idZyTLPV7Pg", "btsVJ28ClK2DCA6xU5", "fki2BHhLEK2DCA6xU5", "p3vIcAMqMK2DCA6xU5", "ObkbA54yCK2DCA6xU5", "MaRNxnHcfK2DCA6xU5", "idK2DCA6xU5", "btsVJ28ClZJlTyGbyh", "fki2BHhLEZJlTyGbyh", "p3vIcAMqMZJlTyGbyh", "ObkbA54yCZJlTyGbyh", "MaRNxnHcfZJlTyGbyh", "idZJlTyGbyh", "btsVJ28ClrGUDH78QT", "fki2BHhLErGUDH78QT", "p3vIcAMqMrGUDH78QT", "ObkbA54yCrGUDH78QT", "MaRNxnHcfrGUDH78QT", "idrGUDH78QT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "isDisplayed", "activeLocaleCode", "useLocaleCode", "router", "useRouter", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "transition1", "u", "cx", "serializationHash", "addPropertyOverrides", "ComponentViewportProvider", "Carousel", "ChildrenCanSuspend", "QueryData", "EnhQL0ZSF_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "ckgnswqg7_default", "toDateString", "toResponsiveImage", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks1", "collection2", "paginationInfo2", "loadMore2", "resolvedLinks2", "collection3", "paginationInfo3", "loadMore3", "resolvedLinks3", "P8Y3b_w4H_default", "collection4", "paginationInfo4", "loadMore4", "resolvedLinks4", "collection5", "paginationInfo5", "loadMore5", "resolvedLinks5", "collection6", "paginationInfo6", "loadMore6", "resolvedLinks6", "collection7", "paginationInfo7", "loadMore7", "resolvedLinks7", "css", "FramerC5bCiq0FD", "withCSS", "C5bCiq0FD_default", "addPropertyControls", "ControlType", "addFonts", "CardPostFonts", "CarouselFonts"]
}
