{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js", "ssg:https://framerusercontent.com/modules/KMiYJupvINqCYtpmQtVr/i9D37JfHqSyB0qymEJMu/bSOpcg5Dq.js", "ssg:https://framerusercontent.com/modules/8rpte4Ew12YrL1aj9WNF/H6dQCZp149oGFJF27aOR/LnwQhDgZG.js", "ssg:https://framerusercontent.com/modules/vR1Cc5koY4dLefYrekdL/xYeUcRC699q03zSMlUwn/SUWk7RIu1.js", "ssg:https://framerusercontent.com/modules/iA5YSDci5SdNO5qbZsko/6UBBlmvariDZZNiWLcW5/wKYvRQWsv.js", "ssg:https://framerusercontent.com/modules/bXqPwiPWMfFCYKOKh9yf/vGnionTpTi4mo83VEdKX/Xpk5JWtMZ.js", "ssg:https://framerusercontent.com/modules/f1R1aKdPSKfvPOabDylF/777NnOrwF8gSsib62luu/PiR1tzIEP.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,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}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,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: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/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,adjustment=0)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};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));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\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:()=>startTransition(()=>gotoPage(i)),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`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)=>/*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...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:[isMouseDevice&&/*#__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\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),isMouseDevice&&/*#__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\",{decoding:\"async\",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=>{if(!scrollInfo.current?.scrollLength){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=scrollInfo.current?.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\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (189896a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/2HZXEEMBHYg3mzpQRoGD/2pFONpnOynLagIbOERdj/GvWRgZ0Tu.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/7uYR32HTHOBskogl4cf8/Yar2Z9xh3uU90824FdK1/IJntazYMy.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={UtLoDOEvi:{hover:true}};const serializationHash=\"framer-E8reo\";const variantClassNames={UtLoDOEvi:\"framer-v-12vkp3z\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:30,delay:0,mass:1,stiffness:400,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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({content,height,id,img,title,width,...props})=>{return{...props,BGf2UMjsL:title??props.BGf2UMjsL??\"\u8A2D\u8A08\u70E4\u66F8\u83DC\",dUeKqLV3e:content??props.dUeKqLV3e??\"\u5C0E\u8B80\u8A2D\u8A08\u7522\u696D\u7D93\u5178\u66F8\u7C4D\uFF0C\u4E00\u540C\u642D\u5EFA\u8A2D\u8A08\u77E5\u8B58\u5EAB\",m1mRJeYh0:img??props.m1mRJeYh0??{alt:\"\",pixelHeight:496,pixelWidth:496,src:\"https://framerusercontent.com/images/CpKPwCEoz69jwAt25AayMazqS0.jpg\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,m1mRJeYh0,BGf2UMjsL,dUeKqLV3e,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"UtLoDOEvi\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"UtLoDOEvi-hover\")return true;return false;};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(scopingClassNames,\"framer-12vkp3z\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"UtLoDOEvi\",ref:refBinding,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({\"UtLoDOEvi-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:248,intrinsicWidth:248,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:496,pixelWidth:496,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(m1mRJeYh0)},className:\"framer-1nbfpp6\",\"data-framer-name\":\"Podcast2\",layoutDependency:layoutDependency,layoutId:\"HgAVNd5of\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,filter:\"none\",WebkitFilter:\"none\"},variants:{\"UtLoDOEvi-hover\":{filter:\"blur(2px)\",WebkitFilter:\"blur(2px)\"}}}),/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-zbwyz2\",layoutDependency:layoutDependency,layoutId:\"nWg8DET8U\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:1},variants:{\"UtLoDOEvi-hover\":{backgroundColor:\"var(--token-212d6191-0858-416f-8b44-11051d903972, rgb(26, 19, 19))\",opacity:.6}},...addPropertyOverrides({\"UtLoDOEvi-hover\":{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.6}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bkt0hu\",layoutDependency:layoutDependency,layoutId:\"boeBr7zSB\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pqovea\",\"data-styles-preset\":\"GvWRgZ0Tu\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eb15c764-26fe-4622-9f31-b77f6033e966, rgb(255, 255, 255)))\"},children:\"\u5C0E\u8B80\u8A2D\u8A08\u7522\u696D\u7D93\u5178\u66F8\u7C4D\uFF0C\u4E00\u540C\u642D\u5EFA\u8A2D\u8A08\u77E5\u8B58\u5EAB\"})}),className:\"framer-kkanru\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dtSYfP67V\",style:{\"--extracted-r6o4lv\":\"var(--token-eb15c764-26fe-4622-9f31-b77f6033e966, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:dUeKqLV3e,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-jzaeye\",\"data-styles-preset\":\"IJntazYMy\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-a4f3d87f-5fbe-4141-81b1-55c030b95ac7, rgb(255, 255, 255)))\"},children:\"\u8A2D\u8A08\u70E4\u66F8\u83DC\"})}),className:\"framer-1ww6bsh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WxLOtCUM5\",style:{\"--extracted-1eung3n\":\"var(--token-a4f3d87f-5fbe-4141-81b1-55c030b95ac7, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:BGf2UMjsL,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-E8reo.framer-jmnepi, .framer-E8reo .framer-jmnepi { display: block; }\",\".framer-E8reo.framer-12vkp3z { cursor: pointer; height: 248px; overflow: hidden; position: relative; width: 248px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E8reo .framer-1nbfpp6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 248px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; }\",\".framer-E8reo .framer-zbwyz2 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-E8reo .framer-bkt0hu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 10px; position: absolute; right: 0px; top: 50%; }\",\".framer-E8reo .framer-kkanru { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-E8reo .framer-1ww6bsh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-E8reo.framer-v-12vkp3z.hover .framer-kkanru { order: 1; }\",\".framer-E8reo.framer-v-12vkp3z.hover .framer-1ww6bsh { order: 0; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 248\n * @framerIntrinsicWidth 248\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"CgKdt1j7e\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"m1mRJeYh0\":\"img\",\"BGf2UMjsL\":\"title\",\"dUeKqLV3e\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerbSOpcg5Dq=withCSS(Component,css,\"framer-E8reo\");export default FramerbSOpcg5Dq;FramerbSOpcg5Dq.displayName=\"Podcast\";FramerbSOpcg5Dq.defaultProps={height:248,width:248};addPropertyControls(FramerbSOpcg5Dq,{m1mRJeYh0:{__defaultAssetReference:\"data:framer/asset-reference,CpKPwCEoz69jwAt25AayMazqS0.jpg?originalFilename=Podcast2.jpg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,CpKPwCEoz69jwAt25AayMazqS0.jpg?originalFilename=Podcast2.jpg&preferredSize=auto\"},title:\"Img\",type:ControlType.ResponsiveImage},BGf2UMjsL:{defaultValue:\"\u8A2D\u8A08\u70E4\u66F8\u83DC\",displayTextArea:false,title:\"Title\",type:ControlType.String},dUeKqLV3e:{defaultValue:\"\u5C0E\u8B80\u8A2D\u8A08\u7522\u696D\u7D93\u5178\u66F8\u7C4D\uFF0C\u4E00\u540C\u642D\u5EFA\u8A2D\u8A08\u77E5\u8B58\u5EAB\",displayTextArea:false,title:\"content\",type:ControlType.String}});addFonts(FramerbSOpcg5Dq,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbSOpcg5Dq\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CgKdt1j7e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"248\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"248\",\"framerVariables\":\"{\\\"m1mRJeYh0\\\":\\\"img\\\",\\\"BGf2UMjsL\\\":\\\"title\\\",\\\"dUeKqLV3e\\\":\\\"content\\\"}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bSOpcg5Dq.map", "// Generated by Framer (9e04080)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/Eb2KmGO3vYLTgRuH0EHM/pgTjtn1P75OORJZWKuWb/OWapz_YR2.js\";const enabledGestures={uqn87anEl:{hover:true}};const serializationHash=\"framer-O81v9\";const variantClassNames={uqn87anEl:\"framer-v-rxbeb7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({cursor,height,id,link,title,width,...props})=>{return{...props,kMnUIZFk5:cursor??props.kMnUIZFk5,LywIqVVIA:title??props.LywIqVVIA??\"Go to Facebook\",uraA2mSo7:link??props.uraA2mSo7};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,LywIqVVIA,uraA2mSo7,kMnUIZFk5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"uqn87anEl\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:uraA2mSo7,motionChild:true,nodeId:\"uqn87anEl\",openInNewTab:true,scopeId:\"LnwQhDgZG\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-rxbeb7\",className,classNames)} framer-sn9a1k`,\"data-framer-cursor\":kMnUIZFk5,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"uqn87anEl\",ref:refBinding,style:{...style},...addPropertyOverrides({\"uqn87anEl-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-108a0ip\",\"data-styles-preset\":\"OWapz_YR2\",children:\"Go to Facebook\"})}),className:\"framer-1xwe1i3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BX15Q2EZV\",text:LywIqVVIA,variants:{\"uqn87anEl-hover\":{\"--extracted-1of0zx5\":\"var(--token-bc46a014-052e-4a0b-bf56-9d375104e5f0, rgb(214, 60, 61))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"uqn87anEl-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-108a0ip\",\"data-styles-preset\":\"OWapz_YR2\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bc46a014-052e-4a0b-bf56-9d375104e5f0, rgb(214, 60, 61)))\"},children:\"Go to Facebook\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yxy1au\",\"data-framer-name\":\"Icon/24x24/ArrowLink\",layoutDependency:layoutDependency,layoutId:\"I9234:25782;1017:3596\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-131mq5o\",layoutDependency:layoutDependency,layoutId:\"QKXEp4Hb_\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1dy9og6\",layoutDependency:layoutDependency,layoutId:\"Ipf_6jzss\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.5 9\" overflow=\"visible\"><path d=\"M 0 0 L 8.5 0 L 8.5 9\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58)) /* {&quot;name&quot;:&quot;Dark&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({\"uqn87anEl-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.5 9\" overflow=\"visible\"><path d=\"M 0 0 L 8.5 0 L 8.5 9\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-bc46a014-052e-4a0b-bf56-9d375104e5f0, rgb(214, 60, 61)) /* {&quot;name&quot;:&quot;Red&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-huuznv\",layoutDependency:layoutDependency,layoutId:\"M7nu0voif\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.5 11\" overflow=\"visible\"><path d=\"M 10.5 0 L 0 11\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58)) /* {&quot;name&quot;:&quot;Dark&quot;} */\" stroke-linecap=\"round\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({\"uqn87anEl-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.5 11\" overflow=\"visible\"><path d=\"M 10.5 0 L 0 11\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-bc46a014-052e-4a0b-bf56-9d375104e5f0, rgb(214, 60, 61)) /* {&quot;name&quot;:&quot;Red&quot;} */\" stroke-linecap=\"round\"></path></svg>'}},baseVariant,gestureVariant)})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-O81v9.framer-sn9a1k, .framer-O81v9 .framer-sn9a1k { display: block; }\",\".framer-O81v9.framer-rxbeb7 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-O81v9 .framer-1xwe1i3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-O81v9 .framer-1yxy1au { flex: none; gap: 0px; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-O81v9 .framer-131mq5o { bottom: 4px; flex: none; height: 13px; left: calc(45.83333333333336% - 14px / 2); overflow: hidden; position: absolute; width: 14px; }\",\".framer-O81v9 .framer-1dy9og6 { height: 9px; left: 4px; position: absolute; top: 1px; width: 9px; }\",\".framer-O81v9 .framer-huuznv { height: 11px; left: 2px; position: absolute; top: 1px; width: 11px; }\",\".framer-O81v9.framer-v-rxbeb7.hover .framer-131mq5o { bottom: unset; left: calc(54.166666666666686% - 14px / 2); top: calc(50.00000000000002% - 13px / 2); }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 159\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"fcBDb7Y9c\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"LywIqVVIA\":\"title\",\"uraA2mSo7\":\"link\",\"kMnUIZFk5\":\"cursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerLnwQhDgZG=withCSS(Component,css,\"framer-O81v9\");export default FramerLnwQhDgZG;FramerLnwQhDgZG.displayName=\"Goto\";FramerLnwQhDgZG.defaultProps={height:30,width:159};addPropertyControls(FramerLnwQhDgZG,{LywIqVVIA:{defaultValue:\"Go to Facebook\",displayTextArea:false,title:\"Title\",type:ControlType.String},uraA2mSo7:{title:\"Link\",type:ControlType.Link},kMnUIZFk5:{title:\"Cursor\",type:ControlType.CustomCursor}});addFonts(FramerLnwQhDgZG,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLnwQhDgZG\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"159\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fcBDb7Y9c\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"LywIqVVIA\\\":\\\"title\\\",\\\"uraA2mSo7\\\":\\\"link\\\",\\\"kMnUIZFk5\\\":\\\"cursor\\\"}\",\"framerIntrinsicHeight\":\"30\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LnwQhDgZG.map", "// Generated by Framer (189896a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/95UyHS4ZRpjrqYggSm9p/QFf1J6XKzcdXZeiwl589/BbBuAL6ux.js\";const enabledGestures={eBLCWhtNz:{hover:true}};const serializationHash=\"framer-UAKpC\";const variantClassNames={eBLCWhtNz:\"framer-v-hck82m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,title1,title2,width,...props})=>{return{...props,jIq3hTmtQ:link??props.jIq3hTmtQ,JyNP940AI:title2??props.JyNP940AI??\"\u8DA8\u52E2\u89C0\u5BDF\u5BB6\",RJA7nYOtI:title1??props.RJA7nYOtI??\"UXI\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,RJA7nYOtI,JyNP940AI,jIq3hTmtQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"eBLCWhtNz\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:jIq3hTmtQ,motionChild:true,nodeId:\"eBLCWhtNz\",openInNewTab:true,scopeId:\"SUWk7RIu1\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-hck82m\",className,classNames)} framer-1n2dfjk`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"eBLCWhtNz\",ref:refBinding,style:{...style},...addPropertyOverrides({\"eBLCWhtNz-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11t888i\",layoutDependency:layoutDependency,layoutId:\"ZfT6bZkx1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-c0jwdm\",\"data-styles-preset\":\"BbBuAL6ux\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-36553a2e-a738-4f8c-8092-473a1f5353d6, rgb(255, 255, 255)))\"},children:\"UXI\"})}),className:\"framer-9xrcio\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gCoitNiR7\",style:{\"--extracted-a0htzi\":\"var(--token-36553a2e-a738-4f8c-8092-473a1f5353d6, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:RJA7nYOtI,variants:{\"eBLCWhtNz-hover\":{\"--extracted-a0htzi\":\"var(--token-d90a719e-15e7-4d17-84f8-454a979a8243, rgb(183, 123, 242))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"eBLCWhtNz-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-c0jwdm\",\"data-styles-preset\":\"BbBuAL6ux\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-d90a719e-15e7-4d17-84f8-454a979a8243, rgb(183, 123, 242)))\"},children:\"UXI\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-c0jwdm\",\"data-styles-preset\":\"BbBuAL6ux\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-eb15c764-26fe-4622-9f31-b77f6033e966, rgb(255, 255, 255)))\"},children:\"\u8DA8\u52E2\u89C0\u5BDF\u5BB6\"})}),className:\"framer-ly28er\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZMfqVhgtN\",style:{\"--extracted-a0htzi\":\"var(--token-eb15c764-26fe-4622-9f31-b77f6033e966, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:JyNP940AI,variants:{\"eBLCWhtNz-hover\":{\"--extracted-a0htzi\":\"var(--token-d90a719e-15e7-4d17-84f8-454a979a8243, rgb(183, 123, 242))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"eBLCWhtNz-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-c0jwdm\",\"data-styles-preset\":\"BbBuAL6ux\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-d90a719e-15e7-4d17-84f8-454a979a8243, rgb(183, 123, 242)))\"},children:\"\u8DA8\u52E2\u89C0\u5BDF\u5BB6\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hlm0ei\",layoutDependency:layoutDependency,layoutId:\"Lgo5XU8iF\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-owfih5\",layoutDependency:layoutDependency,layoutId:\"n1o8Rog4x\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11 5.5\" overflow=\"visible\"><path d=\"M 0 0 L 5.5 5.5 L 11 0\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-a4f3d87f-5fbe-4141-81b1-55c030b95ac7, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({\"eBLCWhtNz-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11 5.5\" overflow=\"visible\"><path d=\"M 0 0 L 5.5 5.5 L 11 0\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-d90a719e-15e7-4d17-84f8-454a979a8243, rgb(183, 123, 242)) /* {&quot;name&quot;:&quot;Hover(Active)-Purple&quot;} */\"></path></svg>'}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UAKpC.framer-1n2dfjk, .framer-UAKpC .framer-1n2dfjk { display: block; }\",\".framer-UAKpC.framer-hck82m { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 132px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-UAKpC .framer-11t888i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 160px; }\",\".framer-UAKpC .framer-9xrcio, .framer-UAKpC .framer-ly28er { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-UAKpC .framer-1hlm0ei { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-UAKpC .framer-owfih5 { height: 6px; left: 7px; position: absolute; top: 9px; width: 11px; }\",\".framer-UAKpC.framer-v-hck82m.hover.framer-hck82m { gap: 12px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 132\n * @framerIntrinsicWidth 160\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"IuGUodkYG\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"RJA7nYOtI\":\"title1\",\"JyNP940AI\":\"title2\",\"jIq3hTmtQ\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerSUWk7RIu1=withCSS(Component,css,\"framer-UAKpC\");export default FramerSUWk7RIu1;FramerSUWk7RIu1.displayName=\"Pagelink\";FramerSUWk7RIu1.defaultProps={height:132,width:160};addPropertyControls(FramerSUWk7RIu1,{RJA7nYOtI:{defaultValue:\"UXI\",displayTextArea:false,title:\"Title1\",type:ControlType.String},JyNP940AI:{defaultValue:\"\u8DA8\u52E2\u89C0\u5BDF\u5BB6\",displayTextArea:false,title:\"Title2\",type:ControlType.String},jIq3hTmtQ:{title:\"Link\",type:ControlType.Link}});addFonts(FramerSUWk7RIu1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSUWk7RIu1\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"IuGUodkYG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"160\",\"framerVariables\":\"{\\\"RJA7nYOtI\\\":\\\"title1\\\",\\\"JyNP940AI\\\":\\\"title2\\\",\\\"jIq3hTmtQ\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"132\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SUWk7RIu1.map", "// Generated by Framer (861d57e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/cYDXTu9QbQ3KFILKU5FW/6ea0uneqG0y3urrgRR04/eBudnCpz0.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/tFiFuemazEZuKiV2nTg1/MYA6eXB7ByzM9ChJjA0J/eEax6t5Hu.js\";const enabledGestures={WyKr1Axvp:{hover:true}};const cycleOrder=[\"WyKr1Axvp\",\"N7xfB_Fyl\"];const serializationHash=\"framer-XTHJI\";const variantClassNames={N7xfB_Fyl:\"framer-v-1ruuv6k\",WyKr1Axvp:\"framer-v-3zbqve\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default_Mobile:\"N7xfB_Fyl\",Default:\"WyKr1Axvp\"};const getProps=({content,date,height,id,image,link,title,width,...props})=>{return{...props,cUSNTvHSs:image??props.cUSNTvHSs??{alt:\"\",pixelHeight:388,pixelWidth:624,src:\"https://framerusercontent.com/images/tUUiIhy7735SNg3s8GyCfNrAs.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/tUUiIhy7735SNg3s8GyCfNrAs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tUUiIhy7735SNg3s8GyCfNrAs.jpg 624w\"},Dtzcqed8Z:title??props.Dtzcqed8Z??\"Facebook\",m9wCcVb0r:link??props.m9wCcVb0r,RNr3QCZKb:date??props.RNr3QCZKb??\"May 06 2023\",variant:humanReadableVariantMap[props.variant]??props.variant??\"WyKr1Axvp\",yrkVuyznu:content??props.yrkVuyznu??\"\u900F\u904E\u6545\u4E8B\u6253\u52D5\u4EBA\u5FC3\uFF1A\u6558\u4E8B\u8A2D\u8A08\u7684\u91CD\u8981\u6027\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,cUSNTvHSs,Dtzcqed8Z,yrkVuyznu,RNr3QCZKb,m9wCcVb0r,nI3MvQm6A,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WyKr1Axvp\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:m9wCcVb0r,motionChild:true,nodeId:\"WyKr1Axvp\",scopeId:\"wKYvRQWsv\",smoothScroll:true,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(nI3MvQm6A)},className:`${cx(scopingClassNames,\"framer-3zbqve\",className,classNames)} framer-1ydlkza`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"WyKr1Axvp\",ref:refBinding,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({\"WyKr1Axvp-hover\":{\"data-framer-name\":undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(nI3MvQm6A),...{positionX:\"center\",positionY:\"center\"}}},N7xfB_Fyl:{\"data-framer-name\":\"Default_Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qo5oxp\",layoutDependency:layoutDependency,layoutId:\"jM9zp9cdh\",style:{borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:194,intrinsicWidth:312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||388)-0-(194+Math.max(0,((componentViewport?.height||388)-0-194)/1)*1+0))/2+0+0)+0),pixelHeight:388,pixelWidth:624,sizes:\"312px\",...toResponsiveImage(cUSNTvHSs)},className:\"framer-d8ftjg\",\"data-framer-name\":\"Imga1\",layoutDependency:layoutDependency,layoutId:\"FdwQJyz1t\",style:{borderTopLeftRadius:20,borderTopRightRadius:20},transformTemplate:transformTemplate1,...addPropertyOverrides({\"WyKr1Axvp-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:194,intrinsicWidth:312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||388)-0-(194+Math.max(0,((componentViewport?.height||388)-0-194)/1)*1+0))/2+0+0)+-9.7),pixelHeight:388,pixelWidth:624,sizes:\"343.2px\",...toResponsiveImage(cUSNTvHSs)},transformTemplate:transformTemplate2},N7xfB_Fyl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:194,intrinsicWidth:312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||306.5)-0-306.6)/2+0+0)+0),pixelHeight:388,pixelWidth:624,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(cUSNTvHSs)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-us81em\",layoutDependency:layoutDependency,layoutId:\"kw83OOpoj\",style:{backgroundColor:\"var(--token-a4f3d87f-5fbe-4141-81b1-55c030b95ac7, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zraxg2\",layoutDependency:layoutDependency,layoutId:\"armS0CFGI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17ief2s\",\"data-styles-preset\":\"eBudnCpz0\",children:\"Facebook\"})}),className:\"framer-y7ts91\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Y_qxu91By\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Dtzcqed8Z,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nfrvpi\",\"data-styles-preset\":\"eEax6t5Hu\",children:\"\u900F\u904E\u6545\u4E8B\u6253\u52D5\u4EBA\u5FC3\uFF1A\u6558\u4E8B\u8A2D\u8A08\u7684\u91CD\u8981\u6027\"})}),className:\"framer-daql6y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fCb0PCbh7\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yrkVuyznu,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17ief2s\",\"data-styles-preset\":\"eBudnCpz0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-db48e37b-91a2-475b-bcc7-536521b8cb6a, rgb(154, 147, 147)))\"},children:\"May 06 2023\"})}),className:\"framer-1cd72bi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HjI8xm8qH\",style:{\"--extracted-r6o4lv\":\"var(--token-db48e37b-91a2-475b-bcc7-536521b8cb6a, rgb(154, 147, 147))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:RNr3QCZKb,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XTHJI.framer-1ydlkza, .framer-XTHJI .framer-1ydlkza { display: block; }\",\".framer-XTHJI.framer-3zbqve { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 388px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 312px; }\",\".framer-XTHJI .framer-1qo5oxp { flex: none; height: 194px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-XTHJI .framer-d8ftjg { aspect-ratio: 1.6082474226804124 / 1; bottom: 0px; flex: none; left: 50%; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 312px); }\",\".framer-XTHJI .framer-us81em { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: flex-start; overflow: visible; padding: 24px 32px 24px 32px; position: relative; width: 100%; }\",\".framer-XTHJI .framer-zraxg2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XTHJI .framer-y7ts91, .framer-XTHJI .framer-1cd72bi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XTHJI .framer-daql6y { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XTHJI.framer-v-1ruuv6k.framer-3zbqve { cursor: unset; height: min-content; width: 243px; }\",\".framer-XTHJI.framer-v-1ruuv6k .framer-1qo5oxp { height: 141px; }\",\".framer-XTHJI.framer-v-1ruuv6k .framer-d8ftjg { bottom: var(--framer-aspect-ratio-supported, 0px); width: 100%; }\",\".framer-XTHJI.framer-v-1ruuv6k .framer-us81em { flex: none; gap: 0px; height: min-content; padding: 16px; }\",\".framer-XTHJI.framer-v-1ruuv6k .framer-daql6y { height: 72px; }\",\".framer-XTHJI.framer-v-3zbqve.hover .framer-d8ftjg { bottom: unset; height: 110%; left: -15px; top: 50%; width: var(--framer-aspect-ratio-supported, 344px); }\",\".framer-XTHJI.framer-v-3zbqve.hover .framer-us81em { cursor: pointer; }\",\".framer-XTHJI.framer-v-3zbqve.hover .framer-zraxg2 { overflow: hidden; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 388\n * @framerIntrinsicWidth 312\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"N7xfB_Fyl\":{\"layout\":[\"fixed\",\"auto\"]},\"SXku45MSk\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"cUSNTvHSs\":\"image\",\"Dtzcqed8Z\":\"title\",\"yrkVuyznu\":\"content\",\"RNr3QCZKb\":\"date\",\"m9wCcVb0r\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerwKYvRQWsv=withCSS(Component,css,\"framer-XTHJI\");export default FramerwKYvRQWsv;FramerwKYvRQWsv.displayName=\"\u7CBE\u9078\u8CBC\u6587\";FramerwKYvRQWsv.defaultProps={height:388,width:312};addPropertyControls(FramerwKYvRQWsv,{variant:{options:[\"WyKr1Axvp\",\"N7xfB_Fyl\"],optionTitles:[\"Default\",\"Default_Mobile\"],title:\"Variant\",type:ControlType.Enum},cUSNTvHSs:{__defaultAssetReference:\"data:framer/asset-reference,tUUiIhy7735SNg3s8GyCfNrAs.jpg?originalFilename=imga1.jpg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,tUUiIhy7735SNg3s8GyCfNrAs.jpg?originalFilename=imga1.jpg&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},Dtzcqed8Z:{defaultValue:\"Facebook\",displayTextArea:false,title:\"Title\",type:ControlType.String},yrkVuyznu:{defaultValue:\"\u900F\u904E\u6545\u4E8B\u6253\u52D5\u4EBA\u5FC3\uFF1A\u6558\u4E8B\u8A2D\u8A08\u7684\u91CD\u8981\u6027\",displayTextArea:false,title:\"content\",type:ControlType.String},RNr3QCZKb:{defaultValue:\"May 06 2023\",displayTextArea:false,title:\"date\",type:ControlType.String},m9wCcVb0r:{title:\"Link\",type:ControlType.Link}});addFonts(FramerwKYvRQWsv,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwKYvRQWsv\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"cUSNTvHSs\\\":\\\"image\\\",\\\"Dtzcqed8Z\\\":\\\"title\\\",\\\"yrkVuyznu\\\":\\\"content\\\",\\\"RNr3QCZKb\\\":\\\"date\\\",\\\"m9wCcVb0r\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"N7xfB_Fyl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SXku45MSk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"312\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"388\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wKYvRQWsv.map", "// Generated by Framer (189896a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/Eb2KmGO3vYLTgRuH0EHM/pgTjtn1P75OORJZWKuWb/OWapz_YR2.js\";const enabledGestures={dUt2FMBwr:{hover:true},IoOGU7sI5:{hover:true},Kd2uDxJ4T:{hover:true}};const cycleOrder=[\"dUt2FMBwr\",\"IoOGU7sI5\",\"Kd2uDxJ4T\"];const serializationHash=\"framer-mVrMX\";const variantClassNames={dUt2FMBwr:\"framer-v-i4vf53\",IoOGU7sI5:\"framer-v-tdhjaz\",Kd2uDxJ4T:\"framer-v-hk1nnc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Apple Podcast\":\"dUt2FMBwr\",\"Spotify Podcast\":\"IoOGU7sI5\",youtube:\"Kd2uDxJ4T\"};const getProps=({cursor,height,id,link,title,width,...props})=>{return{...props,kNI66fNwD:cursor??props.kNI66fNwD,variant:humanReadableVariantMap[props.variant]??props.variant??\"dUt2FMBwr\",YHPtVv8nY:link??props.YHPtVv8nY,ZEkzBnDnA:title??props.ZEkzBnDnA??\"Apple Podcasts\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ZEkzBnDnA,YHPtVv8nY,kNI66fNwD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dUt2FMBwr\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"IoOGU7sI5-hover\",\"Kd2uDxJ4T-hover\"].includes(gestureVariant))return false;if([\"IoOGU7sI5\",\"Kd2uDxJ4T\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"IoOGU7sI5-hover\")return true;if(baseVariant===\"IoOGU7sI5\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"Kd2uDxJ4T-hover\")return true;if(baseVariant===\"Kd2uDxJ4T\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:YHPtVv8nY,motionChild:true,nodeId:\"dUt2FMBwr\",openInNewTab:true,scopeId:\"Xpk5JWtMZ\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-i4vf53\",className,classNames)} framer-1va8d2u`,\"data-framer-cursor\":kNI66fNwD,\"data-framer-name\":\"Apple Podcast\",layoutDependency:layoutDependency,layoutId:\"dUt2FMBwr\",ref:refBinding,style:{...style},...addPropertyOverrides({\"dUt2FMBwr-hover\":{\"data-framer-name\":undefined},\"IoOGU7sI5-hover\":{\"data-framer-name\":undefined},\"Kd2uDxJ4T-hover\":{\"data-framer-name\":undefined},IoOGU7sI5:{\"data-framer-name\":\"Spotify Podcast\"},Kd2uDxJ4T:{\"data-framer-name\":\"youtube\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1614dvm\",\"data-framer-name\":\"Icon/24x24/ApplePodcast\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"O5d9cxOjy\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 2 12 C 2 6.477 6.477 2 12 2 C 17.523 2 22 6.477 22 12 C 22 17.523 17.523 22 12 22 C 6.477 22 2 17.523 2 12 Z\" fill=\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58)) /* {&quot;name&quot;:&quot;Dark&quot;} */\"></path><path d=\"M 12 13.076 C 11.627 13.076 11.263 12.965 10.953 12.758 C 10.643 12.551 10.402 12.257 10.259 11.913 C 10.116 11.568 10.079 11.189 10.152 10.824 C 10.225 10.458 10.404 10.123 10.668 9.859 C 10.931 9.596 11.267 9.416 11.632 9.343 C 11.998 9.271 12.377 9.308 12.721 9.451 C 13.066 9.593 13.36 9.835 13.567 10.145 C 13.774 10.455 13.884 10.819 13.884 11.192 C 13.884 11.691 13.686 12.171 13.333 12.524 C 12.979 12.877 12.5 13.076 12 13.076 Z M 13.06 13.076 L 10.94 13.076 C 10.732 13.075 10.527 13.123 10.34 13.214 C 10.154 13.305 9.99 13.438 9.863 13.602 C 9.738 13.762 9.651 13.949 9.609 14.148 C 9.567 14.347 9.572 14.553 9.622 14.75 L 10.442 17.98 C 10.517 18.272 10.688 18.531 10.927 18.715 C 11.165 18.9 11.459 18.999 11.76 18.998 L 12.24 18.998 C 12.542 19 12.836 18.901 13.075 18.716 C 13.315 18.532 13.486 18.273 13.561 17.98 L 14.381 14.75 C 14.432 14.553 14.436 14.347 14.395 14.148 C 14.353 13.949 14.266 13.762 14.14 13.602 C 14.013 13.438 13.849 13.304 13.661 13.213 C 13.474 13.122 13.268 13.075 13.06 13.076 Z M 15.65 12.941 C 15.615 13.08 15.636 13.226 15.708 13.349 C 15.781 13.472 15.899 13.561 16.037 13.597 C 16.081 13.608 16.127 13.614 16.172 13.614 C 16.291 13.614 16.407 13.574 16.501 13.501 C 16.596 13.428 16.663 13.325 16.693 13.21 C 16.877 12.494 16.895 11.746 16.745 11.022 C 16.596 10.298 16.282 9.618 15.829 9.034 C 15.377 8.45 14.796 7.977 14.132 7.652 C 13.469 7.326 12.739 7.157 12 7.157 C 11.261 7.157 10.532 7.326 9.868 7.652 C 9.204 7.977 8.623 8.45 8.171 9.034 C 7.718 9.618 7.404 10.298 7.255 11.022 C 7.105 11.746 7.123 12.494 7.307 13.21 C 7.324 13.279 7.354 13.345 7.397 13.402 C 7.439 13.46 7.492 13.508 7.554 13.545 C 7.615 13.582 7.683 13.606 7.753 13.616 C 7.824 13.626 7.896 13.623 7.965 13.605 C 8.034 13.587 8.099 13.555 8.156 13.512 C 8.213 13.469 8.261 13.415 8.296 13.353 C 8.332 13.291 8.355 13.223 8.364 13.152 C 8.374 13.082 8.369 13.01 8.35 12.941 C 8.207 12.384 8.193 11.802 8.309 11.239 C 8.426 10.676 8.67 10.148 9.022 9.693 C 9.374 9.239 9.826 8.872 10.342 8.619 C 10.858 8.366 11.425 8.235 12 8.235 C 12.575 8.235 13.142 8.366 13.658 8.619 C 14.174 8.872 14.626 9.239 14.978 9.693 C 15.33 10.148 15.574 10.676 15.691 11.239 C 15.807 11.802 15.793 12.385 15.65 12.941 Z M 12 5 C 10.496 5 9.033 5.484 7.826 6.38 C 6.619 7.277 5.732 8.538 5.298 9.978 C 4.864 11.418 4.905 12.959 5.415 14.373 C 5.925 15.787 6.877 17 8.13 17.831 C 8.248 17.91 8.394 17.939 8.534 17.911 C 8.674 17.883 8.797 17.8 8.876 17.681 C 8.915 17.622 8.942 17.556 8.956 17.487 C 8.969 17.418 8.969 17.346 8.955 17.277 C 8.941 17.208 8.914 17.142 8.874 17.083 C 8.835 17.024 8.784 16.974 8.725 16.935 C 7.665 16.232 6.86 15.206 6.428 14.009 C 5.997 12.812 5.962 11.508 6.33 10.29 C 6.697 9.072 7.447 8.005 8.468 7.246 C 9.489 6.487 10.727 6.078 12 6.078 C 13.272 6.078 14.51 6.487 15.531 7.246 C 16.553 8.005 17.302 9.072 17.67 10.29 C 18.037 11.508 18.003 12.812 17.571 14.009 C 17.14 15.206 16.334 16.232 15.274 16.935 C 15.158 17.015 15.078 17.138 15.051 17.276 C 15.025 17.415 15.054 17.559 15.132 17.676 C 15.21 17.794 15.331 17.876 15.469 17.905 C 15.607 17.934 15.752 17.907 15.87 17.831 C 17.123 17 18.075 15.787 18.585 14.373 C 19.095 12.959 19.136 11.418 18.702 9.978 C 18.268 8.538 17.381 7.277 16.174 6.38 C 14.967 5.484 13.504 5 12 5 Z\" fill=\"var(--token-a4f3d87f-5fbe-4141-81b1-55c030b95ac7, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:12723678723,withExternalLayout:true,...addPropertyOverrides({\"dUt2FMBwr-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 2 12 C 2 6.477 6.477 2 12 2 C 17.523 2 22 6.477 22 12 C 22 17.523 17.523 22 12 22 C 6.477 22 2 17.523 2 12 Z\" fill=\"var(--token-a4555b24-2757-458c-b376-f603af370a72, rgb(214, 60, 61)) /* {&quot;name&quot;:&quot;Red&quot;} */\"></path><path d=\"M 12 13.076 C 11.627 13.076 11.263 12.965 10.953 12.758 C 10.643 12.551 10.402 12.257 10.259 11.913 C 10.116 11.568 10.079 11.189 10.152 10.824 C 10.225 10.458 10.404 10.123 10.668 9.859 C 10.931 9.596 11.267 9.416 11.632 9.343 C 11.998 9.271 12.377 9.308 12.721 9.451 C 13.066 9.593 13.36 9.835 13.567 10.145 C 13.774 10.455 13.884 10.819 13.884 11.192 C 13.884 11.691 13.686 12.171 13.333 12.524 C 12.979 12.877 12.5 13.076 12 13.076 Z M 13.06 13.076 L 10.94 13.076 C 10.732 13.075 10.527 13.123 10.34 13.214 C 10.154 13.305 9.99 13.438 9.863 13.602 C 9.738 13.762 9.651 13.949 9.609 14.148 C 9.567 14.347 9.572 14.553 9.622 14.75 L 10.442 17.98 C 10.517 18.272 10.688 18.531 10.927 18.715 C 11.165 18.9 11.459 18.999 11.76 18.998 L 12.24 18.998 C 12.542 19 12.836 18.901 13.075 18.716 C 13.315 18.532 13.486 18.273 13.561 17.98 L 14.381 14.75 C 14.432 14.553 14.436 14.347 14.395 14.148 C 14.353 13.949 14.266 13.762 14.14 13.602 C 14.013 13.438 13.849 13.304 13.661 13.213 C 13.474 13.122 13.268 13.075 13.06 13.076 Z M 15.65 12.941 C 15.615 13.08 15.636 13.226 15.708 13.349 C 15.781 13.472 15.899 13.561 16.037 13.597 C 16.081 13.608 16.127 13.614 16.172 13.614 C 16.291 13.614 16.407 13.574 16.501 13.501 C 16.596 13.428 16.663 13.325 16.693 13.21 C 16.877 12.494 16.895 11.746 16.745 11.022 C 16.596 10.298 16.282 9.618 15.829 9.034 C 15.377 8.45 14.796 7.977 14.132 7.652 C 13.469 7.326 12.739 7.157 12 7.157 C 11.261 7.157 10.532 7.326 9.868 7.652 C 9.204 7.977 8.623 8.45 8.171 9.034 C 7.718 9.618 7.404 10.298 7.255 11.022 C 7.105 11.746 7.123 12.494 7.307 13.21 C 7.324 13.279 7.354 13.345 7.397 13.402 C 7.439 13.46 7.492 13.508 7.554 13.545 C 7.615 13.582 7.683 13.606 7.753 13.616 C 7.824 13.626 7.896 13.623 7.965 13.605 C 8.034 13.587 8.099 13.555 8.156 13.512 C 8.213 13.469 8.261 13.415 8.296 13.353 C 8.332 13.291 8.355 13.223 8.364 13.152 C 8.374 13.082 8.369 13.01 8.35 12.941 C 8.207 12.384 8.193 11.802 8.309 11.239 C 8.426 10.676 8.67 10.148 9.022 9.693 C 9.374 9.239 9.826 8.872 10.342 8.619 C 10.858 8.366 11.425 8.235 12 8.235 C 12.575 8.235 13.142 8.366 13.658 8.619 C 14.174 8.872 14.626 9.239 14.978 9.693 C 15.33 10.148 15.574 10.676 15.691 11.239 C 15.807 11.802 15.793 12.385 15.65 12.941 Z M 12 5 C 10.496 5 9.033 5.484 7.826 6.38 C 6.619 7.277 5.732 8.538 5.298 9.978 C 4.864 11.418 4.905 12.959 5.415 14.373 C 5.925 15.787 6.877 17 8.13 17.831 C 8.248 17.91 8.394 17.939 8.534 17.911 C 8.674 17.883 8.797 17.8 8.876 17.681 C 8.915 17.622 8.942 17.556 8.956 17.487 C 8.969 17.418 8.969 17.346 8.955 17.277 C 8.941 17.208 8.914 17.142 8.874 17.083 C 8.835 17.024 8.784 16.974 8.725 16.935 C 7.665 16.232 6.86 15.206 6.428 14.009 C 5.997 12.812 5.962 11.508 6.33 10.29 C 6.697 9.072 7.447 8.005 8.468 7.246 C 9.489 6.487 10.727 6.078 12 6.078 C 13.272 6.078 14.51 6.487 15.531 7.246 C 16.553 8.005 17.302 9.072 17.67 10.29 C 18.037 11.508 18.003 12.812 17.571 14.009 C 17.14 15.206 16.334 16.232 15.274 16.935 C 15.158 17.015 15.078 17.138 15.051 17.276 C 15.025 17.415 15.054 17.559 15.132 17.676 C 15.21 17.794 15.331 17.876 15.469 17.905 C 15.607 17.934 15.752 17.907 15.87 17.831 C 17.123 17 18.075 15.787 18.585 14.373 C 19.095 12.959 19.136 11.418 18.702 9.978 C 18.268 8.538 17.381 7.277 16.174 6.38 C 14.967 5.484 13.504 5 12 5 Z\" fill=\"var(--token-a4f3d87f-5fbe-4141-81b1-55c030b95ac7, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10502746069}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-108a0ip\",\"data-styles-preset\":\"OWapz_YR2\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58)))\"},children:\"Apple Podcasts\"})}),className:\"framer-nk23bu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Y6PIqpv34\",style:{\"--extracted-1of0zx5\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ZEkzBnDnA,variants:{\"dUt2FMBwr-hover\":{\"--extracted-1of0zx5\":\"var(--token-bc46a014-052e-4a0b-bf56-9d375104e5f0, rgb(214, 60, 61))\"},\"IoOGU7sI5-hover\":{\"--extracted-1of0zx5\":\"var(--token-bc46a014-052e-4a0b-bf56-9d375104e5f0, rgb(214, 60, 61))\"},\"Kd2uDxJ4T-hover\":{\"--extracted-1of0zx5\":\"var(--token-bc46a014-052e-4a0b-bf56-9d375104e5f0, rgb(214, 60, 61))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"dUt2FMBwr-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-108a0ip\",\"data-styles-preset\":\"OWapz_YR2\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bc46a014-052e-4a0b-bf56-9d375104e5f0, rgb(214, 60, 61)))\"},children:\"Apple Podcasts\"})})},\"IoOGU7sI5-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-108a0ip\",\"data-styles-preset\":\"OWapz_YR2\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bc46a014-052e-4a0b-bf56-9d375104e5f0, rgb(214, 60, 61)))\"},children:\"Apple Podcasts\"})})},\"Kd2uDxJ4T-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-108a0ip\",\"data-styles-preset\":\"OWapz_YR2\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bc46a014-052e-4a0b-bf56-9d375104e5f0, rgb(214, 60, 61)))\"},children:\"Apple Podcasts\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-vo75pn\",layoutDependency:layoutDependency,layoutId:\"IAoCt4e8V\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1m81ule\",layoutDependency:layoutDependency,layoutId:\"iugJIwK79\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\" overflow=\"visible\"><path d=\"M 15.9 8.9 C 12.7 7 7.35 6.8 4.3 7.75 C 3.8 7.9 3.3 7.6 3.15 7.15 C 3 6.65 3.3 6.15 3.75 6 C 7.3 4.95 13.15 5.15 16.85 7.35 C 17.3 7.6 17.45 8.2 17.2 8.65 C 16.95 9 16.35 9.15 15.9 8.9 Z M 15.8 11.7 C 15.55 12.05 15.1 12.2 14.75 11.95 C 12.05 10.3 7.95 9.8 4.8 10.8 C 4.4 10.9 3.95 10.7 3.85 10.3 C 3.75 9.9 3.95 9.45 4.35 9.35 C 8 8.25 12.5 8.8 15.6 10.7 C 15.9 10.85 16.05 11.35 15.8 11.7 Z M 14.6 14.45 C 14.4 14.75 14.05 14.85 13.75 14.65 C 11.4 13.2 8.45 12.9 4.95 13.7 C 4.6 13.8 4.3 13.55 4.2 13.25 C 4.1 12.9 4.35 12.6 4.65 12.5 C 8.45 11.65 11.75 12 14.35 13.6 C 14.7 13.75 14.75 14.15 14.6 14.45 Z M 10 0 C 4.477 0 0 4.477 0 10 C 0 15.523 4.477 20 10 20 C 15.523 20 20 15.523 20 10 C 20 4.477 15.523 0 10 0 Z\" fill=\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58)) /* {&quot;name&quot;:&quot;Dark&quot;} */\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({\"IoOGU7sI5-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\" overflow=\"visible\"><path d=\"M 15.9 8.9 C 12.7 7 7.35 6.8 4.3 7.75 C 3.8 7.9 3.3 7.6 3.15 7.15 C 3 6.65 3.3 6.15 3.75 6 C 7.3 4.95 13.15 5.15 16.85 7.35 C 17.3 7.6 17.45 8.2 17.2 8.65 C 16.95 9 16.35 9.15 15.9 8.9 Z M 15.8 11.7 C 15.55 12.05 15.1 12.2 14.75 11.95 C 12.05 10.3 7.95 9.8 4.8 10.8 C 4.4 10.9 3.95 10.7 3.85 10.3 C 3.75 9.9 3.95 9.45 4.35 9.35 C 8 8.25 12.5 8.8 15.6 10.7 C 15.9 10.85 16.05 11.35 15.8 11.7 Z M 14.6 14.45 C 14.4 14.75 14.05 14.85 13.75 14.65 C 11.4 13.2 8.45 12.9 4.95 13.7 C 4.6 13.8 4.3 13.55 4.2 13.25 C 4.1 12.9 4.35 12.6 4.65 12.5 C 8.45 11.65 11.75 12 14.35 13.6 C 14.7 13.75 14.75 14.15 14.6 14.45 Z M 10 0 C 4.477 0 0 4.477 0 10 C 0 15.523 4.477 20 10 20 C 15.523 20 20 15.523 20 10 C 20 4.477 15.523 0 10 0 Z\" fill=\"var(--token-bc46a014-052e-4a0b-bf56-9d375104e5f0, rgb(214, 60, 61)) /* {&quot;name&quot;:&quot;Red&quot;} */\"></path></svg>'}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-tvpy3q\",layoutDependency:layoutDependency,layoutId:\"Gs0rbCGoF\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.209 3.639\" overflow=\"visible\"><path d=\"M 12.789 3.514 C 9.589 1.614 4.239 1.414 1.189 2.364 C 0.689 2.514 0.189 2.214 0.039 1.764 C -0.111 1.264 0.189 0.764 0.639 0.614 C 4.189 -0.436 10.039 -0.236 13.739 1.964 C 14.189 2.214 14.339 2.814 14.089 3.264 C 13.839 3.614 13.239 3.764 12.789 3.514 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17wsq4s\",layoutDependency:layoutDependency,layoutId:\"OR9YHOidY\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.102 3.286\" overflow=\"visible\"><path d=\"M 11.975 2.912 C 11.725 3.262 11.275 3.412 10.925 3.162 C 8.225 1.512 4.125 1.012 0.975 2.012 C 0.575 2.112 0.125 1.912 0.025 1.512 C -0.075 1.112 0.125 0.662 0.525 0.562 C 4.175 -0.538 8.675 0.012 11.775 1.912 C 12.075 2.062 12.225 2.562 11.975 2.912 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-150digg\",layoutDependency:layoutDependency,layoutId:\"shX5LDOIX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.502 2.703\" overflow=\"visible\"><path d=\"M 10.422 2.399 C 10.222 2.699 9.872 2.799 9.572 2.599 C 7.222 1.149 4.272 0.849 0.772 1.649 C 0.422 1.749 0.122 1.499 0.022 1.199 C -0.078 0.849 0.172 0.549 0.472 0.449 C 4.272 -0.401 7.572 -0.051 10.172 1.549 C 10.522 1.699 10.572 2.099 10.422 2.399 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1b0jjjq\",layoutDependency:layoutDependency,layoutId:\"b5LdNXFmv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\" overflow=\"visible\"><path d=\"M 10 0 C 4.477 0 0 4.477 0 10 C 0 15.523 4.477 20 10 20 C 15.523 20 20 15.523 20 10 C 20 4.477 15.523 0 10 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ovo56w\",\"data-framer-name\":\"Frame 1261154436\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ukUDlR5X_\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 5 21 C 2.239 21 0 18.761 0 16 L 0 9 C 0 6.239 2.239 4 5 4 L 18 4 C 20.761 4 23 6.239 23 9 L 23 16 C 23 18.761 20.761 21 18 21 Z\" fill=\"var(--token-823b1fc4-da90-4b7a-afbc-98e0efe3a677, rgb(66, 58, 58)) /* {&quot;name&quot;:&quot;Dark&quot;} */\"></path><path d=\"M 15.5 11.634 C 16.167 12.019 16.167 12.981 15.5 13.366 L 10.25 16.397 C 9.583 16.782 8.75 16.301 8.75 15.531 L 8.75 9.469 C 8.75 8.699 9.583 8.218 10.25 8.603 Z\" fill=\"var(--token-a4f3d87f-5fbe-4141-81b1-55c030b95ac7, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11882898388,withExternalLayout:true,...addPropertyOverrides({\"Kd2uDxJ4T-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 5 21 C 2.239 21 0 18.761 0 16 L 0 9 C 0 6.239 2.239 4 5 4 L 18 4 C 20.761 4 23 6.239 23 9 L 23 16 C 23 18.761 20.761 21 18 21 Z\" fill=\"var(--token-a4555b24-2757-458c-b376-f603af370a72, rgb(214, 60, 61)) /* {&quot;name&quot;:&quot;Red&quot;} */\"></path><path d=\"M 15.5 11.634 C 16.167 12.019 16.167 12.981 15.5 13.366 L 10.25 16.397 C 9.583 16.782 8.75 16.301 8.75 15.531 L 8.75 9.469 C 8.75 8.699 9.583 8.218 10.25 8.603 Z\" fill=\"var(--token-a4f3d87f-5fbe-4141-81b1-55c030b95ac7, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10728294918},Kd2uDxJ4T:{svgContentId:10110231406}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mVrMX.framer-1va8d2u, .framer-mVrMX .framer-1va8d2u { display: block; }\",\".framer-mVrMX.framer-i4vf53 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-mVrMX .framer-1614dvm, .framer-mVrMX .framer-1ovo56w { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-mVrMX .framer-nk23bu { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-mVrMX .framer-vo75pn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\".framer-mVrMX .framer-1m81ule { height: 20px; left: 2px; position: absolute; top: 2px; width: 20px; }\",\".framer-mVrMX .framer-tvpy3q { height: 4px; left: 3px; position: absolute; top: 6px; width: 14px; }\",\".framer-mVrMX .framer-17wsq4s { height: 4px; left: 4px; position: absolute; top: 9px; width: 12px; }\",\".framer-mVrMX .framer-150digg { height: 3px; left: 4px; position: absolute; top: 12px; width: 11px; }\",\".framer-mVrMX .framer-1b0jjjq { height: 20px; left: 0px; position: absolute; top: 0px; width: 20px; }\",\".framer-mVrMX.framer-v-tdhjaz .framer-nk23bu, .framer-mVrMX.framer-v-hk1nnc .framer-1ovo56w { order: 2; }\",\".framer-mVrMX.framer-v-tdhjaz .framer-vo75pn { order: 1; }\",\".framer-mVrMX.framer-v-hk1nnc .framer-nk23bu { order: 3; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 157\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"IoOGU7sI5\":{\"layout\":[\"auto\",\"auto\"]},\"Kd2uDxJ4T\":{\"layout\":[\"auto\",\"auto\"]},\"Uf2YYh_8E\":{\"layout\":[\"auto\",\"auto\"]},\"nfzIhvv6g\":{\"layout\":[\"auto\",\"auto\"]},\"Zhauw_ruz\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ZEkzBnDnA\":\"title\",\"YHPtVv8nY\":\"link\",\"kNI66fNwD\":\"cursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerXpk5JWtMZ=withCSS(Component,css,\"framer-mVrMX\");export default FramerXpk5JWtMZ;FramerXpk5JWtMZ.displayName=\"podcast link\";FramerXpk5JWtMZ.defaultProps={height:30,width:157};addPropertyControls(FramerXpk5JWtMZ,{variant:{options:[\"dUt2FMBwr\",\"IoOGU7sI5\",\"Kd2uDxJ4T\"],optionTitles:[\"Apple Podcast\",\"Spotify Podcast\",\"youtube\"],title:\"Variant\",type:ControlType.Enum},ZEkzBnDnA:{defaultValue:\"Apple Podcasts\",displayTextArea:true,title:\"Title\",type:ControlType.String},YHPtVv8nY:{title:\"Link\",type:ControlType.Link},kNI66fNwD:{title:\"Cursor\",type:ControlType.CustomCursor}});addFonts(FramerXpk5JWtMZ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXpk5JWtMZ\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IoOGU7sI5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Kd2uDxJ4T\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Uf2YYh_8E\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nfzIhvv6g\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Zhauw_ruz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"30\",\"framerIntrinsicWidth\":\"157\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"ZEkzBnDnA\\\":\\\"title\\\",\\\"YHPtVv8nY\\\":\\\"link\\\",\\\"kNI66fNwD\\\":\\\"cursor\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Xpk5JWtMZ.map", "// Generated by Framer (629c622)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,useRouter,useSiteRefs,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import Podcast from\"#framer/local/canvasComponent/bSOpcg5Dq/bSOpcg5Dq.js\";import Cursor from\"#framer/local/canvasComponent/eCAycC3GU/eCAycC3GU.js\";import Banner from\"#framer/local/canvasComponent/gsLliwU61/gsLliwU61.js\";import Goto from\"#framer/local/canvasComponent/LnwQhDgZG/LnwQhDgZG.js\";import Pagelink from\"#framer/local/canvasComponent/SUWk7RIu1/SUWk7RIu1.js\";import UserComponent from\"#framer/local/canvasComponent/wKYvRQWsv/wKYvRQWsv.js\";import PodcastLink from\"#framer/local/canvasComponent/Xpk5JWtMZ/Xpk5JWtMZ.js\";import*as sharedStyle4 from\"#framer/local/css/BauqVSrxb/BauqVSrxb.js\";import*as sharedStyle3 from\"#framer/local/css/GvWRgZ0Tu/GvWRgZ0Tu.js\";import*as sharedStyle from\"#framer/local/css/IJntazYMy/IJntazYMy.js\";import*as sharedStyle1 from\"#framer/local/css/W9hTb1ltt/W9hTb1ltt.js\";import*as sharedStyle2 from\"#framer/local/css/wsE3xQif8/wsE3xQif8.js\";import metadataProvider from\"#framer/local/webPageMetadata/PiR1tzIEP/PiR1tzIEP.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const BannerFonts=getFonts(Banner);const PagelinkFonts=getFonts(Pagelink);const ImageWithFX=withFX(Image);const GotoFonts=getFonts(Goto);const UserComponentFonts=getFonts(UserComponent);const CarouselFonts=getFonts(Carousel);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const PodcastFonts=getFonts(Podcast);const PodcastLinkFonts=getFonts(PodcastLink);const CursorFonts=getFonts(Cursor);const breakpoints={g3_9MlLOG:\"(min-width: 810px) and (max-width: 1279px)\",IV8nsfKF3:\"(min-width: 1280px)\",XFGPiuHF6:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-99lYk\";const variantClassNames={g3_9MlLOG:\"framer-v-1vkoumt\",IV8nsfKF3:\"framer-v-127mrxj\",XFGPiuHF6:\"framer-v-hfa42k\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition1={bounce:.2,delay:0,duration:1,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:150};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:100};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"IV8nsfKF3\",Phone:\"XFGPiuHF6\",Tablet:\"g3_9MlLOG\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"IV8nsfKF3\"};};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const cursor={component:Cursor,transition:transition2,variant:\"JY9v0ehXU\"};const cursor1={component:Cursor,transition:transition2,variant:\"owGYq2lu4\"};const cursor2={alignment:\"center\",component:Cursor,offset:{x:20,y:20},placement:\"right\",transition:transition2,variant:\"owGYq2lu4\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"p9X_IN6Em\");const dynamicRef=useSiteRefs();const isDisplayed=()=>{if(!isBrowser())return true;if([\"g3_9MlLOG\",\"XFGPiuHF6\"].includes(baseVariant))return false;return true;};const router=useRouter();const elementId1=useRouteElementId(\"E8PQLnLHQ\");const ref1=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"XFGPiuHF6\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"XFGPiuHF6\")return true;return false;};const elementId2=useRouteElementId(\"XIlYheJhC\");const ref2=React.useRef(null);const elementId3=useRouteElementId(\"hOcfdU50D\");const ref3=React.useRef(null);const elementId4=useRouteElementId(\"IsbjYec1T\");const ref4=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"g3_9MlLOG\")return false;return true;};const elementId5=useRouteElementId(\"PjFUFn7Mg\");const ref5=React.useRef(null);const elementId6=useRouteElementId(\"SlpJRXWIb\");useCustomCursors({\"15u24x5\":cursor2,\"1q8k5l6\":cursor,o5eg9y:cursor1});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"IV8nsfKF3\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-127mrxj\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-krtmb6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"E35Gd1BsL\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"E35Gd1BsL\",intensity:10,layoutId:\"E35Gd1BsL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{height:480}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:680,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+160+360,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uzbd5d-container\",nodeId:\"F8kETyZcO\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g3_9MlLOG:{variant:\"EECin9UIc\"},XFGPiuHF6:{variant:\"r7CXk_jPB\"}},children:/*#__PURE__*/_jsx(Banner,{EuJSAb7C1:\"var(--token-bc46a014-052e-4a0b-bf56-9d375104e5f0, rgb(214, 60, 61))\",f9ykM_S3l:\"\u5F9E\u696D\u7D93\u9A57\u8F49\u5316\u70BA\u6D1E\u5BDF\uFF0C\u8207\u4F60\u5206\u4EAB\u4E16\u754C\u8DA8\u52E2\u548C\u696D\u754C\u8108\u52D5\",GnJ2AItRc:addImageAlt({pixelHeight:732,pixelWidth:750,src:\"https://framerusercontent.com/images/W9F6872TsouMn3znEI4fOTuMh0.png\",srcSet:\"https://framerusercontent.com/images/W9F6872TsouMn3znEI4fOTuMh0.png?scale-down-to=512 512w,https://framerusercontent.com/images/W9F6872TsouMn3znEI4fOTuMh0.png 750w\"},\"\"),height:\"100%\",hKpJL0lv1:addImageAlt({pixelHeight:1360,pixelWidth:2880,src:\"https://framerusercontent.com/images/DJ5KseTongXCpImPQyO7DUKB0.png\",srcSet:\"https://framerusercontent.com/images/DJ5KseTongXCpImPQyO7DUKB0.png?scale-down-to=512 512w,https://framerusercontent.com/images/DJ5KseTongXCpImPQyO7DUKB0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DJ5KseTongXCpImPQyO7DUKB0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DJ5KseTongXCpImPQyO7DUKB0.png 2880w\"},\"\"),id:\"F8kETyZcO\",layoutId:\"F8kETyZcO\",My3DPs8Pp:\"Insights\",style:{height:\"100%\",width:\"100%\"},variant:\"wU5EsFSov\",WEnjbWIQ0:\"\u8A2D\u8A08\u89C0\u9EDE\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ogww2q\",\"data-framer-name\":\"Header change trigger\",id:elementId,ref:dynamicRef(elementId)}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14if8mf\",\"data-framer-name\":\"Content\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v37v7c hidden-1vkoumt hidden-hfa42k\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-36zw9w\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":E8PQLnLHQ\",webPageId:\"PiR1tzIEP\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,y:(componentViewport?.y||0)+160+1200+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-horzjh-container\",nodeId:\"BnAC0ww0d\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Pagelink,{height:\"100%\",id:\"BnAC0ww0d\",jIq3hTmtQ:resolvedLinks[0],JyNP940AI:\"\u8DA8\u52E2\u89C0\u5BDF\u5BB6\",layoutId:\"BnAC0ww0d\",RJA7nYOtI:\"UXI\",style:{height:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":XIlYheJhC\",webPageId:\"PiR1tzIEP\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,y:(componentViewport?.y||0)+160+1200+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ng28no-container\",nodeId:\"jidA3ZxeJ\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Pagelink,{height:\"100%\",id:\"jidA3ZxeJ\",jIq3hTmtQ:resolvedLinks1[0],JyNP940AI:\"&Beer\",layoutId:\"jidA3ZxeJ\",RJA7nYOtI:\"Pizza\",style:{height:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":hOcfdU50D\",webPageId:\"PiR1tzIEP\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,y:(componentViewport?.y||0)+160+1200+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19vd70e-container\",nodeId:\"HGIDALfqS\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Pagelink,{height:\"100%\",id:\"HGIDALfqS\",jIq3hTmtQ:resolvedLinks2[0],JyNP940AI:\"Insight\",layoutId:\"HGIDALfqS\",RJA7nYOtI:\"UXI\",style:{height:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":IsbjYec1T\",webPageId:\"PiR1tzIEP\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,y:(componentViewport?.y||0)+160+1200+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k0xf9l-container\",nodeId:\"ddwICFSpl\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Pagelink,{height:\"100%\",id:\"ddwICFSpl\",jIq3hTmtQ:resolvedLinks3[0],JyNP940AI:\"Bar\",layoutId:\"ddwICFSpl\",RJA7nYOtI:\"UXI\",style:{height:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":PjFUFn7Mg\",webPageId:\"PiR1tzIEP\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,y:(componentViewport?.y||0)+160+1200+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6ihy75-container\",nodeId:\"th9nbiZTe\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Pagelink,{height:\"100%\",id:\"th9nbiZTe\",jIq3hTmtQ:resolvedLinks4[0],JyNP940AI:\"AaaS\",layoutId:\"th9nbiZTe\",RJA7nYOtI:\"UXI\",style:{height:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5dfic6\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qkm4vv\",\"data-framer-name\":\"facebook\",id:elementId1,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qdu60l\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jzaeye\",\"data-styles-preset\":\"IJntazYMy\",style:{\"--framer-text-color\":\"var(--token-a4555b24-2757-458c-b376-f603af370a72, rgb(214, 60, 61))\"},children:\"Facebook\"})}),className:\"framer-19i0w0o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16dcw8k\",\"data-styles-preset\":\"W9hTb1ltt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"UXI \u8DA8\u52E2\u89C0\u5BDF\u5BB6\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16dcw8k\",\"data-styles-preset\":\"W9hTb1ltt\",style:{\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"UXI \u8DA8\u52E2\u89C0\u5BDF\u5BB6\"})}),className:\"framer-of32yn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5dvhnl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11j0u5f\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g3_9MlLOG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:528,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1200+0+0+120+0+0+162+0+0+0+0),pixelHeight:1056,pixelWidth:1952,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 976px) - 80px)`,src:\"https://framerusercontent.com/images/leejQukGz9J4jKEIeiC4JZIYo9k.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/leejQukGz9J4jKEIeiC4JZIYo9k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/leejQukGz9J4jKEIeiC4JZIYo9k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/leejQukGz9J4jKEIeiC4JZIYo9k.jpg 1952w\"}},XFGPiuHF6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:528,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1e3+0+0+48+0+0+134+0+0+0+0),pixelHeight:1056,pixelWidth:1952,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 976px) - 40px)`,src:\"https://framerusercontent.com/images/leejQukGz9J4jKEIeiC4JZIYo9k.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/leejQukGz9J4jKEIeiC4JZIYo9k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/leejQukGz9J4jKEIeiC4JZIYo9k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/leejQukGz9J4jKEIeiC4JZIYo9k.jpg 1952w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:528,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1200+0+282+120+0+0+162+0+0+0+0),pixelHeight:1056,pixelWidth:1952,sizes:\"976px\",src:\"https://framerusercontent.com/images/leejQukGz9J4jKEIeiC4JZIYo9k.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/leejQukGz9J4jKEIeiC4JZIYo9k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/leejQukGz9J4jKEIeiC4JZIYo9k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/leejQukGz9J4jKEIeiC4JZIYo9k.jpg 1952w\"},className:\"framer-6dqqe9\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pqovea\",\"data-styles-preset\":\"GvWRgZ0Tu\",style:{\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"\u8A2D\u8A08\u7D93\u5E38\u96A8\u8457\u6211\u5011\u7684\u4E16\u754C\u7522\u751F\u524D\u6240\u672A\u6709\u7684\u8B8A\u5316\u3002\u672C\u55AE\u5143\u5C07\u900F\u904E\u6DF1\u5165\u65E5\u5E38\u751F\u6D3B\u7684\u89C0\u5BDF\uFF0C\u767C\u73FE\u79D1\u6280\u8207\u8DA8\u52E2\u7684\u65B0\u52D5\u5411\u3002\u6211\u5011\u5C07\u5F9E\u5C08\u696D\u7684\u89D2\u5EA6\u89E3\u6790\u4E0D\u540C\u9818\u57DF\u7684\u8DA8\u52E2\uFF0C\u5F15\u9818\u60A8\u6DF1\u5165\u63A2\u7D22\u5275\u65B0\u79D1\u6280\u8207\u4F7F\u7528\u8005\u9AD4\u9A57\u8A2D\u8A08\u7684\u7121\u9650\u53EF\u80FD\u3002\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-85r5um\",\"data-styles-preset\":\"wsE3xQif8\",style:{\"--framer-text-color\":\"var(--token-db48e37b-91a2-475b-bcc7-536521b8cb6a, rgb(154, 147, 147))\"},children:\"\u8A2D\u8A08\u7D93\u5E38\u96A8\u8457\u6211\u5011\u7684\u4E16\u754C\u7522\u751F\u524D\u6240\u672A\u6709\u7684\u8B8A\u5316\u3002\u672C\u55AE\u5143\u5C07\u900F\u904E\u6DF1\u5165\u65E5\u5E38\u751F\u6D3B\u7684\u89C0\u5BDF\uFF0C\u767C\u73FE\u79D1\u6280\u8207\u8DA8\u52E2\u7684\u65B0\u52D5\u5411\u3002\u6211\u5011\u5C07\u5F9E\u5C08\u696D\u7684\u89D2\u5EA6\u89E3\u6790\u4E0D\u540C\u9818\u57DF\u7684\u8DA8\u52E2\uFF0C\u5F15\u9818\u60A8\u6DF1\u5165\u63A2\u7D22\u5275\u65B0\u79D1\u6280\u8207\u4F7F\u7528\u8005\u9AD4\u9A57\u8A2D\u8A08\u7684\u7121\u9650\u53EF\u80FD\u3002\"})}),className:\"framer-i866aa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18xozuk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wjkaj9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ggnosi\",\"data-styles-preset\":\"BauqVSrxb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"\u7CBE\u9078\u8CBC\u6587\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ggnosi\",\"data-styles-preset\":\"BauqVSrxb\",style:{\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"\u7CBE\u9078\u8CBC\u6587\"})}),className:\"framer-1hgrqva\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g3_9MlLOG:{y:(componentViewport?.y||0)+160+1200+0+0+120+0+0+162+0+818+0+0+7.4},XFGPiuHF6:{y:(componentViewport?.y||0)+160+1e3+0+0+48+0+0+134+0+716+0+0+7.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+160+1200+0+282+120+0+0+162+0+818+0+0+7.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n3q9ay-container\",nodeId:\"qXluBipPY\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Goto,{height:\"100%\",id:\"qXluBipPY\",kMnUIZFk5:\"1q8k5l6\",layoutId:\"qXluBipPY\",LywIqVVIA:\"Go to Facebook\",uraA2mSo7:\"https://www.facebook.com/uxidesign/?locale=zh_TW\",width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rkos2o-container hidden-hfa42k\",isModuleExternal:true,nodeId:\"wMc_V87iI\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",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:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:20,height:\"100%\",id:\"wMc_V87iI\",layoutId:\"wMc_V87iI\",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:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"312px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3staqb-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"haQqEHSPl\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:1200,pixelWidth:1200,positionX:\"47.5%\",positionY:\"32.6%\",src:\"https://framerusercontent.com/images/a813J3NpF0CXVpYW3vqwOT6cx8.jpg\",srcSet:\"https://framerusercontent.com/images/a813J3NpF0CXVpYW3vqwOT6cx8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/a813J3NpF0CXVpYW3vqwOT6cx8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/a813J3NpF0CXVpYW3vqwOT6cx8.jpg 1200w\"},\"\"),Dtzcqed8Z:\"Facebook\",height:\"100%\",id:\"haQqEHSPl\",layoutId:\"haQqEHSPl\",m9wCcVb0r:\"https://www.facebook.com/photo/?fbid=631156429031393&set=pcb.631159459031090&locale=zh_TW\",RNr3QCZKb:\"May 03 2023\",style:{width:\"100%\"},variant:\"WyKr1Axvp\",width:\"100%\",yrkVuyznu:\"\u900F\u904E\u6545\u4E8B\u6253\u52D5\u4EBA\u5FC3\uFF1A\u6558\u4E8B\u8A2D\u8A08\u7684\u91CD\u8981\u6027\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"312px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11moveg-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"JC54ZusBd\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:1200,pixelWidth:1200,positionX:\"49.2%\",positionY:\"32.9%\",src:\"https://framerusercontent.com/images/bpEZvQ8WmWBnlQMH1KR4arLqCs.jpg\",srcSet:\"https://framerusercontent.com/images/bpEZvQ8WmWBnlQMH1KR4arLqCs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bpEZvQ8WmWBnlQMH1KR4arLqCs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bpEZvQ8WmWBnlQMH1KR4arLqCs.jpg 1200w\"},\"\"),Dtzcqed8Z:\"Facebook\",height:\"100%\",id:\"JC54ZusBd\",layoutId:\"JC54ZusBd\",m9wCcVb0r:\"https://www.facebook.com/photo/?fbid=546284370851933&set=pcb.546284454185258&locale=zh_TW\",RNr3QCZKb:\"Oct 28 2022\",style:{width:\"100%\"},variant:\"WyKr1Axvp\",width:\"100%\",yrkVuyznu:\"\u5716\u5F62\u548C\u8A9E\u97F3\u4E92\u52D5\u9AD4\u9A57\uFF1AVUI\u5BE6\u969B\u767C\u5C55\u6848\u4F8B\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"312px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pwinnq-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"Ox2x36OAA\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:1200,pixelWidth:1200,positionX:\"49.2%\",positionY:\"32.1%\",src:\"https://framerusercontent.com/images/uwINgMixwlfWq19Sj8O40Qb4.jpg\",srcSet:\"https://framerusercontent.com/images/uwINgMixwlfWq19Sj8O40Qb4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uwINgMixwlfWq19Sj8O40Qb4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uwINgMixwlfWq19Sj8O40Qb4.jpg 1200w\"},\"\"),Dtzcqed8Z:\"Facebook\",height:\"100%\",id:\"Ox2x36OAA\",layoutId:\"Ox2x36OAA\",m9wCcVb0r:\"https://www.facebook.com/photo/?fbid=450004520479919&set=pcb.450005770479794&locale=zh_TW\",RNr3QCZKb:\"Aug 30 2022\",style:{width:\"100%\"},variant:\"WyKr1Axvp\",width:\"100%\",yrkVuyznu:\"\u5143\u5B87\u5B99Open\uFF01\u672A\u4F86\u767C\u5C55\u9808\u91CD\u8996\u7684\u98A8\u96AA\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-169yjgh-container hidden-127mrxj hidden-1vkoumt\",isModuleExternal:true,nodeId:\"WHrrAbu3V\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",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:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:20,height:\"100%\",id:\"WHrrAbu3V\",layoutId:\"WHrrAbu3V\",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:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"243px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kbytwb-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"CfPXNybTY\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:1200,pixelWidth:1200,positionX:\"47.5%\",positionY:\"32.6%\",src:\"https://framerusercontent.com/images/a813J3NpF0CXVpYW3vqwOT6cx8.jpg\",srcSet:\"https://framerusercontent.com/images/a813J3NpF0CXVpYW3vqwOT6cx8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/a813J3NpF0CXVpYW3vqwOT6cx8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/a813J3NpF0CXVpYW3vqwOT6cx8.jpg 1200w\"},\"\"),Dtzcqed8Z:\"Facebook\",height:\"100%\",id:\"CfPXNybTY\",layoutId:\"CfPXNybTY\",m9wCcVb0r:\"https://www.facebook.com/photo/?fbid=631156429031393&set=pcb.631159459031090&locale=zh_TW\",RNr3QCZKb:\"May 03 2023\",style:{width:\"100%\"},variant:\"N7xfB_Fyl\",width:\"100%\",yrkVuyznu:\"\u900F\u904E\u6545\u4E8B\u6253\u52D5\u4EBA\u5FC3\uFF1A\u6558\u4E8B\u8A2D\u8A08\u7684\u91CD\u8981\u6027\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"243px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gaz80i-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"sQAGfeIWL\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:1200,pixelWidth:1200,positionX:\"49.2%\",positionY:\"32.9%\",src:\"https://framerusercontent.com/images/bpEZvQ8WmWBnlQMH1KR4arLqCs.jpg\",srcSet:\"https://framerusercontent.com/images/bpEZvQ8WmWBnlQMH1KR4arLqCs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bpEZvQ8WmWBnlQMH1KR4arLqCs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bpEZvQ8WmWBnlQMH1KR4arLqCs.jpg 1200w\"},\"\"),Dtzcqed8Z:\"Facebook\",height:\"100%\",id:\"sQAGfeIWL\",layoutId:\"sQAGfeIWL\",m9wCcVb0r:\"https://www.facebook.com/photo/?fbid=546284370851933&set=pcb.546284454185258&locale=zh_TW\",RNr3QCZKb:\"Oct 28 2022\",style:{width:\"100%\"},variant:\"N7xfB_Fyl\",width:\"100%\",yrkVuyznu:\"\u5716\u5F62\u548C\u8A9E\u97F3\u4E92\u52D5\u9AD4\u9A57\uFF1AVUI\u5BE6\u969B\u767C\u5C55\u6848\u4F8B\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"243px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-nj0cru-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"YZkemTC_d\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:1200,pixelWidth:1200,positionX:\"49.2%\",positionY:\"32.1%\",src:\"https://framerusercontent.com/images/uwINgMixwlfWq19Sj8O40Qb4.jpg\",srcSet:\"https://framerusercontent.com/images/uwINgMixwlfWq19Sj8O40Qb4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uwINgMixwlfWq19Sj8O40Qb4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uwINgMixwlfWq19Sj8O40Qb4.jpg 1200w\"},\"\"),Dtzcqed8Z:\"Facebook\",height:\"100%\",id:\"YZkemTC_d\",layoutId:\"YZkemTC_d\",m9wCcVb0r:\"https://www.facebook.com/photo/?fbid=450004520479919&set=pcb.450005770479794&locale=zh_TW\",RNr3QCZKb:\"Aug 30 2022\",style:{width:\"100%\"},variant:\"N7xfB_Fyl\",width:\"100%\",yrkVuyznu:\"\u5143\u5B87\u5B99Open\uFF01\u672A\u4F86\u767C\u5C55\u9808\u91CD\u8996\u7684\u98A8\u96AA\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hjip1\",\"data-framer-name\":\"IG\",id:elementId2,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q3vzix\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jzaeye\",\"data-styles-preset\":\"IJntazYMy\",style:{\"--framer-text-color\":\"var(--token-a4555b24-2757-458c-b376-f603af370a72, rgb(214, 60, 61))\"},children:\"Instagram\"})}),className:\"framer-99llep\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16dcw8k\",\"data-styles-preset\":\"W9hTb1ltt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"Pizza & Beer\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16dcw8k\",\"data-styles-preset\":\"W9hTb1ltt\",style:{\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"Pizza & Beer\"})}),className:\"framer-14q7dzg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pd3twy\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vkr43y\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g3_9MlLOG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:528,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1200+0+0+120+1404.8+0+162+0+0+0+0),pixelHeight:1056,pixelWidth:1952,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 976px) - 80px)`,src:\"https://framerusercontent.com/images/3ZZXFhp1oF30uAgjYFllDp0FmrA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/3ZZXFhp1oF30uAgjYFllDp0FmrA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3ZZXFhp1oF30uAgjYFllDp0FmrA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3ZZXFhp1oF30uAgjYFllDp0FmrA.jpg 1952w\"}},XFGPiuHF6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:528,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1e3+0+0+48+1178.8+0+134+0+0+0+0),pixelHeight:1056,pixelWidth:1952,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 976px) - 40px)`,src:\"https://framerusercontent.com/images/3ZZXFhp1oF30uAgjYFllDp0FmrA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/3ZZXFhp1oF30uAgjYFllDp0FmrA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3ZZXFhp1oF30uAgjYFllDp0FmrA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3ZZXFhp1oF30uAgjYFllDp0FmrA.jpg 1952w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:528,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1200+0+282+120+1404.8+0+162+0+0+0+0),pixelHeight:1056,pixelWidth:1952,sizes:\"976px\",src:\"https://framerusercontent.com/images/3ZZXFhp1oF30uAgjYFllDp0FmrA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/3ZZXFhp1oF30uAgjYFllDp0FmrA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3ZZXFhp1oF30uAgjYFllDp0FmrA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3ZZXFhp1oF30uAgjYFllDp0FmrA.jpg 1952w\"},className:\"framer-s9l74y\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pqovea\",\"data-styles-preset\":\"GvWRgZ0Tu\",style:{\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"\u4E0D\u77E5\u5982\u4F55\u5165\u624B\u8A2D\u8A08\u55CE\uFF1F\u60F3\u5B78\u7FD2UXUI\u8A2D\u8A08\u537B\u627E\u4E0D\u5230\u8CC7\u6E90\uFF1F\u672C\u5E73\u53F0\u7531\u904A\u77F3\u8A2D\u8A08\u7368\u7ACB\u5275\u5EFA\uFF0C\u5718\u968A\u7531\u904A\u77F3\u8A2D\u8A08\u7684\u8A2D\u8A08\u7BA1\u7406\u5C08\u5BB6\u3001\u8A2D\u8A08\u5E2B\u548C\u7814\u7A76\u54E1\uFF0C\u4EE5\u7C21\u55AE\u6613\u660E\u7684\u5716\u50CF\u53CA\u751F\u52D5\u6709\u8DA3\u7684\u63D2\u756B\uFF0C\u5E36\u9818\u60A8\u63A2\u7D22\u4F7F\u7528\u8005\u9AD4\u9A57\u8A2D\u8A08\u7684\u4E16\u754C\u3002\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-85r5um\",\"data-styles-preset\":\"wsE3xQif8\",style:{\"--framer-text-color\":\"var(--token-db48e37b-91a2-475b-bcc7-536521b8cb6a, rgb(154, 147, 147))\"},children:\"\u4E0D\u77E5\u5982\u4F55\u5165\u624B\u8A2D\u8A08\u55CE\uFF1F\u60F3\u5B78\u7FD2UXUI\u8A2D\u8A08\u537B\u627E\u4E0D\u5230\u8CC7\u6E90\uFF1F\u672C\u5E73\u53F0\u7531\u904A\u77F3\u8A2D\u8A08\u7368\u7ACB\u5275\u5EFA\uFF0C\u5718\u968A\u7531\u904A\u77F3\u8A2D\u8A08\u7684\u8A2D\u8A08\u7BA1\u7406\u5C08\u5BB6\u3001\u8A2D\u8A08\u5E2B\u548C\u7814\u7A76\u54E1\uFF0C\u4EE5\u7C21\u55AE\u6613\u660E\u7684\u5716\u50CF\u53CA\u751F\u52D5\u6709\u8DA3\u7684\u63D2\u756B\uFF0C\u5E36\u9818\u60A8\u63A2\u7D22\u4F7F\u7528\u8005\u9AD4\u9A57\u8A2D\u8A08\u7684\u4E16\u754C\u3002\"})}),className:\"framer-112c8qk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1413iv7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n1wq8r\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ggnosi\",\"data-styles-preset\":\"BauqVSrxb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"\u7CBE\u9078\u8CBC\u6587\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ggnosi\",\"data-styles-preset\":\"BauqVSrxb\",style:{\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"\u7CBE\u9078\u8CBC\u6587\"})}),className:\"framer-1fq50zg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g3_9MlLOG:{y:(componentViewport?.y||0)+160+1200+0+0+120+1404.8+0+162+0+818+0+0+7.4},XFGPiuHF6:{y:(componentViewport?.y||0)+160+1e3+0+0+48+1178.8+0+134+0+716+0+0+7.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+160+1200+0+282+120+1404.8+0+162+0+818+0+0+7.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-126ugi0-container\",nodeId:\"SjKhbCTyL\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Goto,{height:\"100%\",id:\"SjKhbCTyL\",kMnUIZFk5:\"1q8k5l6\",layoutId:\"SjKhbCTyL\",LywIqVVIA:\"Go to Instagram\",uraA2mSo7:\"https://www.instagram.com/uxi_bar_design/\",width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16tk30y-container hidden-hfa42k\",isModuleExternal:true,nodeId:\"zg1S7spQ_\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",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:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:20,height:\"100%\",id:\"zg1S7spQ_\",layoutId:\"zg1S7spQ_\",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:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"312px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rwnug5-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"WwGyXJ4vD\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:1080,pixelWidth:1080,positionX:\"49.8%\",positionY:\"19.6%\",src:\"https://framerusercontent.com/images/e8WbisudXFirMeRjBt9U7jq74Pw.jpg\",srcSet:\"https://framerusercontent.com/images/e8WbisudXFirMeRjBt9U7jq74Pw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/e8WbisudXFirMeRjBt9U7jq74Pw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/e8WbisudXFirMeRjBt9U7jq74Pw.jpg 1080w\"},\"\"),Dtzcqed8Z:\"Instagram\",height:\"100%\",id:\"WwGyXJ4vD\",layoutId:\"WwGyXJ4vD\",m9wCcVb0r:\"https://www.instagram.com/p/CqZ7TaVP4iz/?img_index=1\",RNr3QCZKb:\"Mar 30 2023\",style:{width:\"100%\"},variant:\"WyKr1Axvp\",width:\"100%\",yrkVuyznu:\"\u8207\u524D\u7AEF\u5DE5\u7A0B\u5E2B\u7684\u5929\u5802\u5354\u4F5C\u4E4B\u8DEF\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"312px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bkkjxk-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"bAejxrtoa\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:1080,pixelWidth:1080,positionX:\"50.3%\",positionY:\"14.8%\",src:\"https://framerusercontent.com/images/cXNbboQzrbIYSfsSWJsVrAM5tP0.jpg\",srcSet:\"https://framerusercontent.com/images/cXNbboQzrbIYSfsSWJsVrAM5tP0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cXNbboQzrbIYSfsSWJsVrAM5tP0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cXNbboQzrbIYSfsSWJsVrAM5tP0.jpg 1080w\"},\"\"),Dtzcqed8Z:\"Instagram\",height:\"100%\",id:\"bAejxrtoa\",layoutId:\"bAejxrtoa\",m9wCcVb0r:\"https://www.instagram.com/p/Ce3K_q6v0pW/?img_index=1\",RNr3QCZKb:\"Jun 16 2022\",style:{width:\"100%\"},variant:\"WyKr1Axvp\",width:\"100%\",yrkVuyznu:\"\u7528\u6236\u773C\u7403\u98C4\u53BB\u54EA\uFF1F #\u95DC\u65BC\u773C\u52D5\u5100\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"312px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ljpf82-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"F3RMLDUaA\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:1080,pixelWidth:1080,positionX:\"53.5%\",positionY:\"82.4%\",src:\"https://framerusercontent.com/images/v5rzZfEKYAcUqWQtkMAzfF4SdI.jpg\",srcSet:\"https://framerusercontent.com/images/v5rzZfEKYAcUqWQtkMAzfF4SdI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/v5rzZfEKYAcUqWQtkMAzfF4SdI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/v5rzZfEKYAcUqWQtkMAzfF4SdI.jpg 1080w\"},\"\"),Dtzcqed8Z:\"Instagram\",height:\"100%\",id:\"F3RMLDUaA\",layoutId:\"F3RMLDUaA\",m9wCcVb0r:\"https://www.instagram.com/p/CXSb_PYPKqI/?img_index=1\",RNr3QCZKb:\"Dec 10 2021\",style:{width:\"100%\"},variant:\"WyKr1Axvp\",width:\"100%\",yrkVuyznu:\"\u8A2D\u8A08\u601D\u8003\u5DE5\u4F5C\u574A #\u5982\u4F55\u8A2D\u8A08\u4E00\u5834\u5DE5\u4F5C\u574A\uFF1F\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-i23i1j-container hidden-127mrxj hidden-1vkoumt\",isModuleExternal:true,nodeId:\"rWSe3qRm0\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",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:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:20,height:\"100%\",id:\"rWSe3qRm0\",layoutId:\"rWSe3qRm0\",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:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"243px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-moco57-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"pkNMvNtj4\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:1080,pixelWidth:1080,positionX:\"49.8%\",positionY:\"19.6%\",src:\"https://framerusercontent.com/images/e8WbisudXFirMeRjBt9U7jq74Pw.jpg\",srcSet:\"https://framerusercontent.com/images/e8WbisudXFirMeRjBt9U7jq74Pw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/e8WbisudXFirMeRjBt9U7jq74Pw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/e8WbisudXFirMeRjBt9U7jq74Pw.jpg 1080w\"},\"\"),Dtzcqed8Z:\"Instagram\",height:\"100%\",id:\"pkNMvNtj4\",layoutId:\"pkNMvNtj4\",m9wCcVb0r:\"https://www.instagram.com/p/CqZ7TaVP4iz/?img_index=1\",RNr3QCZKb:\"Mar 30 2023\",style:{width:\"100%\"},variant:\"N7xfB_Fyl\",width:\"100%\",yrkVuyznu:\"\u8207\u524D\u7AEF\u5DE5\u7A0B\u5E2B\u7684\u5929\u5802\u5354\u4F5C\u4E4B\u8DEF\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"243px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x7teql-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"wz9kHYgKp\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:1080,pixelWidth:1080,positionX:\"50.3%\",positionY:\"14.8%\",src:\"https://framerusercontent.com/images/cXNbboQzrbIYSfsSWJsVrAM5tP0.jpg\",srcSet:\"https://framerusercontent.com/images/cXNbboQzrbIYSfsSWJsVrAM5tP0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cXNbboQzrbIYSfsSWJsVrAM5tP0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cXNbboQzrbIYSfsSWJsVrAM5tP0.jpg 1080w\"},\"\"),Dtzcqed8Z:\"Instagram\",height:\"100%\",id:\"wz9kHYgKp\",layoutId:\"wz9kHYgKp\",m9wCcVb0r:\"https://www.instagram.com/p/Ce3K_q6v0pW/?img_index=1\",RNr3QCZKb:\"Jun 16 2022\",style:{width:\"100%\"},variant:\"N7xfB_Fyl\",width:\"100%\",yrkVuyznu:\"\u7528\u6236\u773C\u7403\u98C4\u53BB\u54EA\uFF1F #\u95DC\u65BC\u773C\u52D5\u5100\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"243px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13isx1l-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"vRNI3GnpZ\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:1080,pixelWidth:1080,positionX:\"53.5%\",positionY:\"82.4%\",src:\"https://framerusercontent.com/images/v5rzZfEKYAcUqWQtkMAzfF4SdI.jpg\",srcSet:\"https://framerusercontent.com/images/v5rzZfEKYAcUqWQtkMAzfF4SdI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/v5rzZfEKYAcUqWQtkMAzfF4SdI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/v5rzZfEKYAcUqWQtkMAzfF4SdI.jpg 1080w\"},\"\"),Dtzcqed8Z:\"Instagram\",height:\"100%\",id:\"vRNI3GnpZ\",layoutId:\"vRNI3GnpZ\",m9wCcVb0r:\"https://www.instagram.com/p/CXSb_PYPKqI/?img_index=1\",RNr3QCZKb:\"Dec 10 2021\",style:{width:\"100%\"},variant:\"N7xfB_Fyl\",width:\"100%\",yrkVuyznu:\"\u8A2D\u8A08\u601D\u8003\u5DE5\u4F5C\u574A #\u5982\u4F55\u8A2D\u8A08\u4E00\u5834\u5DE5\u4F5C\u574A\uFF1F\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bxgk14\",\"data-framer-name\":\"Medium\",id:elementId3,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18tdbqh\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jzaeye\",\"data-styles-preset\":\"IJntazYMy\",style:{\"--framer-text-color\":\"var(--token-a4555b24-2757-458c-b376-f603af370a72, rgb(214, 60, 61))\"},children:\"Medium\"})}),className:\"framer-192d9b5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16dcw8k\",\"data-styles-preset\":\"W9hTb1ltt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"UXI Insight\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16dcw8k\",\"data-styles-preset\":\"W9hTb1ltt\",style:{\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"UXI Insight\"})}),className:\"framer-14wq2q3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e9ko6k\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hfzcat\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g3_9MlLOG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:528,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1200+0+0+120+2809.6+0+162+0+0+0+0),pixelHeight:1056,pixelWidth:1952,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 976px) - 80px)`,src:\"https://framerusercontent.com/images/VrrvJUCoFtRrVB5hB4Ype7UKOg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VrrvJUCoFtRrVB5hB4Ype7UKOg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VrrvJUCoFtRrVB5hB4Ype7UKOg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VrrvJUCoFtRrVB5hB4Ype7UKOg.jpg 1952w\"}},XFGPiuHF6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:528,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1e3+0+0+48+2357.6+0+134+0+0+0+0),pixelHeight:1056,pixelWidth:1952,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 976px) - 40px)`,src:\"https://framerusercontent.com/images/VrrvJUCoFtRrVB5hB4Ype7UKOg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VrrvJUCoFtRrVB5hB4Ype7UKOg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VrrvJUCoFtRrVB5hB4Ype7UKOg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VrrvJUCoFtRrVB5hB4Ype7UKOg.jpg 1952w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:528,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1200+0+282+120+2809.6+0+162+0+0+0+0),pixelHeight:1056,pixelWidth:1952,sizes:\"976px\",src:\"https://framerusercontent.com/images/VrrvJUCoFtRrVB5hB4Ype7UKOg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VrrvJUCoFtRrVB5hB4Ype7UKOg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VrrvJUCoFtRrVB5hB4Ype7UKOg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VrrvJUCoFtRrVB5hB4Ype7UKOg.jpg 1952w\"},className:\"framer-1tstrrw\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pqovea\",\"data-styles-preset\":\"GvWRgZ0Tu\",style:{\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"UXI Insight \u63D0\u4F9B\u517C\u5177\u6DF1\u5EA6\u53CA\u5EE3\u5EA6\u7684\u4F7F\u7528\u8005\u9AD4\u9A57\uFF08UX\uFF09\u6D1E\u5BDF\u548C\u77E5\u8B58\u5167\u5BB9\u3002\u900F\u904E\u5206\u4EAB\u5718\u968A\u5728 UX/UI \u5C08\u6848\u57F7\u884C\u4E0A\u7684\u7D93\u9A57\uFF0C\u4FC3\u4F7F\u4E0D\u540C\u60F3\u6CD5\u548C\u89C0\u9EDE\u7684\u78B0\u649E\uFF0C\u4EE5\u4FC3\u9032\u5F7C\u6B64\u7684\u5B78\u7FD2\u548C\u6210\u9577\uFF0C\u9032\u4E00\u6B65\u63A8\u52D5\u5C08\u6848\u7684\u5275\u65B0\u548C\u6539\u9032\u3002\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-85r5um\",\"data-styles-preset\":\"wsE3xQif8\",style:{\"--framer-text-color\":\"var(--token-db48e37b-91a2-475b-bcc7-536521b8cb6a, rgb(154, 147, 147))\"},children:\"UXI Insight \u63D0\u4F9B\u517C\u5177\u6DF1\u5EA6\u53CA\u5EE3\u5EA6\u7684\u4F7F\u7528\u8005\u9AD4\u9A57\uFF08UX\uFF09\u6D1E\u5BDF\u548C\u77E5\u8B58\u5167\u5BB9\u3002\u900F\u904E\u5206\u4EAB\u5718\u968A\u5728 UX/UI \u5C08\u6848\u57F7\u884C\u4E0A\u7684\u7D93\u9A57\uFF0C\u4FC3\u4F7F\u4E0D\u540C\u60F3\u6CD5\u548C\u89C0\u9EDE\u7684\u78B0\u649E\uFF0C\u4EE5\u4FC3\u9032\u5F7C\u6B64\u7684\u5B78\u7FD2\u548C\u6210\u9577\uFF0C\u9032\u4E00\u6B65\u63A8\u52D5\u5C08\u6848\u7684\u5275\u65B0\u548C\u6539\u9032\u3002\"})}),className:\"framer-1aq29ia\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1autq2m\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nbj96k\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ggnosi\",\"data-styles-preset\":\"BauqVSrxb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"\u7CBE\u9078\u6587\u7AE0\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ggnosi\",\"data-styles-preset\":\"BauqVSrxb\",style:{\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"\u7CBE\u9078\u6587\u7AE0\"})}),className:\"framer-skidj6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g3_9MlLOG:{y:(componentViewport?.y||0)+160+1200+0+0+120+2809.6+0+162+0+818+0+0+7.4},XFGPiuHF6:{y:(componentViewport?.y||0)+160+1e3+0+0+48+2357.6+0+134+0+716+0+0+7.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+160+1200+0+282+120+2809.6+0+162+0+818+0+0+7.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bm2xpi-container\",nodeId:\"ODhJGpC2w\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Goto,{height:\"100%\",id:\"ODhJGpC2w\",kMnUIZFk5:\"1q8k5l6\",layoutId:\"ODhJGpC2w\",LywIqVVIA:\"Go to Medium\",uraA2mSo7:\"https://medium.com/uxi-design\",width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-146e377-container hidden-hfa42k\",isModuleExternal:true,nodeId:\"dgYL0HnW6\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",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:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:20,height:\"100%\",id:\"dgYL0HnW6\",layoutId:\"dgYL0HnW6\",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:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"312px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17jobka-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"ugNazpWfj\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:1022,pixelWidth:1268,src:\"https://framerusercontent.com/images/anh8rjgcgMGOd31FdRQPicQkjY.jpg\",srcSet:\"https://framerusercontent.com/images/anh8rjgcgMGOd31FdRQPicQkjY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/anh8rjgcgMGOd31FdRQPicQkjY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/anh8rjgcgMGOd31FdRQPicQkjY.jpg 1268w\"},\"\"),Dtzcqed8Z:\"Medium\",height:\"100%\",id:\"ugNazpWfj\",layoutId:\"ugNazpWfj\",m9wCcVb0r:\"https://medium.com/uxi-design/%E5%8C%85%E5%AE%B9%E6%80%A7%E8%A8%AD%E8%A8%88%E5%B7%A5%E5%85%B7%E7%AE%B1-%E5%8A%A9%E4%BD%A0%E4%B8%80%E8%87%82%E4%B9%8B%E5%8A%9B-69075444ffaf\",RNr3QCZKb:\"Feb 21 2025\",style:{height:\"100%\",width:\"100%\"},variant:\"WyKr1Axvp\",width:\"100%\",yrkVuyznu:\"\u5305\u5BB9\u6027\u8A2D\u8A08\u5DE5\u5177\u7BB1\uFF1A\u52A9\u4F60\u4E00\u81C2\u4E4B\u529B\uFF01\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"312px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1th9u8e-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"dJKkVuQRJ\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:706,pixelWidth:1268,src:\"https://framerusercontent.com/images/W2Rps78UMexON5HKZ0Z35LjeYaw.webp\",srcSet:\"https://framerusercontent.com/images/W2Rps78UMexON5HKZ0Z35LjeYaw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/W2Rps78UMexON5HKZ0Z35LjeYaw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/W2Rps78UMexON5HKZ0Z35LjeYaw.webp 1268w\"},\"\"),Dtzcqed8Z:\"Medium\",height:\"100%\",id:\"dJKkVuQRJ\",layoutId:\"dJKkVuQRJ\",m9wCcVb0r:\"https://medium.com/uxi-design/%E9%9B%BB%E7%8E%A9%E9%81%8A%E6%88%B2%E7%84%A1%E9%9A%9C%E7%A4%99-%E8%BA%AB%E5%BF%83%E9%9A%9C%E7%A4%99%E7%8E%A9%E5%AE%B6%E5%A6%82%E4%BD%95%E4%B8%80%E8%B5%B7%E5%8A%A0%E5%85%A5%E9%81%8A%E6%88%B2%E4%B8%96%E7%95%8C-faba7e228c96\",RNr3QCZKb:\"Oct 28 2024\",style:{height:\"100%\",width:\"100%\"},variant:\"WyKr1Axvp\",width:\"100%\",yrkVuyznu:\"\u96FB\u73A9\u904A\u6232\u7121\u969C\u7919\uFF1A\u8EAB\u5FC3\u969C\u7919\u73A9\u5BB6\u5982\u4F55\u4E00\u8D77\u52A0\u5165\u904A\u6232\u4E16\u754C\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"312px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10l98gb-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"bW7eqZlog\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:741,pixelWidth:1400,src:\"https://framerusercontent.com/images/LnhSmxcoO6YF1VQ8XbOD5go7RY.webp\",srcSet:\"https://framerusercontent.com/images/LnhSmxcoO6YF1VQ8XbOD5go7RY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/LnhSmxcoO6YF1VQ8XbOD5go7RY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/LnhSmxcoO6YF1VQ8XbOD5go7RY.webp 1400w\"},\"\"),Dtzcqed8Z:\"Medium\",height:\"100%\",id:\"bW7eqZlog\",layoutId:\"bW7eqZlog\",m9wCcVb0r:\"https://medium.com/uxi-design/%E8%A8%AD%E8%A8%88%E7%84%A1%E9%9A%9C%E7%A4%99-%E7%82%BA%E9%8A%80%E9%AB%AE%E6%97%8F%E6%89%93%E9%80%A0%E5%8F%8B%E5%96%84%E7%9A%84%E6%95%B8%E4%BD%8D%E4%BB%8B%E9%9D%A2-99f1e6dd58e6\",RNr3QCZKb:\"Jul 12 2024\",style:{height:\"100%\",width:\"100%\"},variant:\"WyKr1Axvp\",width:\"100%\",yrkVuyznu:\"\u8A2D\u8A08\u7121\u969C\u7919\uFF1A\u70BA\u9280\u9AEE\u65CF\u6253\u9020\u53CB\u5584\u7684\u6578\u4F4D\u4ECB\u9762\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ywc0hu-container hidden-127mrxj hidden-1vkoumt\",isModuleExternal:true,nodeId:\"JONgA4546\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",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:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:20,height:\"100%\",id:\"JONgA4546\",layoutId:\"JONgA4546\",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:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"243px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18wt78w-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"BWZ_AMYKK\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:1022,pixelWidth:1268,src:\"https://framerusercontent.com/images/anh8rjgcgMGOd31FdRQPicQkjY.jpg\",srcSet:\"https://framerusercontent.com/images/anh8rjgcgMGOd31FdRQPicQkjY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/anh8rjgcgMGOd31FdRQPicQkjY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/anh8rjgcgMGOd31FdRQPicQkjY.jpg 1268w\"},\"\"),Dtzcqed8Z:\"Medium\",height:\"100%\",id:\"BWZ_AMYKK\",layoutId:\"BWZ_AMYKK\",m9wCcVb0r:\"https://medium.com/uxi-design/%E5%8C%85%E5%AE%B9%E6%80%A7%E8%A8%AD%E8%A8%88%E5%B7%A5%E5%85%B7%E7%AE%B1-%E5%8A%A9%E4%BD%A0%E4%B8%80%E8%87%82%E4%B9%8B%E5%8A%9B-69075444ffaf\",RNr3QCZKb:\"Feb 21 2025\",style:{width:\"100%\"},variant:\"N7xfB_Fyl\",width:\"100%\",yrkVuyznu:\"\u5305\u5BB9\u6027\u8A2D\u8A08\u5DE5\u5177\u7BB1\uFF1A\u52A9\u4F60\u4E00\u81C2\u4E4B\u529B\uFF01\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"243px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tovp9h-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"lbOvWZjso\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:706,pixelWidth:1268,src:\"https://framerusercontent.com/images/W2Rps78UMexON5HKZ0Z35LjeYaw.webp\",srcSet:\"https://framerusercontent.com/images/W2Rps78UMexON5HKZ0Z35LjeYaw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/W2Rps78UMexON5HKZ0Z35LjeYaw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/W2Rps78UMexON5HKZ0Z35LjeYaw.webp 1268w\"},\"\"),Dtzcqed8Z:\"Medium\",height:\"100%\",id:\"lbOvWZjso\",layoutId:\"lbOvWZjso\",m9wCcVb0r:\"https://medium.com/uxi-design/%E9%9B%BB%E7%8E%A9%E9%81%8A%E6%88%B2%E7%84%A1%E9%9A%9C%E7%A4%99-%E8%BA%AB%E5%BF%83%E9%9A%9C%E7%A4%99%E7%8E%A9%E5%AE%B6%E5%A6%82%E4%BD%95%E4%B8%80%E8%B5%B7%E5%8A%A0%E5%85%A5%E9%81%8A%E6%88%B2%E4%B8%96%E7%95%8C-faba7e228c96\",RNr3QCZKb:\"Oct 28 2024\",style:{width:\"100%\"},variant:\"N7xfB_Fyl\",width:\"100%\",yrkVuyznu:\"\u96FB\u73A9\u904A\u6232\u7121\u969C\u7919\uFF1A\u8EAB\u5FC3\u969C\u7919\u73A9\u5BB6\u5982\u4F55\u4E00\u8D77\u52A0\u5165\u904A\u6232\u4E16\u754C\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"243px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-15c32dw-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"eGfazxj44\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:741,pixelWidth:1400,src:\"https://framerusercontent.com/images/LnhSmxcoO6YF1VQ8XbOD5go7RY.webp\",srcSet:\"https://framerusercontent.com/images/LnhSmxcoO6YF1VQ8XbOD5go7RY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/LnhSmxcoO6YF1VQ8XbOD5go7RY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/LnhSmxcoO6YF1VQ8XbOD5go7RY.webp 1400w\"},\"\"),Dtzcqed8Z:\"Medium\",height:\"100%\",id:\"eGfazxj44\",layoutId:\"eGfazxj44\",m9wCcVb0r:\"https://medium.com/uxi-design/%E8%A8%AD%E8%A8%88%E7%84%A1%E9%9A%9C%E7%A4%99-%E7%82%BA%E9%8A%80%E9%AB%AE%E6%97%8F%E6%89%93%E9%80%A0%E5%8F%8B%E5%96%84%E7%9A%84%E6%95%B8%E4%BD%8D%E4%BB%8B%E9%9D%A2-99f1e6dd58e6\",RNr3QCZKb:\"Jul 12 2024\",style:{width:\"100%\"},variant:\"N7xfB_Fyl\",width:\"100%\",yrkVuyznu:\"\u8A2D\u8A08\u7121\u969C\u7919\uFF1A\u70BA\u9280\u9AEE\u65CF\u6253\u9020\u53CB\u5584\u7684\u6578\u4F4D\u4ECB\u9762\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fdlc89\",\"data-framer-name\":\"Podcast\",id:elementId4,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o0hmzo\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jzaeye\",\"data-styles-preset\":\"IJntazYMy\",style:{\"--framer-text-color\":\"var(--token-a4555b24-2757-458c-b376-f603af370a72, rgb(214, 60, 61))\"},children:\"Podcast\"})}),className:\"framer-tako1n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16dcw8k\",\"data-styles-preset\":\"W9hTb1ltt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"UXI Bar\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16dcw8k\",\"data-styles-preset\":\"W9hTb1ltt\",style:{\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"UXI Bar\"})}),className:\"framer-19c2khi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ezcym8\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14qn1nc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g3_9MlLOG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:528,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1200+0+0+120+4214.4+0+162+0+0+0+0),pixelHeight:1057,pixelWidth:1949,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 976px) - 80px)`,src:\"https://framerusercontent.com/images/oSGfiLOp4RG12zFFWg0JT8s3oM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oSGfiLOp4RG12zFFWg0JT8s3oM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oSGfiLOp4RG12zFFWg0JT8s3oM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oSGfiLOp4RG12zFFWg0JT8s3oM.jpg 1949w\"}},XFGPiuHF6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:528,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1e3+0+0+48+3536.4+0+134+0+0+0+0),pixelHeight:1057,pixelWidth:1949,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 976px) - 40px)`,src:\"https://framerusercontent.com/images/oSGfiLOp4RG12zFFWg0JT8s3oM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oSGfiLOp4RG12zFFWg0JT8s3oM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oSGfiLOp4RG12zFFWg0JT8s3oM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oSGfiLOp4RG12zFFWg0JT8s3oM.jpg 1949w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:528,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1200+0+282+120+4214.4+0+162+0+0+0+0),pixelHeight:1057,pixelWidth:1949,sizes:\"976px\",src:\"https://framerusercontent.com/images/oSGfiLOp4RG12zFFWg0JT8s3oM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oSGfiLOp4RG12zFFWg0JT8s3oM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oSGfiLOp4RG12zFFWg0JT8s3oM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oSGfiLOp4RG12zFFWg0JT8s3oM.jpg 1949w\"},className:\"framer-15pq659\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pqovea\",\"data-styles-preset\":\"GvWRgZ0Tu\",style:{\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"UXI BAR \u6BCF\u500B\u6708\u6703\u7AEF\u4E0A\u4E0D\u540C\u83DC\u8272\uFF0C\u4EE5\u570B\u5167\u5916\u6848\u4F8B\u3001\u9084\u6709\u904A\u77F3\u81EA\u8EAB\u7684\u5C08\u6848\u7D93\u6B77\uFF0C\u5E36\u60A8\u8F15\u9B06\u63A2\u7D22\u300C\u8A2D\u8A08\u7BA1\u7406\u300D\u3001\u300C\u8A2D\u8A08\u77E5\u8B58\u300D\u8207\u300C\u5275\u65B0\u9AD4\u9A57\u300D\u3002\u7BC0\u76EE\u5206\u70BA\u4E09\u500B\u55AE\u5143\uFF0C\u5206\u5225\u662F\u8A2D\u8A08\u4E4BWHY\u3001\u8A2D\u8A08\u70E4\u66F8\u83DC\u53CA\u4F86\u9EDETAPS\u3002\u7121\u8AD6\u60A8\u662F\u9818\u5C0E\u8005\u3001\u5275\u696D\u5BB6\u9084\u662F\u5C08\u696D\u7D93\u7406\u4EBA\u751A\u81F3\u662F\u8A2D\u8A08\u5F9E\u696D\u8005\uFF0C\u90FD\u53EF\u96A8\u6642\u96A8\u5730\u6536\u807D\u6700\u65B0\u7684\u7BC0\u76EE\uFF0C\u8B93\u6211\u5011\u4E00\u8D77\u8D70\u9032\u5275\u65B0\u7684\u65C5\u7A0B\uFF0C\u5171\u5275\u7121\u9650\u53EF\u80FD\uFF01\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-85r5um\",\"data-styles-preset\":\"wsE3xQif8\",style:{\"--framer-text-color\":\"var(--token-db48e37b-91a2-475b-bcc7-536521b8cb6a, rgb(154, 147, 147))\"},children:\"UXI BAR \u6BCF\u500B\u6708\u6703\u7AEF\u4E0A\u4E0D\u540C\u83DC\u8272\uFF0C\u4EE5\u570B\u5167\u5916\u6848\u4F8B\u3001\u9084\u6709\u904A\u77F3\u81EA\u8EAB\u7684\u5C08\u6848\u7D93\u6B77\uFF0C\u5E36\u60A8\u8F15\u9B06\u63A2\u7D22\u300C\u8A2D\u8A08\u7BA1\u7406\u300D\u3001\u300C\u8A2D\u8A08\u77E5\u8B58\u300D\u8207\u300C\u5275\u65B0\u9AD4\u9A57\u300D\u3002\u7BC0\u76EE\u5206\u70BA\u4E09\u500B\u55AE\u5143\uFF0C\u5206\u5225\u662F\u8A2D\u8A08\u4E4BWHY\u3001\u8A2D\u8A08\u70E4\u66F8\u83DC\u53CA\u4F86\u9EDETAPS\u3002\u7121\u8AD6\u60A8\u662F\u9818\u5C0E\u8005\u3001\u5275\u696D\u5BB6\u9084\u662F\u5C08\u696D\u7D93\u7406\u4EBA\u751A\u81F3\u662F\u8A2D\u8A08\u5F9E\u696D\u8005\uFF0C\u90FD\u53EF\u96A8\u6642\u96A8\u5730\u6536\u807D\u6700\u65B0\u7684\u7BC0\u76EE\uFF0C\u8B93\u6211\u5011\u4E00\u8D77\u8D70\u9032\u5275\u65B0\u7684\u65C5\u7A0B\uFF0C\u5171\u5275\u7121\u9650\u53EF\u80FD\uFF01\"})}),className:\"framer-1cl6i2v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gmyv57\",\"data-framer-name\":\"\u7BC0\u76EE\u55AE\u5143\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ggnosi\",\"data-styles-preset\":\"BauqVSrxb\",children:\"\u7BC0\u76EE\u55AE\u5143\"})}),className:\"framer-n9que8 hidden-1vkoumt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fdms1m\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m5nyuj\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g3_9MlLOG:{height:232,width:\"232px\",y:(componentViewport?.y||0)+160+1200+0+0+120+4214.4+0+162+0+818+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:\"248px\",y:(componentViewport?.y||0)+160+1200+0+282+120+4214.4+0+162+0+818+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mq3dg9-container hidden-hfa42k\",nodeId:\"waomQWWe1\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Podcast,{BGf2UMjsL:\"UXI BAR\",dUeKqLV3e:\"\u4E3B\u6253\u8A2D\u8A08\u5FC3\u6CD5\uFF0C\u4E86\u89E3UXI \u5982\u4F55\u63A8\u52D5\u5275\u65B0\u3001\u958B\u5275\u50F9\u503C\",height:\"100%\",id:\"waomQWWe1\",layoutId:\"waomQWWe1\",m1mRJeYh0:addImageAlt({pixelHeight:496,pixelWidth:496,src:\"https://framerusercontent.com/images/0tQ2saVvnG4n7V4RWm0ab8Svg8.jpg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:248,intrinsicWidth:248,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1e3+0+0+48+3536.4+0+134+0+716+0+64.8+0+0+33.2),pixelHeight:496,pixelWidth:496,src:\"https://framerusercontent.com/images/0tQ2saVvnG4n7V4RWm0ab8Svg8.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:248,intrinsicWidth:248,pixelHeight:496,pixelWidth:496,src:\"https://framerusercontent.com/images/0tQ2saVvnG4n7V4RWm0ab8Svg8.jpg\"},className:\"framer-xo6loh hidden-127mrxj hidden-1vkoumt\",\"data-framer-name\":\"Podcast1\"})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q8lid7 hidden-127mrxj hidden-1vkoumt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-85r5um\",\"data-styles-preset\":\"wsE3xQif8\",children:\"UXI BAR\"})}),className:\"framer-hkl6bt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pqovea\",\"data-styles-preset\":\"GvWRgZ0Tu\",children:\"\u4E3B\u6253\u8A2D\u8A08\u5FC3\u6CD5\uFF0C\u4E86\u89E3UXI \u5982\u4F55\u63A8\u52D5\u5275\u65B0\u3001\u958B\u5275\u50F9\u503C\"})}),className:\"framer-171g6j4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t72jkc\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g3_9MlLOG:{height:232,width:\"232px\",y:(componentViewport?.y||0)+160+1200+0+0+120+4214.4+0+162+0+818+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:\"248px\",y:(componentViewport?.y||0)+160+1200+0+282+120+4214.4+0+162+0+818+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19w68b3-container hidden-hfa42k\",nodeId:\"BZLYbWxC3\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Podcast,{BGf2UMjsL:\"\u8A2D\u8A08\u70E4\u66F8\u83DC\",dUeKqLV3e:\"\u5C0E\u8B80\u8A2D\u8A08\u7522\u696D\u7D93\u5178\u66F8\u7C4D\uFF0C\u4E00\u540C\u642D\u5EFA\u8A2D\u8A08\u77E5\u8B58\u5EAB\",height:\"100%\",id:\"BZLYbWxC3\",layoutId:\"BZLYbWxC3\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:248,intrinsicWidth:248,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1e3+0+0+48+3536.4+0+134+0+716+0+64.8+0+190.4+33.2),pixelHeight:496,pixelWidth:496,src:\"https://framerusercontent.com/images/CpKPwCEoz69jwAt25AayMazqS0.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:248,intrinsicWidth:248,pixelHeight:496,pixelWidth:496,src:\"https://framerusercontent.com/images/CpKPwCEoz69jwAt25AayMazqS0.jpg\"},className:\"framer-jhqy8u hidden-127mrxj hidden-1vkoumt\",\"data-framer-name\":\"Podcast2\"})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19w023v hidden-127mrxj hidden-1vkoumt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-85r5um\",\"data-styles-preset\":\"wsE3xQif8\",children:\"UXI BAR\"})}),className:\"framer-126bchd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pqovea\",\"data-styles-preset\":\"GvWRgZ0Tu\",children:\"\u4E3B\u6253\u8A2D\u8A08\u5FC3\u6CD5\uFF0C\u4E86\u89E3UXI \u5982\u4F55\u63A8\u52D5\u5275\u65B0\u3001\u958B\u5275\u50F9\u503C\"})}),className:\"framer-isii48\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yayju3\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g3_9MlLOG:{height:232,width:\"232px\",y:(componentViewport?.y||0)+160+1200+0+0+120+4214.4+0+162+0+818+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:\"248px\",y:(componentViewport?.y||0)+160+1200+0+282+120+4214.4+0+162+0+818+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nvuq67-container hidden-hfa42k\",nodeId:\"uFp9_ZVGS\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Podcast,{BGf2UMjsL:\"\u4F86\u9EDETAPAS\",dUeKqLV3e:\"\u85C9\u7531 UXI \u5BE6\u6230\u6848\u4F8B\uFF0C\u5E36\u60A8\u4E86\u89E3\u4E0D\u540C\u7522\u696D\u5982\u4F55\u5275\u9020\u9AD4\u9A57\",height:\"100%\",id:\"uFp9_ZVGS\",layoutId:\"uFp9_ZVGS\",m1mRJeYh0:addImageAlt({pixelHeight:496,pixelWidth:496,src:\"https://framerusercontent.com/images/u042ToWF9IEhwLbl9e250ixJ5E.jpg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:248,intrinsicWidth:248,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1e3+0+0+48+3536.4+0+134+0+716+0+64.8+0+380.8+33.2),pixelHeight:496,pixelWidth:496,src:\"https://framerusercontent.com/images/u042ToWF9IEhwLbl9e250ixJ5E.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:248,intrinsicWidth:248,pixelHeight:496,pixelWidth:496,src:\"https://framerusercontent.com/images/u042ToWF9IEhwLbl9e250ixJ5E.jpg\"},className:\"framer-a5c712 hidden-127mrxj hidden-1vkoumt\",\"data-framer-name\":\"Podcast3\"})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yoxi2i hidden-127mrxj hidden-1vkoumt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-85r5um\",\"data-styles-preset\":\"wsE3xQif8\",children:\"UXI BAR\"})}),className:\"framer-7xjd7p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pqovea\",\"data-styles-preset\":\"GvWRgZ0Tu\",children:\"\u4E3B\u6253\u8A2D\u8A08\u5FC3\u6CD5\uFF0C\u4E86\u89E3UXI \u5982\u4F55\u63A8\u52D5\u5275\u65B0\u3001\u958B\u5275\u50F9\u503C\"})}),className:\"framer-aec9gn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xzd07e\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jc29kv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ggnosi\",\"data-styles-preset\":\"BauqVSrxb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"\u7CBE\u9078\u55AE\u5143\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ggnosi\",\"data-styles-preset\":\"BauqVSrxb\",style:{\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"\u7CBE\u9078\u55AE\u5143\"})}),className:\"framer-1a1jb5x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zynjw4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g3_9MlLOG:{y:(componentViewport?.y||0)+160+1200+0+0+120+4214.4+0+162+0+1138+0+0+9.9+0},XFGPiuHF6:{y:(componentViewport?.y||0)+160+1e3+0+0+48+3536.4+0+134+0+1372+0+0+0+54.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+160+1200+0+282+120+4214.4+0+162+0+1154+0+0+9.9+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fnsa9c-container\",nodeId:\"wFKDDnTmX\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(PodcastLink,{height:\"100%\",id:\"wFKDDnTmX\",kNI66fNwD:\"1q8k5l6\",layoutId:\"wFKDDnTmX\",style:{height:\"100%\"},variant:\"dUt2FMBwr\",width:\"100%\",YHPtVv8nY:\"https://podcasts.apple.com/us/podcast/uxi-bar-%E8%A8%AD%E8%A8%88%E4%B9%8B%E5%A4%96/id1704959046\",ZEkzBnDnA:\"Apple Podcast\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g3_9MlLOG:{y:(componentViewport?.y||0)+160+1200+0+0+120+4214.4+0+162+0+1138+0+0+9.9+0},XFGPiuHF6:{y:(componentViewport?.y||0)+160+1e3+0+0+48+3536.4+0+134+0+1372+0+0+0+54.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+160+1200+0+282+120+4214.4+0+162+0+1154+0+0+9.9+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s96akj-container\",nodeId:\"TftMNdP7E\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{ZEkzBnDnA:\"Spotify\"}},children:/*#__PURE__*/_jsx(PodcastLink,{height:\"100%\",id:\"TftMNdP7E\",kNI66fNwD:\"1q8k5l6\",layoutId:\"TftMNdP7E\",style:{height:\"100%\"},variant:\"IoOGU7sI5\",width:\"100%\",YHPtVv8nY:\"https://open.spotify.com/show/5MJ1dvhDsnWSUCzVL1yrlI?si=a4fb4cd400e04e46\",ZEkzBnDnA:\"Spotify Podcast\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g3_9MlLOG:{y:(componentViewport?.y||0)+160+1200+0+0+120+4214.4+0+162+0+1138+0+0+9.9+0},XFGPiuHF6:{y:(componentViewport?.y||0)+160+1e3+0+0+48+3536.4+0+134+0+1372+0+0+0+54.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+160+1200+0+282+120+4214.4+0+162+0+1154+0+0+9.9+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ebwmar-container\",nodeId:\"ZSI1TnC0I\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(PodcastLink,{height:\"100%\",id:\"ZSI1TnC0I\",kNI66fNwD:\"1q8k5l6\",layoutId:\"ZSI1TnC0I\",style:{height:\"100%\"},variant:\"Kd2uDxJ4T\",width:\"100%\",YHPtVv8nY:\"https://music.youtube.com/podcast/9NBZyw01K00\",ZEkzBnDnA:\"Youtube Music\"})})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zewxvs-container hidden-hfa42k\",isModuleExternal:true,nodeId:\"fmGnqy9pV\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",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:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:20,height:\"100%\",id:\"fmGnqy9pV\",layoutId:\"fmGnqy9pV\",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:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"312px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4zflgy-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"bNvlJ3R30\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:600,pixelWidth:600,positionX:\"48.9%\",positionY:\"7.5%\",src:\"https://framerusercontent.com/images/AQCakdz6YEnuZ5SSG2gzEHKfSko.webp\",srcSet:\"https://framerusercontent.com/images/AQCakdz6YEnuZ5SSG2gzEHKfSko.webp?scale-down-to=512 512w,https://framerusercontent.com/images/AQCakdz6YEnuZ5SSG2gzEHKfSko.webp 600w\"},\"\"),Dtzcqed8Z:\"Podcast / UXI BAR\",height:\"100%\",id:\"bNvlJ3R30\",layoutId:\"bNvlJ3R30\",m9wCcVb0r:\"https://podcasts.apple.com/us/podcast/uxi-bar-%E7%82%BA%E4%BB%80%E9%BA%BC%E6%94%BF%E5%BA%9C%E5%96%AE%E4%BD%8D%E5%81%9A%E8%A8%AD%E8%A8%88%E5%89%8D-%E4%B8%80%E5%AE%9A%E8%A6%81%E5%81%9A%E4%BD%BF%E7%94%A8%E8%80%85%E7%A0%94%E7%A9%B6/id1704959046?i=1000655141706\",RNr3QCZKb:\"May 06 2023\",style:{width:\"100%\"},variant:\"WyKr1Axvp\",width:\"100%\",yrkVuyznu:\"\u70BA\u4EC0\u9EBC\u653F\u5E9C\u55AE\u4F4D\u505A\u8A2D\u8A08\u524D\uFF0C\u4E00\u5B9A\u8981\u505A\u4F7F\u7528\u8005\u7814\u7A76\uFF1F\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"312px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3q292n-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"mcHMtcLOl\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:600,pixelWidth:600,positionX:\"50.3%\",positionY:\"3.4%\",src:\"https://framerusercontent.com/images/bZojM8nPpLn75hfJkhdZCKdFOg.webp\",srcSet:\"https://framerusercontent.com/images/bZojM8nPpLn75hfJkhdZCKdFOg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/bZojM8nPpLn75hfJkhdZCKdFOg.webp 600w\"},\"\"),Dtzcqed8Z:\"Podcast / \u8A2D\u8A08\u70E4\u66F8\u83DC\",height:\"100%\",id:\"mcHMtcLOl\",layoutId:\"mcHMtcLOl\",m9wCcVb0r:\"https://podcasts.apple.com/us/podcast/%E7%83%A4%E6%9B%B8%E8%8F%9C-%E5%B0%8D%E7%A4%BE%E7%BE%A4%E5%AA%92%E9%AB%94%E4%B8%80%E5%86%8D%E4%B8%8A%E7%99%AE-%E8%AE%93%E4%BD%A0%E5%8F%88%E6%84%9B%E5%8F%88%E6%81%A8%E5%97%8E/id1704959046?i=1000666879489\",RNr3QCZKb:\"May 06 2023\",style:{width:\"100%\"},variant:\"WyKr1Axvp\",width:\"100%\",yrkVuyznu:\"\u5C0D\u793E\u7FA4\u5A92\u9AD4\u4E00\u518D\u4E0A\u766E\uFF0C\u8B93\u4F60\u53C8\u611B\u53C8\u6068\u55CE\uFF1F\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"312px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5xt7i6-container\",\"data-framer-cursor\":\"15u24x5\",inComponentSlot:true,nodeId:\"C8XfrvY1G\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:600,pixelWidth:600,positionX:\"50.7%\",positionY:\"5.7%\",src:\"https://framerusercontent.com/images/YEk96e86zQZ0PlwJgNbvNctsfpk.webp\",srcSet:\"https://framerusercontent.com/images/YEk96e86zQZ0PlwJgNbvNctsfpk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/YEk96e86zQZ0PlwJgNbvNctsfpk.webp 600w\"},\"\"),Dtzcqed8Z:\"Podcast / \u4F86\u9EDETAPAS\",height:\"100%\",id:\"C8XfrvY1G\",layoutId:\"C8XfrvY1G\",m9wCcVb0r:\"https://podcasts.apple.com/us/podcast/%E8%A8%AD%E8%A8%88tapas-%E5%8F%B0%E4%B8%AD%E7%A4%BE%E5%AE%85%E5%85%B1%E5%A5%BD-%E8%81%B2%E5%BC%B5%E5%B1%85%E4%BD%8F%E6%AD%A3%E7%BE%A9-%E4%B9%9F%E6%80%9D%E8%80%83%E5%B1%85%E4%BD%8F%E9%AB%94%E9%A9%97%E8%A8%AD%E8%A8%88/id1704959046?i=1000633423900\",RNr3QCZKb:\"Nov 02 2023\",style:{width:\"100%\"},variant:\"WyKr1Axvp\",width:\"100%\",yrkVuyznu:\"\u53F0\u4E2D\u793E\u5B85\u5171\u597D\uFF1A\u8072\u5F35\u5C45\u4F4F\u6B63\u7FA9\uFF0C\u4E5F\u601D\u8003\u5C45\u4F4F\u9AD4\u9A57\u8A2D\u8A08\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ehhqdo-container hidden-127mrxj hidden-1vkoumt\",isModuleExternal:true,nodeId:\"gJoICYmu_\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",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:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:20,height:\"100%\",id:\"gJoICYmu_\",layoutId:\"gJoICYmu_\",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:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"243px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6ptnws-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"oUVODV2Mq\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:600,pixelWidth:600,positionX:\"48.9%\",positionY:\"7.5%\",src:\"https://framerusercontent.com/images/AQCakdz6YEnuZ5SSG2gzEHKfSko.webp\",srcSet:\"https://framerusercontent.com/images/AQCakdz6YEnuZ5SSG2gzEHKfSko.webp?scale-down-to=512 512w,https://framerusercontent.com/images/AQCakdz6YEnuZ5SSG2gzEHKfSko.webp 600w\"},\"\"),Dtzcqed8Z:\"Podcast / UXI BAR\",height:\"100%\",id:\"oUVODV2Mq\",layoutId:\"oUVODV2Mq\",m9wCcVb0r:\"https://podcasts.apple.com/us/podcast/uxi-bar-%E7%82%BA%E4%BB%80%E9%BA%BC%E6%94%BF%E5%BA%9C%E5%96%AE%E4%BD%8D%E5%81%9A%E8%A8%AD%E8%A8%88%E5%89%8D-%E4%B8%80%E5%AE%9A%E8%A6%81%E5%81%9A%E4%BD%BF%E7%94%A8%E8%80%85%E7%A0%94%E7%A9%B6/id1704959046?i=1000655141706\",RNr3QCZKb:\"May 06 2023\",style:{width:\"100%\"},variant:\"N7xfB_Fyl\",width:\"100%\",yrkVuyznu:\"\u70BA\u4EC0\u9EBC\u653F\u5E9C\u55AE\u4F4D\u505A\u8A2D\u8A08\u524D\uFF0C\u4E00\u5B9A\u8981\u505A\u4F7F\u7528\u8005\u7814\u7A76\uFF1F\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"243px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jvp8jq-container\",\"data-framer-cursor\":\"o5eg9y\",inComponentSlot:true,nodeId:\"FWmhJY3ZB\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:600,pixelWidth:600,positionX:\"50.3%\",positionY:\"3.4%\",src:\"https://framerusercontent.com/images/bZojM8nPpLn75hfJkhdZCKdFOg.webp\",srcSet:\"https://framerusercontent.com/images/bZojM8nPpLn75hfJkhdZCKdFOg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/bZojM8nPpLn75hfJkhdZCKdFOg.webp 600w\"},\"\"),Dtzcqed8Z:\"Podcast / \u8A2D\u8A08\u70E4\u66F8\u83DC\",height:\"100%\",id:\"FWmhJY3ZB\",layoutId:\"FWmhJY3ZB\",m9wCcVb0r:\"https://podcasts.apple.com/us/podcast/%E7%83%A4%E6%9B%B8%E8%8F%9C-%E5%B0%8D%E7%A4%BE%E7%BE%A4%E5%AA%92%E9%AB%94%E4%B8%80%E5%86%8D%E4%B8%8A%E7%99%AE-%E8%AE%93%E4%BD%A0%E5%8F%88%E6%84%9B%E5%8F%88%E6%81%A8%E5%97%8E/id1704959046?i=1000666879489\",RNr3QCZKb:\"May 06 2023\",style:{width:\"100%\"},variant:\"N7xfB_Fyl\",width:\"100%\",yrkVuyznu:\"\u5C0D\u793E\u7FA4\u5A92\u9AD4\u4E00\u518D\u4E0A\u766E\uFF0C\u8B93\u4F60\u53C8\u611B\u53C8\u6068\u55CE\uFF1F\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"243px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pe6c5-container\",\"data-framer-cursor\":\"15u24x5\",inComponentSlot:true,nodeId:\"iXbJDAHLJ\",rendersWithMotion:true,scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(UserComponent,{cUSNTvHSs:addImageAlt({pixelHeight:600,pixelWidth:600,positionX:\"50.7%\",positionY:\"5.7%\",src:\"https://framerusercontent.com/images/YEk96e86zQZ0PlwJgNbvNctsfpk.webp\",srcSet:\"https://framerusercontent.com/images/YEk96e86zQZ0PlwJgNbvNctsfpk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/YEk96e86zQZ0PlwJgNbvNctsfpk.webp 600w\"},\"\"),Dtzcqed8Z:\"Podcast / \u4F86\u9EDETAPAS\",height:\"100%\",id:\"iXbJDAHLJ\",layoutId:\"iXbJDAHLJ\",m9wCcVb0r:\"https://podcasts.apple.com/us/podcast/%E8%A8%AD%E8%A8%88tapas-%E5%8F%B0%E4%B8%AD%E7%A4%BE%E5%AE%85%E5%85%B1%E5%A5%BD-%E8%81%B2%E5%BC%B5%E5%B1%85%E4%BD%8F%E6%AD%A3%E7%BE%A9-%E4%B9%9F%E6%80%9D%E8%80%83%E5%B1%85%E4%BD%8F%E9%AB%94%E9%A9%97%E8%A8%AD%E8%A8%88/id1704959046?i=1000633423900\",RNr3QCZKb:\"Nov 02 2023\",style:{width:\"100%\"},variant:\"N7xfB_Fyl\",width:\"100%\",yrkVuyznu:\"\u53F0\u4E2D\u793E\u5B85\u5171\u597D\uFF1A\u8072\u5F35\u5C45\u4F4F\u6B63\u7FA9\uFF0C\u4E5F\u601D\u8003\u5C45\u4F4F\u9AD4\u9A57\u8A2D\u8A08\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ulmndb\",\"data-framer-name\":\"Accessibility\",id:elementId5,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wmvx3o\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jzaeye\",\"data-styles-preset\":\"IJntazYMy\",style:{\"--framer-text-color\":\"var(--token-a4555b24-2757-458c-b376-f603af370a72, rgb(214, 60, 61))\"},children:\"UXI AaaS  \"})}),className:\"framer-1bc28es\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16dcw8k\",\"data-styles-preset\":\"W9hTb1ltt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"UXI \u7121\u969C\u7919\u63A8\u5EE3\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16dcw8k\",\"data-styles-preset\":\"W9hTb1ltt\",style:{\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"UXI \u7121\u969C\u7919\u63A8\u5EE3\"})}),className:\"framer-1wzm86o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10x74ub\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e0cgdn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g3_9MlLOG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:528,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1200+0+0+120+5939.2+0+162+0+0+0+0),pixelHeight:1500,pixelWidth:2e3,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 976px) - 80px)`,src:\"https://framerusercontent.com/images/kmu2yXHcaNJlCF8vQjKzWhWZkw.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kmu2yXHcaNJlCF8vQjKzWhWZkw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/kmu2yXHcaNJlCF8vQjKzWhWZkw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/kmu2yXHcaNJlCF8vQjKzWhWZkw.webp 2000w\"}},XFGPiuHF6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:528,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1e3+0+0+48+5406.2+0+134+0+0+0+0),pixelHeight:1500,pixelWidth:2e3,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 976px) - 40px)`,src:\"https://framerusercontent.com/images/kmu2yXHcaNJlCF8vQjKzWhWZkw.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kmu2yXHcaNJlCF8vQjKzWhWZkw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/kmu2yXHcaNJlCF8vQjKzWhWZkw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/kmu2yXHcaNJlCF8vQjKzWhWZkw.webp 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:528,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+160+1200+0+282+120+5955.2+0+162+0+0+0+0),pixelHeight:1500,pixelWidth:2e3,sizes:\"976px\",src:\"https://framerusercontent.com/images/kmu2yXHcaNJlCF8vQjKzWhWZkw.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kmu2yXHcaNJlCF8vQjKzWhWZkw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/kmu2yXHcaNJlCF8vQjKzWhWZkw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/kmu2yXHcaNJlCF8vQjKzWhWZkw.webp 2000w\"},className:\"framer-1gzuqry\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aa4y6p\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XFGPiuHF6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pqovea\",\"data-styles-preset\":\"GvWRgZ0Tu\",style:{\"--framer-text-color\":\"var(--token-097bfe01-2161-4fba-bc31-ceee194b3d8f, rgb(66, 58, 58))\"},children:\"AaaS \u5C08\u6CE8\u65BC\u7121\u969C\u7919\u8A2D\u8A08\uFF0C\u81F4\u529B\u65BC\u63D0\u4F9B\u5168\u9762\u7684\u6578\u4F4D\u7121\u969C\u7919\u8207\u5305\u5BB9\u6027\u7684\u89E3\u6C7A\u65B9\u6848\u3002\u4F01\u696D\u548C\u7D44\u7E54\u9700\u8981\u8A55\u4F30\u3001\u8A2D\u8A08\u4E26\u512A\u5316\u5176\u7522\u54C1\u548C\u670D\u52D9\uFF0C\u4EE5\u78BA\u4FDD\u5B83\u5011\u5C0D\u6240\u6709\u4F7F\u7528\u8005\uFF0C\u5305\u62EC\u6709\u7279\u6B8A\u9700\u6C42\u8005\uFF0C\u90FD\u80FD\u53CB\u5584\u548C\u53EF\u53CA( accessible )\u3002\u6578\u4F4D\u5316\u5305\u5BB9\u6027\u8207\u7121\u969C\u7919\u7684\u8A55\u4F30\u3001\u57F9\u529B\u3001\u8A2D\u8A08\u6539\u9032\u548C\u6301\u7E8C\u652F\u6301\uFF0C\u4E5F\u662F\u4FC3\u9032\u5305\u5BB9\u3001\u5E73\u7B49\u3001\u666E\u60E0\u3001\u63D0\u5347\u4F7F\u7528\u8005\u9AD4\u9A57\u548C\u54C1\u724C\u8A8D\u540C\u7684\u91CD\u8981\u8DEF\u5F91\u7BC0\u9EDE\u3002\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-85r5um\",\"data-styles-preset\":\"wsE3xQif8\",style:{\"--framer-text-color\":\"var(--token-db48e37b-91a2-475b-bcc7-536521b8cb6a, rgb(154, 147, 147))\"},children:\"AaaS \u5C08\u6CE8\u65BC\u7121\u969C\u7919\u8A2D\u8A08\uFF0C\u81F4\u529B\u65BC\u63D0\u4F9B\u5168\u9762\u7684\u6578\u4F4D\u7121\u969C\u7919\u8207\u5305\u5BB9\u6027\u7684\u89E3\u6C7A\u65B9\u6848\u3002\u4F01\u696D\u548C\u7D44\u7E54\u9700\u8981\u8A55\u4F30\u3001\u8A2D\u8A08\u4E26\u512A\u5316\u5176\u7522\u54C1\u548C\u670D\u52D9\uFF0C\u4EE5\u78BA\u4FDD\u5B83\u5011\u5C0D\u6240\u6709\u4F7F\u7528\u8005\uFF0C\u5305\u62EC\u6709\u7279\u6B8A\u9700\u6C42\u8005\uFF0C\u90FD\u80FD\u53CB\u5584\u548C\u53EF\u53CA( accessible )\u3002\u6578\u4F4D\u5316\u5305\u5BB9\u6027\u8207\u7121\u969C\u7919\u7684\u8A55\u4F30\u3001\u57F9\u529B\u3001\u8A2D\u8A08\u6539\u9032\u548C\u6301\u7E8C\u652F\u6301\uFF0C\u4E5F\u662F\u4FC3\u9032\u5305\u5BB9\u3001\u5E73\u7B49\u3001\u666E\u60E0\u3001\u63D0\u5347\u4F7F\u7528\u8005\u9AD4\u9A57\u548C\u54C1\u724C\u8A8D\u540C\u7684\u91CD\u8981\u8DEF\u5F91\u7BC0\u9EDE\u3002\"})}),className:\"framer-157kjn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g3_9MlLOG:{y:(componentViewport?.y||0)+160+1200+0+0+120+5939.2+0+162+0+0+0+770},XFGPiuHF6:{y:(componentViewport?.y||0)+160+1e3+0+0+48+5406.2+0+134+0+0+0+696}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+160+1200+0+282+120+5955.2+0+162+0+0+0+770,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1seplez-container\",nodeId:\"PrEP0zNo5\",scopeId:\"PiR1tzIEP\",children:/*#__PURE__*/_jsx(Goto,{height:\"100%\",id:\"PrEP0zNo5\",kMnUIZFk5:\"1q8k5l6\",layoutId:\"PrEP0zNo5\",LywIqVVIA:\"Go to UXI AaaS  \",uraA2mSo7:\"https://www.juchaun.org/\",width:\"100%\"})})})})]})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dgs2k\",\"data-framer-name\":\"Footer trigger\",id:elementId6,ref:dynamicRef(elementId6)})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-99lYk.framer-1o4u1sh, .framer-99lYk .framer-1o4u1sh { display: block; }\",\".framer-99lYk.framer-127mrxj { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 160px 20px 160px 20px; position: relative; width: 1280px; }\",\".framer-99lYk .framer-krtmb6-container, .framer-99lYk .framer-n3q9ay-container, .framer-99lYk .framer-126ugi0-container, .framer-99lYk .framer-1bm2xpi-container, .framer-99lYk .framer-1seplez-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-99lYk .framer-1uzbd5d-container { flex: none; height: 680px; position: relative; width: 100%; }\",\".framer-99lYk .framer-1ogww2q { background-color: #ffffff; flex: none; height: 270px; left: 0px; opacity: 0; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 100px; z-index: 0; }\",\".framer-99lYk .framer-14if8mf { align-content: center; align-items: center; background-color: var(--token-92a3cc20-e2d9-4770-b040-af66bc85c53b, #f4f4f4); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-99lYk .framer-1v37v7c { align-content: center; align-items: center; background-color: var(--token-212d6191-0858-416f-8b44-11051d903972, #1a1313); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-99lYk .framer-36zw9w { align-content: flex-start; align-items: flex-start; background-color: var(--token-212d6191-0858-416f-8b44-11051d903972, #1a1313); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1176px; overflow: hidden; padding: 0px 0px 140px 0px; position: relative; width: 100%; }\",\".framer-99lYk .framer-horzjh-container, .framer-99lYk .framer-ng28no-container, .framer-99lYk .framer-19vd70e-container, .framer-99lYk .framer-k0xf9l-container, .framer-99lYk .framer-6ihy75-container { flex: none; height: 132px; position: relative; width: auto; }\",\".framer-99lYk .framer-5dfic6 { align-content: center; align-items: center; background-color: var(--token-92a3cc20-e2d9-4770-b040-af66bc85c53b, #f4f4f4); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: center; max-width: 976px; overflow: hidden; padding: 120px 0px 320px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-99lYk .framer-1qkm4vv, .framer-99lYk .framer-hjip1, .framer-99lYk .framer-1bxgk14, .framer-99lYk .framer-fdlc89, .framer-99lYk .framer-1ulmndb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 30px; width: 100%; }\",\".framer-99lYk .framer-1qdu60l, .framer-99lYk .framer-1q3vzix, .framer-99lYk .framer-18tdbqh, .framer-99lYk .framer-o0hmzo, .framer-99lYk .framer-wmvx3o { 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: 976px; }\",\".framer-99lYk .framer-19i0w0o, .framer-99lYk .framer-of32yn, .framer-99lYk .framer-1hgrqva, .framer-99lYk .framer-99llep, .framer-99lYk .framer-14q7dzg, .framer-99lYk .framer-1fq50zg, .framer-99lYk .framer-192d9b5, .framer-99lYk .framer-14wq2q3, .framer-99lYk .framer-skidj6, .framer-99lYk .framer-tako1n, .framer-99lYk .framer-19c2khi, .framer-99lYk .framer-n9que8, .framer-99lYk .framer-hkl6bt, .framer-99lYk .framer-126bchd, .framer-99lYk .framer-7xjd7p, .framer-99lYk .framer-1a1jb5x, .framer-99lYk .framer-1bc28es, .framer-99lYk .framer-1wzm86o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-99lYk .framer-5dvhnl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 976px; }\",\".framer-99lYk .framer-11j0u5f, .framer-99lYk .framer-1vkr43y, .framer-99lYk .framer-1hfzcat, .framer-99lYk .framer-14qn1nc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-99lYk .framer-6dqqe9, .framer-99lYk .framer-s9l74y, .framer-99lYk .framer-1tstrrw, .framer-99lYk .framer-15pq659, .framer-99lYk .framer-1gzuqry { aspect-ratio: 1.8484848484848484 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 528px); overflow: visible; position: relative; width: 100%; }\",\".framer-99lYk .framer-i866aa, .framer-99lYk .framer-112c8qk, .framer-99lYk .framer-1aq29ia, .framer-99lYk .framer-1cl6i2v, .framer-99lYk .framer-157kjn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-99lYk .framer-18xozuk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-99lYk .framer-wjkaj9, .framer-99lYk .framer-n1wq8r, .framer-99lYk .framer-1nbj96k, .framer-99lYk .framer-jc29kv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-99lYk .framer-1rkos2o-container, .framer-99lYk .framer-16tk30y-container, .framer-99lYk .framer-146e377-container, .framer-99lYk .framer-zewxvs-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-99lYk .framer-3staqb-container, .framer-99lYk .framer-11moveg-container, .framer-99lYk .framer-pwinnq-container, .framer-99lYk .framer-rwnug5-container, .framer-99lYk .framer-bkkjxk-container, .framer-99lYk .framer-ljpf82-container, .framer-99lYk .framer-4zflgy-container, .framer-99lYk .framer-3q292n-container, .framer-99lYk .framer-5xt7i6-container { height: auto; position: relative; width: 312px; }\",\".framer-99lYk .framer-169yjgh-container, .framer-99lYk .framer-i23i1j-container, .framer-99lYk .framer-ywc0hu-container, .framer-99lYk .framer-ehhqdo-container { flex: none; height: auto; position: relative; width: 350px; }\",\".framer-99lYk .framer-1kbytwb-container, .framer-99lYk .framer-1gaz80i-container, .framer-99lYk .framer-nj0cru-container, .framer-99lYk .framer-moco57-container, .framer-99lYk .framer-1x7teql-container, .framer-99lYk .framer-13isx1l-container, .framer-99lYk .framer-18wt78w-container, .framer-99lYk .framer-tovp9h-container, .framer-99lYk .framer-15c32dw-container, .framer-99lYk .framer-6ptnws-container, .framer-99lYk .framer-1jvp8jq-container, .framer-99lYk .framer-1pe6c5-container { height: auto; position: relative; width: 243px; }\",\".framer-99lYk .framer-pd3twy, .framer-99lYk .framer-e9ko6k, .framer-99lYk .framer-1ezcym8, .framer-99lYk .framer-10x74ub { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 976px; }\",\".framer-99lYk .framer-1413iv7, .framer-99lYk .framer-1autq2m, .framer-99lYk .framer-xzd07e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-99lYk .framer-17jobka-container, .framer-99lYk .framer-1th9u8e-container, .framer-99lYk .framer-10l98gb-container { height: 388px; position: relative; width: 312px; }\",\".framer-99lYk .framer-1gmyv57 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-99lYk .framer-fdms1m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-99lYk .framer-1m5nyuj, .framer-99lYk .framer-t72jkc, .framer-99lYk .framer-1yayju3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 248px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 248px; }\",\".framer-99lYk .framer-1mq3dg9-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 248px); position: relative; width: 248px; }\",\".framer-99lYk .framer-xo6loh, .framer-99lYk .framer-jhqy8u, .framer-99lYk .framer-a5c712 { aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 104px); overflow: visible; position: relative; width: 104px; }\",\".framer-99lYk .framer-1q8lid7, .framer-99lYk .framer-19w023v, .framer-99lYk .framer-1yoxi2i { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-99lYk .framer-171g6j4, .framer-99lYk .framer-isii48, .framer-99lYk .framer-aec9gn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-99lYk .framer-19w68b3-container, .framer-99lYk .framer-nvuq67-container { flex: none; height: 248px; position: relative; width: 248px; }\",\".framer-99lYk .framer-zynjw4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 25px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-99lYk .framer-1fnsa9c-container, .framer-99lYk .framer-1s96akj-container, .framer-99lYk .framer-1ebwmar-container { flex: none; height: 25px; position: relative; width: auto; }\",\".framer-99lYk .framer-e0cgdn { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-99lYk .framer-1aa4y6p { 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-99lYk .framer-dgs2k { background-color: #ffffff; bottom: 0px; flex: none; height: 800px; left: 0px; opacity: 0; overflow: hidden; position: absolute; right: 0px; z-index: 0; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 810px) and (max-width: 1279px) { .framer-99lYk.framer-127mrxj { width: 810px; } .framer-99lYk .framer-5dfic6 { padding: 120px 40px 320px 40px; } .framer-99lYk .framer-1qdu60l, .framer-99lYk .framer-5dvhnl, .framer-99lYk .framer-1q3vzix, .framer-99lYk .framer-pd3twy, .framer-99lYk .framer-18tdbqh, .framer-99lYk .framer-e9ko6k, .framer-99lYk .framer-o0hmzo, .framer-99lYk .framer-1ezcym8, .framer-99lYk .framer-wmvx3o, .framer-99lYk .framer-10x74ub { width: 100%; } .framer-99lYk .framer-6dqqe9, .framer-99lYk .framer-s9l74y, .framer-99lYk .framer-1tstrrw, .framer-99lYk .framer-15pq659 { height: var(--framer-aspect-ratio-supported, 395px); } .framer-99lYk .framer-fdms1m { flex: 1 0 0px; width: 1px; } .framer-99lYk .framer-1m5nyuj, .framer-99lYk .framer-t72jkc, .framer-99lYk .framer-1yayju3 { flex: 1 0 0px; height: 232px; width: 1px; } .framer-99lYk .framer-1mq3dg9-container { height: 100%; width: var(--framer-aspect-ratio-supported, 232px); } .framer-99lYk .framer-19w68b3-container, .framer-99lYk .framer-nvuq67-container { aspect-ratio: 1 / 1; height: 100%; width: var(--framer-aspect-ratio-supported, 232px); } .framer-99lYk .framer-1gzuqry { height: var(--framer-aspect-ratio-supported, 394px); }}\",\"@media (max-width: 809px) { .framer-99lYk.framer-127mrxj { width: 390px; } .framer-99lYk .framer-1uzbd5d-container { height: 480px; } .framer-99lYk .framer-5dfic6 { gap: 64px; padding: 48px 20px 120px 20px; } .framer-99lYk .framer-1qkm4vv, .framer-99lYk .framer-hjip1, .framer-99lYk .framer-1bxgk14, .framer-99lYk .framer-fdlc89, .framer-99lYk .framer-1ulmndb { gap: 40px; } .framer-99lYk .framer-1qdu60l, .framer-99lYk .framer-1q3vzix, .framer-99lYk .framer-18tdbqh, .framer-99lYk .framer-o0hmzo, .framer-99lYk .framer-wmvx3o { align-content: center; align-items: center; gap: 4px; padding: 0px 20px 0px 20px; width: 100%; } .framer-99lYk .framer-of32yn, .framer-99lYk .framer-14q7dzg, .framer-99lYk .framer-14wq2q3, .framer-99lYk .framer-19c2khi, .framer-99lYk .framer-1wzm86o { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-99lYk .framer-5dvhnl, .framer-99lYk .framer-pd3twy, .framer-99lYk .framer-e9ko6k, .framer-99lYk .framer-1ezcym8 { gap: 40px; width: 100%; } .framer-99lYk .framer-11j0u5f, .framer-99lYk .framer-1vkr43y, .framer-99lYk .framer-1hfzcat, .framer-99lYk .framer-14qn1nc, .framer-99lYk .framer-e0cgdn { gap: 20px; } .framer-99lYk .framer-6dqqe9, .framer-99lYk .framer-s9l74y { height: var(--framer-aspect-ratio-supported, 189px); } .framer-99lYk .framer-i866aa, .framer-99lYk .framer-112c8qk, .framer-99lYk .framer-1aq29ia, .framer-99lYk .framer-1cl6i2v, .framer-99lYk .framer-10x74ub, .framer-99lYk .framer-157kjn { width: 100%; } .framer-99lYk .framer-1hgrqva, .framer-99lYk .framer-1fq50zg, .framer-99lYk .framer-skidj6 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-99lYk .framer-n1wq8r { gap: 0px; justify-content: flex-start; } .framer-99lYk .framer-1tstrrw, .framer-99lYk .framer-15pq659, .framer-99lYk .framer-1gzuqry { height: var(--framer-aspect-ratio-supported, 190px); } .framer-99lYk .framer-1gmyv57 { flex-direction: column; gap: 20px; justify-content: flex-start; } .framer-99lYk .framer-fdms1m { flex-direction: column; gap: 20px; width: 100%; } .framer-99lYk .framer-1m5nyuj, .framer-99lYk .framer-t72jkc, .framer-99lYk .framer-1yayju3 { height: min-content; width: 100%; } .framer-99lYk .framer-jc29kv { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 10px; justify-content: flex-start; } .framer-99lYk .framer-zynjw4 { justify-content: flex-start; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9534\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"g3_9MlLOG\":{\"layout\":[\"fixed\",\"auto\"]},\"XFGPiuHF6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"p9X_IN6Em\":{\"pattern\":\":p9X_IN6Em\",\"name\":\"header-change\"},\"E8PQLnLHQ\":{\"pattern\":\":E8PQLnLHQ\",\"name\":\"facebook\"},\"XIlYheJhC\":{\"pattern\":\":XIlYheJhC\",\"name\":\"instagram\"},\"hOcfdU50D\":{\"pattern\":\":hOcfdU50D\",\"name\":\"medium\"},\"IsbjYec1T\":{\"pattern\":\":IsbjYec1T\",\"name\":\"podcast\"},\"PjFUFn7Mg\":{\"pattern\":\":PjFUFn7Mg\",\"name\":\"aaas\"},\"SlpJRXWIb\":{\"pattern\":\":SlpJRXWIb\",\"name\":\"footer-trigger\"}}\n * @framerResponsiveScreen\n */const FramerPiR1tzIEP=withCSS(Component,css,\"framer-99lYk\");export default FramerPiR1tzIEP;FramerPiR1tzIEP.displayName=\"Blog\";FramerPiR1tzIEP.defaultProps={height:9534,width:1280};addFonts(FramerPiR1tzIEP,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SmoothScrollFonts,...BannerFonts,...PagelinkFonts,...GotoFonts,...UserComponentFonts,...CarouselFonts,...PodcastFonts,...PodcastLinkFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPiR1tzIEP\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"9534\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerScrollSections\":\"{\\\"p9X_IN6Em\\\":{\\\"pattern\\\":\\\":p9X_IN6Em\\\",\\\"name\\\":\\\"header-change\\\"},\\\"E8PQLnLHQ\\\":{\\\"pattern\\\":\\\":E8PQLnLHQ\\\",\\\"name\\\":\\\"facebook\\\"},\\\"XIlYheJhC\\\":{\\\"pattern\\\":\\\":XIlYheJhC\\\",\\\"name\\\":\\\"instagram\\\"},\\\"hOcfdU50D\\\":{\\\"pattern\\\":\\\":hOcfdU50D\\\",\\\"name\\\":\\\"medium\\\"},\\\"IsbjYec1T\\\":{\\\"pattern\\\":\\\":IsbjYec1T\\\",\\\"name\\\":\\\"podcast\\\"},\\\"PjFUFn7Mg\\\":{\\\"pattern\\\":\\\":PjFUFn7Mg\\\",\\\"name\\\":\\\"aaas\\\"},\\\"SlpJRXWIb\\\":{\\\"pattern\\\":\\\":SlpJRXWIb\\\",\\\"name\\\":\\\"footer-trigger\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g3_9MlLOG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XFGPiuHF6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "e", "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", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "adjustment", "totalLen", "gotoDelta", "delta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "Z", "u", "motion", "child", "index", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "animation", "transition2", "animation1", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "getProps", "content", "height", "id", "img", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "m1mRJeYh0", "BGf2UMjsL", "dUeKqLV3e", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerbSOpcg5Dq", "withCSS", "bSOpcg5Dq_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "cursor", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "LywIqVVIA", "uraA2mSo7", "kMnUIZFk5", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText", "SVG", "css", "FramerLnwQhDgZG", "withCSS", "LnwQhDgZG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title1", "title2", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "RJA7nYOtI", "JyNP940AI", "jIq3hTmtQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText", "SVG", "css", "FramerSUWk7RIu1", "withCSS", "SUWk7RIu1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "toResponsiveImage", "value", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "content", "date", "height", "id", "image", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "cUSNTvHSs", "Dtzcqed8Z", "yrkVuyznu", "RNr3QCZKb", "m9wCcVb0r", "nI3MvQm6A", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerwKYvRQWsv", "withCSS", "wKYvRQWsv_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cursor", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ZEkzBnDnA", "YHPtVv8nY", "kNI66fNwD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "Link", "u", "SVG", "RichText", "css", "FramerXpk5JWtMZ", "withCSS", "Xpk5JWtMZ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SmoothScrollFonts", "getFonts", "SmoothScroll_Prod_default", "BannerFonts", "gsLliwU61_default", "PagelinkFonts", "SUWk7RIu1_default", "ImageWithFX", "withFX", "Image2", "GotoFonts", "LnwQhDgZG_default", "UserComponentFonts", "wKYvRQWsv_default", "CarouselFonts", "Carousel", "ContainerWithFX", "Container", "MotionDivWithFX", "motion", "PodcastFonts", "bSOpcg5Dq_default", "PodcastLinkFonts", "Xpk5JWtMZ_default", "CursorFonts", "eCAycC3GU_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "animation", "transition1", "animation1", "animation2", "animation3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition2", "cursor", "cursor1", "cursor2", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "dynamicRef", "useSiteRefs", "isDisplayed", "router", "useRouter", "elementId1", "ref1", "isDisplayed1", "isDisplayed2", "elementId2", "ref2", "elementId3", "ref3", "elementId4", "ref4", "isDisplayed3", "elementId5", "ref5", "elementId6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "RichText", "x", "getLoadingLazyAtYPosition", "css", "FramerPiR1tzIEP", "withCSS", "PiR1tzIEP_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
