{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/FnDsOvFGVRKaickhxoWU/2clgtw7NJ5CrBO6vdwtq/YoutubeData4.js", "ssg:https://framerusercontent.com/modules/u1rY4HDQXt2dcUby9e6b/eT6tlMkPFf5K5TXNAQ5F/bsTrAfYMt.js", "ssg:https://framerusercontent.com/modules/H19xpOFET2SjfUryyVl6/2mm3wl0eUEDQgVjL07bJ/YoutubeData6.js", "ssg:https://framerusercontent.com/modules/td5Jgz2NaoovwdCXgb6i/B9GJOaDZawOo2slT6Tdh/dwUNCe3GI.js", "ssg:https://framerusercontent.com/modules/SvGZGPBgTHF4tMRDL2g2/RaFLus3jsPSVoUYPhZ8S/YoutubeData2.js", "ssg:https://framerusercontent.com/modules/4tPOtg1stuB9Pg5TzyDu/ViGwDOQvXTcmw4RhnQxJ/hms2gTB10.js", "ssg:https://framerusercontent.com/modules/tcXHfFlqzIx8HAxJaCR3/Fkb1qbqyAeuoHiQ3pp1O/lcIRM4XWN.js", "ssg:https://framerusercontent.com/modules/zcaZgypsWHnBpwWeGEV9/K0YIt5AzySjItNxzJKhT/lLGWQjSkK.js", "ssg:https://framerusercontent.com/modules/A4CtvTT0WLEI1eozftkd/Hrf209oHkvsZkOGWJmnB/YoutubeData.js", "ssg:https://framerusercontent.com/modules/xfej2rI5UWUzdxsLqqHJ/6Zw4id0yy3fAEk5kedMp/oVRb7Bf52.js", "ssg:https://framerusercontent.com/modules/LH7YK2GecMMGQCum0M22/s8acP9Au0FJXl3w8eKR2/YoutubeData3.js", "ssg:https://framerusercontent.com/modules/vjxajP2ARF1qb6PZkJNg/229ZkGenAdeJGaDCiM7G/xnjV3dv8M.js", "ssg:https://framerusercontent.com/modules/wcIQjfIPU2pGed5UraIj/ZD1bKruZUnIhlzwolZuk/YoutubeData5.js", "ssg:https://framerusercontent.com/modules/2GPHjYfgDYAfoG2bFMSI/IgnGdxSEkXIv7uec4p0G/y8otGGrlq.js", "ssg:https://framerusercontent.com/modules/iqaI3CJbVL94QreVeX1A/adteHrihfWzgdtmWrHKt/bHTcuHzge.js", "ssg:https://framerusercontent.com/modules/59qDSLXwv7oQQ66CfoGZ/Ytxj5Iy3X5BGT616k67K/hArDDRNVm.js", "ssg:https://framerusercontent.com/modules/9oImGXibIZcdidofbA17/VMDvBh4r6kxwc7Nag9FD/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){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 infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";const API_KEY=\"AIzaSyB_TdIqjz0lWgcLphFu3JtpPRnrRJ5jxuc\";const CHANNEL_ID=\"UCx_2Vso6Qz76n-w5KV8DZcA\";const UPLOADS_PLAYLIST_ID=`UU${CHANNEL_ID.slice(2)}`;const SHORTS_PLAYLIST_ID=`UUSH${CHANNEL_ID.slice(2)}`;const API_URL_UPLOADS=`https://www.googleapis.com/youtube/v3/playlistItems?key=${API_KEY}&playlistId=${UPLOADS_PLAYLIST_ID}&part=snippet,contentDetails&maxResults=50`;const API_URL_SHORTS=`https://www.googleapis.com/youtube/v3/playlistItems?key=${API_KEY}&playlistId=${SHORTS_PLAYLIST_ID}&part=snippet,contentDetails&maxResults=50`;const MAX_AGE=24*60*60*1e3// 24 hours\n;// Variable to specify which video to pull data from\nconst VIDEO_INDEX=3// Change this to 1, 2, etc. to get the second, third, etc. long-form video\n;async function fetchVideoData(videoIndex){let nextPageToken=\"\";let uploadsData={items:[]};let shortsData={items:[]};let isFetching=true;let pagesFetched=0;while(isFetching){try{const[uploadsResponse,shortsResponse]=await Promise.all([fetch(`${API_URL_UPLOADS}&pageToken=${nextPageToken}`),fetch(API_URL_SHORTS)]);const[uploadsPageData,shortsDataPage]=await Promise.all([uploadsResponse.json(),shortsResponse.json()]);uploadsData.items.push(...uploadsPageData.items);nextPageToken=uploadsPageData.nextPageToken;shortsData=shortsDataPage;pagesFetched++;isFetching=nextPageToken&&uploadsData.items.length<videoIndex+1&&pagesFetched<10// Fetch until we have enough videos or reach page limit\n;}catch(error){console.error(\"Error fetching video:\",error);return null;}}const shortsVideoIds=new Set(shortsData.items.map(item=>item.contentDetails.videoId));const longFormVideos=uploadsData.items.filter(item=>!shortsVideoIds.has(item.contentDetails.videoId));return longFormVideos.length>videoIndex?longFormVideos[videoIndex]:null;}function cleanTitle(title){title=title.replace(/\\s\\|\\sEp\\s\\d{4}$/,\"\");return title.length>50?title.substring(0,47)+\"...\":title;}function storeDataInLocalStorage(key,data){localStorage.setItem(key,JSON.stringify({timestamp:Date.now(),data}));}function getDataFromLocalStorage(key,maxAge){const storedData=localStorage.getItem(key);if(!storedData)return null;const{timestamp,data}=JSON.parse(storedData);return Date.now()-timestamp<maxAge?data:null;}function useYouTubeData(key,fetchData,cleanData){const[data,setData]=useState(\"Loading...\");useEffect(()=>{async function fetchDataAndCache(){const cacheKey=`${key}_${VIDEO_INDEX}`;const cachedData=getDataFromLocalStorage(cacheKey,MAX_AGE);if(cachedData){setData(cachedData);return;}const video=await fetchData(VIDEO_INDEX);if(video){const cleanedData=cleanData(video);setData(cleanedData);storeDataInLocalStorage(cacheKey,cleanedData);}else{setData(\"No long-form videos found\");}}fetchDataAndCache();},[key]);return data;}export function useYouTubeVideoTitle(){return useYouTubeData(\"youtubeVideoTitle\",fetchVideoData,video=>cleanTitle(video.snippet.title));}export function useYouTubeVideoDescription(){return useYouTubeData(\"youtubeVideoDescription\",fetchVideoData,video=>{let description=video.snippet.description;return description.length>190?description.substring(0,190)+\"...\":description;});}export function useYouTubeVideoLink(){return useYouTubeData(\"youtubeVideoLink\",fetchVideoData,video=>`https://www.youtube.com/watch?v=${video.contentDetails.videoId}`);}export function useYouTubeVideoThumbnail(){return useYouTubeData(\"youtubeVideoThumbnail\",fetchVideoData,video=>video.snippet.thumbnails.high.url);}export function YouTubeTitleOverride(){const title=useYouTubeVideoTitle();return{text:title};}export function YouTubeDescriptionOverride(){const description=useYouTubeVideoDescription();return{text:description};}export function YouTubeLinkOverride(props){const link=useYouTubeVideoLink();const{onClick}=props;return{onClick:()=>{if(link)window.open(link,\"_blank\");if(onClick)onClick();}};}export function YouTubeThumbnailOverride(props){const thumbnail=useYouTubeVideoThumbnail();const imageRef=useRef();useEffect(()=>{if(imageRef.current&&thumbnail)imageRef.current.src=thumbnail;},[thumbnail]);return{ref:imageRef};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withYouTubeTitleOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeTitleOverride(props)});};}withYouTubeTitleOverride.displayName=\"YouTubeTitleOverride\";export function withYouTubeDescriptionOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeDescriptionOverride(props)});};}withYouTubeDescriptionOverride.displayName=\"YouTubeDescriptionOverride\";export function withYouTubeLinkOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeLinkOverride(props)});};}withYouTubeLinkOverride.displayName=\"YouTubeLinkOverride\";export function withYouTubeThumbnailOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeThumbnailOverride(props)});};}withYouTubeThumbnailOverride.displayName=\"YouTubeThumbnailOverride\";\nexport const __FramerMetadata__ = {\"exports\":{\"withYouTubeThumbnailOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeThumbnailOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoThumbnail\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeLinkOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeLinkOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeDescriptionOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeDescriptionOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoDescription\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoLink\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeDescriptionOverride\":{\"type\":\"override\",\"name\":\"YouTubeDescriptionOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeThumbnailOverride\":{\"type\":\"override\",\"name\":\"YouTubeThumbnailOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoTitle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeLinkOverride\":{\"type\":\"override\",\"name\":\"YouTubeLinkOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeTitleOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeTitleOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeTitleOverride\":{\"type\":\"override\",\"name\":\"YouTubeTitleOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YoutubeData4.map", "// Generated by Framer (1d71865)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withYouTubeDescriptionOverride,withYouTubeLinkOverride,withYouTubeTitleOverride}from\"https://framerusercontent.com/modules/FnDsOvFGVRKaickhxoWU/2clgtw7NJ5CrBO6vdwtq/YoutubeData4.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/2pdGeB4xDJhwqWVrDzlV/eQkSBuzHXCSG2Y0Mc64s/GygTAX8TE.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qvZtbGsEKPBlQHMrftya/BQpIkdb2pxDYx6KVbLPL/Syt1ipHc1.js\";const RichTextWithYouTubeTitleOverride=withYouTubeTitleOverride(RichText);const RichTextWithYouTubeDescriptionOverride=withYouTubeDescriptionOverride(RichText);const MotionDivWithYouTubeLinkOverride=withYouTubeLinkOverride(motion.div);const enabledGestures={EaTzzYbv8:{hover:true}};const cycleOrder=[\"EaTzzYbv8\"];const serializationHash=\"framer-lfGq9\";const variantClassNames={EaTzzYbv8:\"framer-v-1byfc94\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.44,0,.22,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,title,width,...props})=>{var _ref;return{...props,vcOpbE5yz:(_ref=title!==null&&title!==void 0?title:props.vcOpbE5yz)!==null&&_ref!==void 0?_ref:\"Resource title goes here\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vcOpbE5yz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EaTzzYbv8\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",pixelHeight:1074,pixelWidth:1030,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/Bk7471wzDfAMgESqqxh2GAxNx4.jpeg\",srcSet:\"https://framerusercontent.com/images/Bk7471wzDfAMgESqqxh2GAxNx4.jpeg?scale-down-to=1024 982w,https://framerusercontent.com/images/Bk7471wzDfAMgESqqxh2GAxNx4.jpeg 1030w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1byfc94\",className,classNames),\"data-framer-name\":\"Title Only\",layoutDependency:layoutDependency,layoutId:\"EaTzzYbv8\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({\"EaTzzYbv8-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(MotionDivWithYouTubeLinkOverride,{className:\"framer-1i6enc5\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"GZOV5BhdG\",children:[/*#__PURE__*/_jsx(RichTextWithYouTubeTitleOverride,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-14pobu5\",\"data-styles-preset\":\"Syt1ipHc1\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233)))\"},children:\"Resource title goes here\"})}),className:\"framer-605h1k\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lM4_v81bb\",style:{\"--extracted-a0htzi\":\"var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vcOpbE5yz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithYouTubeDescriptionOverride,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233)))\"},children:\"Resource description goes here\"})}),className:\"framer-mz62wp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Qs6yWaPA7\",style:{\"--extracted-r6o4lv\":\"var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},transformTemplate:transformTemplate1,variants:{\"EaTzzYbv8-hover\":{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"EaTzzYbv8-hover\":{transformTemplate:undefined}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18uo24d\",\"data-framer-name\":\"overlay\",layoutDependency:layoutDependency,layoutId:\"t71w6IUU3\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{\"EaTzzYbv8-hover\":{background:\"linear-gradient(180deg, rgba(107, 120, 102, 0.5) 0%, rgba(108, 121, 103, 0.8) 100%)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lfGq9.framer-1b1wuhh, .framer-lfGq9 .framer-1b1wuhh { display: block; }\",\".framer-lfGq9.framer-1byfc94 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 320px; justify-content: flex-end; overflow: hidden; padding: 20px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lfGq9 .framer-1i6enc5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-lfGq9 .framer-605h1k { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lfGq9 .framer-mz62wp { bottom: -120px; flex: none; height: auto; left: 50%; position: absolute; white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-lfGq9 .framer-18uo24d { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lfGq9.framer-1byfc94, .framer-lfGq9 .framer-1i6enc5 { gap: 0px; } .framer-lfGq9.framer-1byfc94 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-lfGq9.framer-1byfc94 > :first-child, .framer-lfGq9 .framer-1i6enc5 > :first-child { margin-top: 0px; } .framer-lfGq9.framer-1byfc94 > :last-child, .framer-lfGq9 .framer-1i6enc5 > :last-child { margin-bottom: 0px; } .framer-lfGq9 .framer-1i6enc5 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-lfGq9.framer-v-1byfc94.hover .framer-mz62wp { bottom: unset; left: unset; position: relative; }\",\".framer-lfGq9.framer-v-1byfc94.hover .framer-18uo24d { will-change: var(--framer-will-change-override, transform); }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 320\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"rQunPNUwD\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"vcOpbE5yz\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbsTrAfYMt=withCSS(Component,css,\"framer-lfGq9\");export default FramerbsTrAfYMt;FramerbsTrAfYMt.displayName=\"Latest resource card 4\";FramerbsTrAfYMt.defaultProps={height:320,width:320};addPropertyControls(FramerbsTrAfYMt,{vcOpbE5yz:{defaultValue:\"Resource title goes here\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerbsTrAfYMt,[{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\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbsTrAfYMt\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"320\",\"framerVariables\":\"{\\\"vcOpbE5yz\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"320\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rQunPNUwD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bsTrAfYMt.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";const API_KEY=\"AIzaSyB_TdIqjz0lWgcLphFu3JtpPRnrRJ5jxuc\";const CHANNEL_ID=\"UCx_2Vso6Qz76n-w5KV8DZcA\";const UPLOADS_PLAYLIST_ID=`UU${CHANNEL_ID.slice(2)}`;const SHORTS_PLAYLIST_ID=`UUSH${CHANNEL_ID.slice(2)}`;const API_URL_UPLOADS=`https://www.googleapis.com/youtube/v3/playlistItems?key=${API_KEY}&playlistId=${UPLOADS_PLAYLIST_ID}&part=snippet,contentDetails&maxResults=50`;const API_URL_SHORTS=`https://www.googleapis.com/youtube/v3/playlistItems?key=${API_KEY}&playlistId=${SHORTS_PLAYLIST_ID}&part=snippet,contentDetails&maxResults=50`;const MAX_AGE=24*60*60*1e3// 24 hours\n;// Variable to specify which video to pull data from\nconst VIDEO_INDEX=5// Change this to 1, 2, etc. to get the second, third, etc. long-form video\n;async function fetchVideoData(videoIndex){let nextPageToken=\"\";let uploadsData={items:[]};let shortsData={items:[]};let isFetching=true;let pagesFetched=0;while(isFetching){try{const[uploadsResponse,shortsResponse]=await Promise.all([fetch(`${API_URL_UPLOADS}&pageToken=${nextPageToken}`),fetch(API_URL_SHORTS)]);const[uploadsPageData,shortsDataPage]=await Promise.all([uploadsResponse.json(),shortsResponse.json()]);uploadsData.items.push(...uploadsPageData.items);nextPageToken=uploadsPageData.nextPageToken;shortsData=shortsDataPage;pagesFetched++;isFetching=nextPageToken&&uploadsData.items.length<videoIndex+1&&pagesFetched<10// Fetch until we have enough videos or reach page limit\n;}catch(error){console.error(\"Error fetching video:\",error);return null;}}const shortsVideoIds=new Set(shortsData.items.map(item=>item.contentDetails.videoId));const longFormVideos=uploadsData.items.filter(item=>!shortsVideoIds.has(item.contentDetails.videoId));return longFormVideos.length>videoIndex?longFormVideos[videoIndex]:null;}function cleanTitle(title){title=title.replace(/\\s\\|\\sEp\\s\\d{4}$/,\"\");return title.length>50?title.substring(0,47)+\"...\":title;}function storeDataInLocalStorage(key,data){localStorage.setItem(key,JSON.stringify({timestamp:Date.now(),data}));}function getDataFromLocalStorage(key,maxAge){const storedData=localStorage.getItem(key);if(!storedData)return null;const{timestamp,data}=JSON.parse(storedData);return Date.now()-timestamp<maxAge?data:null;}function useYouTubeData(key,fetchData,cleanData){const[data,setData]=useState(\"Loading...\");useEffect(()=>{async function fetchDataAndCache(){const cacheKey=`${key}_${VIDEO_INDEX}`;const cachedData=getDataFromLocalStorage(cacheKey,MAX_AGE);if(cachedData){setData(cachedData);return;}const video=await fetchData(VIDEO_INDEX);if(video){const cleanedData=cleanData(video);setData(cleanedData);storeDataInLocalStorage(cacheKey,cleanedData);}else{setData(\"No long-form videos found\");}}fetchDataAndCache();},[key]);return data;}export function useYouTubeVideoTitle(){return useYouTubeData(\"youtubeVideoTitle\",fetchVideoData,video=>cleanTitle(video.snippet.title));}export function useYouTubeVideoDescription(){return useYouTubeData(\"youtubeVideoDescription\",fetchVideoData,video=>{let description=video.snippet.description;return description.length>190?description.substring(0,190)+\"...\":description;});}export function useYouTubeVideoLink(){return useYouTubeData(\"youtubeVideoLink\",fetchVideoData,video=>`https://www.youtube.com/watch?v=${video.contentDetails.videoId}`);}export function useYouTubeVideoThumbnail(){return useYouTubeData(\"youtubeVideoThumbnail\",fetchVideoData,video=>video.snippet.thumbnails.high.url);}export function YouTubeTitleOverride(){const title=useYouTubeVideoTitle();return{text:title};}export function YouTubeDescriptionOverride(){const description=useYouTubeVideoDescription();return{text:description};}export function YouTubeLinkOverride(props){const link=useYouTubeVideoLink();const{onClick}=props;return{onClick:()=>{if(link)window.open(link,\"_blank\");if(onClick)onClick();}};}export function YouTubeThumbnailOverride(props){const thumbnail=useYouTubeVideoThumbnail();const imageRef=useRef();useEffect(()=>{if(imageRef.current&&thumbnail)imageRef.current.src=thumbnail;},[thumbnail]);return{ref:imageRef};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withYouTubeTitleOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeTitleOverride(props)});};}withYouTubeTitleOverride.displayName=\"YouTubeTitleOverride\";export function withYouTubeDescriptionOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeDescriptionOverride(props)});};}withYouTubeDescriptionOverride.displayName=\"YouTubeDescriptionOverride\";export function withYouTubeLinkOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeLinkOverride(props)});};}withYouTubeLinkOverride.displayName=\"YouTubeLinkOverride\";export function withYouTubeThumbnailOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeThumbnailOverride(props)});};}withYouTubeThumbnailOverride.displayName=\"YouTubeThumbnailOverride\";\nexport const __FramerMetadata__ = {\"exports\":{\"YouTubeDescriptionOverride\":{\"type\":\"override\",\"name\":\"YouTubeDescriptionOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeThumbnailOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeThumbnailOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoDescription\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoLink\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeLinkOverride\":{\"type\":\"override\",\"name\":\"YouTubeLinkOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeDescriptionOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeDescriptionOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeTitleOverride\":{\"type\":\"override\",\"name\":\"YouTubeTitleOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeThumbnailOverride\":{\"type\":\"override\",\"name\":\"YouTubeThumbnailOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoThumbnail\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoTitle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeTitleOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeTitleOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeLinkOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeLinkOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YoutubeData6.map", "// Generated by Framer (1d71865)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withYouTubeDescriptionOverride,withYouTubeLinkOverride,withYouTubeTitleOverride}from\"https://framerusercontent.com/modules/H19xpOFET2SjfUryyVl6/2mm3wl0eUEDQgVjL07bJ/YoutubeData6.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/2pdGeB4xDJhwqWVrDzlV/eQkSBuzHXCSG2Y0Mc64s/GygTAX8TE.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qvZtbGsEKPBlQHMrftya/BQpIkdb2pxDYx6KVbLPL/Syt1ipHc1.js\";const RichTextWithYouTubeTitleOverride=withYouTubeTitleOverride(RichText);const RichTextWithYouTubeDescriptionOverride=withYouTubeDescriptionOverride(RichText);const MotionDivWithYouTubeLinkOverride=withYouTubeLinkOverride(motion.div);const enabledGestures={R3WH_y1XH:{hover:true}};const cycleOrder=[\"R3WH_y1XH\"];const serializationHash=\"framer-VdWbF\";const variantClassNames={R3WH_y1XH:\"framer-v-1er5xzt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.44,0,.22,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,title,width,...props})=>{var _ref;return{...props,vcOpbE5yz:(_ref=title!==null&&title!==void 0?title:props.vcOpbE5yz)!==null&&_ref!==void 0?_ref:\"Resource title goes here\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vcOpbE5yz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"R3WH_y1XH\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",pixelHeight:1664,pixelWidth:2100,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/AI0FhzyF0Qv69rXvnbT08IRAs.jpeg\",srcSet:\"https://framerusercontent.com/images/AI0FhzyF0Qv69rXvnbT08IRAs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/AI0FhzyF0Qv69rXvnbT08IRAs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AI0FhzyF0Qv69rXvnbT08IRAs.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/AI0FhzyF0Qv69rXvnbT08IRAs.jpeg 2100w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1er5xzt\",className,classNames),\"data-framer-name\":\"Title Only\",layoutDependency:layoutDependency,layoutId:\"R3WH_y1XH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({\"R3WH_y1XH-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(MotionDivWithYouTubeLinkOverride,{className:\"framer-h2ibf7\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"dhsla3jjk\",children:[/*#__PURE__*/_jsx(RichTextWithYouTubeTitleOverride,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-14pobu5\",\"data-styles-preset\":\"Syt1ipHc1\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233)))\"},children:\"Resource title goes here\"})}),className:\"framer-1qr0uac\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LR3w3Xqvp\",style:{\"--extracted-a0htzi\":\"var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vcOpbE5yz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithYouTubeDescriptionOverride,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233)))\"},children:\"Resource description goes here\"})}),className:\"framer-1ei47u1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MAdlc5N3_\",style:{\"--extracted-r6o4lv\":\"var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},transformTemplate:transformTemplate1,variants:{\"R3WH_y1XH-hover\":{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"R3WH_y1XH-hover\":{transformTemplate:undefined}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xjnn7e\",\"data-framer-name\":\"overlay\",layoutDependency:layoutDependency,layoutId:\"uDhRu8Qzk\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{\"R3WH_y1XH-hover\":{background:\"linear-gradient(180deg, rgba(107, 120, 102, 0.5) 0%, rgba(108, 121, 103, 0.8) 100%)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VdWbF.framer-63dbfp, .framer-VdWbF .framer-63dbfp { display: block; }\",\".framer-VdWbF.framer-1er5xzt { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 320px; justify-content: flex-end; overflow: hidden; padding: 20px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VdWbF .framer-h2ibf7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-VdWbF .framer-1qr0uac { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-VdWbF .framer-1ei47u1 { bottom: -120px; flex: none; height: auto; left: 50%; position: absolute; white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-VdWbF .framer-xjnn7e { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VdWbF.framer-1er5xzt, .framer-VdWbF .framer-h2ibf7 { gap: 0px; } .framer-VdWbF.framer-1er5xzt > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VdWbF.framer-1er5xzt > :first-child, .framer-VdWbF .framer-h2ibf7 > :first-child { margin-top: 0px; } .framer-VdWbF.framer-1er5xzt > :last-child, .framer-VdWbF .framer-h2ibf7 > :last-child { margin-bottom: 0px; } .framer-VdWbF .framer-h2ibf7 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-VdWbF.framer-v-1er5xzt.hover .framer-1ei47u1 { bottom: unset; left: unset; position: relative; }\",\".framer-VdWbF.framer-v-1er5xzt.hover .framer-xjnn7e { will-change: var(--framer-will-change-override, transform); }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 320\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Q1GNWFpPW\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"vcOpbE5yz\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdwUNCe3GI=withCSS(Component,css,\"framer-VdWbF\");export default FramerdwUNCe3GI;FramerdwUNCe3GI.displayName=\"Latest resource card 6\";FramerdwUNCe3GI.defaultProps={height:320,width:320};addPropertyControls(FramerdwUNCe3GI,{vcOpbE5yz:{defaultValue:\"Resource title goes here\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerdwUNCe3GI,[{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\":\"FramerdwUNCe3GI\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Q1GNWFpPW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"320\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"vcOpbE5yz\\\":\\\"title\\\"}\",\"framerIntrinsicHeight\":\"320\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dwUNCe3GI.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";const API_KEY=\"AIzaSyB_TdIqjz0lWgcLphFu3JtpPRnrRJ5jxuc\";const CHANNEL_ID=\"UCx_2Vso6Qz76n-w5KV8DZcA\";const UPLOADS_PLAYLIST_ID=`UU${CHANNEL_ID.slice(2)}`;const SHORTS_PLAYLIST_ID=`UUSH${CHANNEL_ID.slice(2)}`;const API_URL_UPLOADS=`https://www.googleapis.com/youtube/v3/playlistItems?key=${API_KEY}&playlistId=${UPLOADS_PLAYLIST_ID}&part=snippet,contentDetails&maxResults=50`;const API_URL_SHORTS=`https://www.googleapis.com/youtube/v3/playlistItems?key=${API_KEY}&playlistId=${SHORTS_PLAYLIST_ID}&part=snippet,contentDetails&maxResults=50`;const MAX_AGE=24*60*60*1e3// 24 hours\n;// Variable to specify which video to pull data from\nconst VIDEO_INDEX=1// Change this to 1, 2, etc. to get the second, third, etc. long-form video\n;async function fetchVideoData(videoIndex){let nextPageToken=\"\";let uploadsData={items:[]};let shortsData={items:[]};let isFetching=true;let pagesFetched=0;while(isFetching){try{const[uploadsResponse,shortsResponse]=await Promise.all([fetch(`${API_URL_UPLOADS}&pageToken=${nextPageToken}`),fetch(API_URL_SHORTS)]);const[uploadsPageData,shortsDataPage]=await Promise.all([uploadsResponse.json(),shortsResponse.json()]);uploadsData.items.push(...uploadsPageData.items);nextPageToken=uploadsPageData.nextPageToken;shortsData=shortsDataPage;pagesFetched++;isFetching=nextPageToken&&uploadsData.items.length<videoIndex+1&&pagesFetched<10// Fetch until we have enough videos or reach page limit\n;}catch(error){console.error(\"Error fetching video:\",error);return null;}}const shortsVideoIds=new Set(shortsData.items.map(item=>item.contentDetails.videoId));const longFormVideos=uploadsData.items.filter(item=>!shortsVideoIds.has(item.contentDetails.videoId));return longFormVideos.length>videoIndex?longFormVideos[videoIndex]:null;}function cleanTitle(title){title=title.replace(/\\s\\|\\sEp\\s\\d{4}$/,\"\");return title.length>50?title.substring(0,47)+\"...\":title;}function storeDataInLocalStorage(key,data){localStorage.setItem(key,JSON.stringify({timestamp:Date.now(),data}));}function getDataFromLocalStorage(key,maxAge){const storedData=localStorage.getItem(key);if(!storedData)return null;const{timestamp,data}=JSON.parse(storedData);return Date.now()-timestamp<maxAge?data:null;}function useYouTubeData(key,fetchData,cleanData){const[data,setData]=useState(\"Loading...\");useEffect(()=>{async function fetchDataAndCache(){const cacheKey=`${key}_${VIDEO_INDEX}`;const cachedData=getDataFromLocalStorage(cacheKey,MAX_AGE);if(cachedData){setData(cachedData);return;}const video=await fetchData(VIDEO_INDEX);if(video){const cleanedData=cleanData(video);setData(cleanedData);storeDataInLocalStorage(cacheKey,cleanedData);}else{setData(\"No long-form videos found\");}}fetchDataAndCache();},[key]);return data;}export function useYouTubeVideoTitle(){return useYouTubeData(\"youtubeVideoTitle\",fetchVideoData,video=>cleanTitle(video.snippet.title));}export function useYouTubeVideoDescription(){return useYouTubeData(\"youtubeVideoDescription\",fetchVideoData,video=>{let description=video.snippet.description;return description.length>190?description.substring(0,190)+\"...\":description;});}export function useYouTubeVideoLink(){return useYouTubeData(\"youtubeVideoLink\",fetchVideoData,video=>`https://www.youtube.com/watch?v=${video.contentDetails.videoId}`);}export function useYouTubeVideoThumbnail(){return useYouTubeData(\"youtubeVideoThumbnail\",fetchVideoData,video=>video.snippet.thumbnails.high.url);}export function YouTubeTitleOverride(){const title=useYouTubeVideoTitle();return{text:title};}export function YouTubeDescriptionOverride(){const description=useYouTubeVideoDescription();return{text:description};}export function YouTubeLinkOverride(props){const link=useYouTubeVideoLink();const{onClick}=props;return{onClick:()=>{if(link)window.open(link,\"_blank\");if(onClick)onClick();}};}export function YouTubeThumbnailOverride(props){const thumbnail=useYouTubeVideoThumbnail();const imageRef=useRef();useEffect(()=>{if(imageRef.current&&thumbnail)imageRef.current.src=thumbnail;},[thumbnail]);return{ref:imageRef};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withYouTubeTitleOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeTitleOverride(props)});};}withYouTubeTitleOverride.displayName=\"YouTubeTitleOverride\";export function withYouTubeDescriptionOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeDescriptionOverride(props)});};}withYouTubeDescriptionOverride.displayName=\"YouTubeDescriptionOverride\";export function withYouTubeLinkOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeLinkOverride(props)});};}withYouTubeLinkOverride.displayName=\"YouTubeLinkOverride\";export function withYouTubeThumbnailOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeThumbnailOverride(props)});};}withYouTubeThumbnailOverride.displayName=\"YouTubeThumbnailOverride\";\nexport const __FramerMetadata__ = {\"exports\":{\"YouTubeThumbnailOverride\":{\"type\":\"override\",\"name\":\"YouTubeThumbnailOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoDescription\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeDescriptionOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeDescriptionOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeThumbnailOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeThumbnailOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoThumbnail\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeTitleOverride\":{\"type\":\"override\",\"name\":\"YouTubeTitleOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoTitle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeTitleOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeTitleOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeLinkOverride\":{\"type\":\"override\",\"name\":\"YouTubeLinkOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeDescriptionOverride\":{\"type\":\"override\",\"name\":\"YouTubeDescriptionOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeLinkOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeLinkOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoLink\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YoutubeData2.map", "// Generated by Framer (1d71865)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withYouTubeDescriptionOverride,withYouTubeLinkOverride,withYouTubeTitleOverride}from\"https://framerusercontent.com/modules/SvGZGPBgTHF4tMRDL2g2/RaFLus3jsPSVoUYPhZ8S/YoutubeData2.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/2pdGeB4xDJhwqWVrDzlV/eQkSBuzHXCSG2Y0Mc64s/GygTAX8TE.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qvZtbGsEKPBlQHMrftya/BQpIkdb2pxDYx6KVbLPL/Syt1ipHc1.js\";const RichTextWithYouTubeTitleOverride=withYouTubeTitleOverride(RichText);const RichTextWithYouTubeDescriptionOverride=withYouTubeDescriptionOverride(RichText);const MotionDivWithYouTubeLinkOverride=withYouTubeLinkOverride(motion.div);const enabledGestures={ULSVXfnKK:{hover:true}};const cycleOrder=[\"ULSVXfnKK\"];const serializationHash=\"framer-d1MTB\";const variantClassNames={ULSVXfnKK:\"framer-v-7iscks\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.44,0,.22,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,title,width,...props})=>{var _ref;return{...props,vcOpbE5yz:(_ref=title!==null&&title!==void 0?title:props.vcOpbE5yz)!==null&&_ref!==void 0?_ref:\"Resource title goes here\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vcOpbE5yz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ULSVXfnKK\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",pixelHeight:1032,pixelWidth:1382,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/kgKSLRZpWSdr84CfvfcFcyEWU.jpeg\",srcSet:\"https://framerusercontent.com/images/kgKSLRZpWSdr84CfvfcFcyEWU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/kgKSLRZpWSdr84CfvfcFcyEWU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kgKSLRZpWSdr84CfvfcFcyEWU.jpeg 1382w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-7iscks\",className,classNames),\"data-framer-name\":\"Title Only\",layoutDependency:layoutDependency,layoutId:\"ULSVXfnKK\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({\"ULSVXfnKK-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(MotionDivWithYouTubeLinkOverride,{className:\"framer-13xfzk0\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"qgtwnWDeY\",children:[/*#__PURE__*/_jsx(RichTextWithYouTubeTitleOverride,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-14pobu5\",\"data-styles-preset\":\"Syt1ipHc1\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233)))\"},children:\"Resource title goes here\"})}),className:\"framer-14zktgh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ISeh9NE5V\",style:{\"--extracted-a0htzi\":\"var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vcOpbE5yz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithYouTubeDescriptionOverride,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233)))\"},children:\"Resource description goes here\"})}),className:\"framer-1aviunq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JdGes1m8G\",style:{\"--extracted-r6o4lv\":\"var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},transformTemplate:transformTemplate1,variants:{\"ULSVXfnKK-hover\":{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"ULSVXfnKK-hover\":{transformTemplate:undefined}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bh6yb5\",\"data-framer-name\":\"overlay\",layoutDependency:layoutDependency,layoutId:\"hj1p49si0\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{\"ULSVXfnKK-hover\":{background:\"linear-gradient(180deg, rgba(107, 120, 102, 0.5) 0%, rgba(108, 121, 103, 0.8) 100%)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-d1MTB.framer-19y5ol, .framer-d1MTB .framer-19y5ol { display: block; }\",\".framer-d1MTB.framer-7iscks { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 320px; justify-content: flex-end; overflow: hidden; padding: 20px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-d1MTB .framer-13xfzk0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-d1MTB .framer-14zktgh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-d1MTB .framer-1aviunq { bottom: -120px; flex: none; height: auto; left: 50%; position: absolute; white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-d1MTB .framer-bh6yb5 { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-d1MTB.framer-7iscks, .framer-d1MTB .framer-13xfzk0 { gap: 0px; } .framer-d1MTB.framer-7iscks > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-d1MTB.framer-7iscks > :first-child, .framer-d1MTB .framer-13xfzk0 > :first-child { margin-top: 0px; } .framer-d1MTB.framer-7iscks > :last-child, .framer-d1MTB .framer-13xfzk0 > :last-child { margin-bottom: 0px; } .framer-d1MTB .framer-13xfzk0 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-d1MTB.framer-v-7iscks.hover .framer-1aviunq { bottom: unset; left: unset; position: relative; }\",\".framer-d1MTB.framer-v-7iscks.hover .framer-bh6yb5 { will-change: var(--framer-will-change-override, transform); }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 320\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"yPpLttoqt\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"vcOpbE5yz\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerhms2gTB10=withCSS(Component,css,\"framer-d1MTB\");export default Framerhms2gTB10;Framerhms2gTB10.displayName=\"Latest resource card 2\";Framerhms2gTB10.defaultProps={height:320,width:320};addPropertyControls(Framerhms2gTB10,{vcOpbE5yz:{defaultValue:\"Resource title goes here\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Framerhms2gTB10,[{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\":\"Framerhms2gTB10\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"320\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yPpLttoqt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"vcOpbE5yz\\\":\\\"title\\\"}\",\"framerIntrinsicWidth\":\"320\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hms2gTB10.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/pGTziBAbTD5o1HrAx8oV/xtViwdUr0ycny0pJ4UWz/tfDxytjFu.js\";const MaterialFonts=getFonts(Material);const MaterialControls=getPropertyControls(Material);const enabledGestures={CYg03nirf:{hover:true},IfyiEh7pw:{hover:true},JSXmzewkJ:{hover:true},XyblFQHhp:{hover:true}};const cycleOrder=[\"XyblFQHhp\",\"jRgdE0241\",\"JSXmzewkJ\",\"CYg03nirf\",\"kCiCsttqn\",\"IfyiEh7pw\"];const serializationHash=\"framer-OIR2o\";const variantClassNames={CYg03nirf:\"framer-v-1tb27jz\",IfyiEh7pw:\"framer-v-erlm6w\",jRgdE0241:\"framer-v-1l9p27v\",JSXmzewkJ:\"framer-v-3te6dv\",kCiCsttqn:\"framer-v-nz6hte\",XyblFQHhp:\"framer-v-1c9go11\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"L / Danger\":\"JSXmzewkJ\",\"L / Default\":\"XyblFQHhp\",\"L / Disabled\":\"jRgdE0241\",\"S / Danger\":\"IfyiEh7pw\",\"S / Default\":\"CYg03nirf\",\"S / Disabled\":\"kCiCsttqn\"};const getProps=({fontSize,height,iconL,iconR,id,label,link,newTab,showIconL,showIconR,showLabel,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6,_ref7;return{...props,BKF5IahL8:newTab!==null&&newTab!==void 0?newTab:props.BKF5IahL8,GrjfbeKC3:(_ref=showIconL!==null&&showIconL!==void 0?showIconL:props.GrjfbeKC3)!==null&&_ref!==void 0?_ref:true,KXJ3N9Ejk:(_ref1=iconR!==null&&iconR!==void 0?iconR:props.KXJ3N9Ejk)!==null&&_ref1!==void 0?_ref1:\"Circle\",MoT2QQ5gx:(_ref2=showLabel!==null&&showLabel!==void 0?showLabel:props.MoT2QQ5gx)!==null&&_ref2!==void 0?_ref2:true,NP5yQIcR3:(_ref3=label!==null&&label!==void 0?label:props.NP5yQIcR3)!==null&&_ref3!==void 0?_ref3:\"Label\",RWkv57tSu:link!==null&&link!==void 0?link:props.RWkv57tSu,SdhalYMpw:(_ref4=fontSize!==null&&fontSize!==void 0?fontSize:props.SdhalYMpw)!==null&&_ref4!==void 0?_ref4:18,tXS3YmhNZ:(_ref5=iconL!==null&&iconL!==void 0?iconL:props.tXS3YmhNZ)!==null&&_ref5!==void 0?_ref5:\"Circle\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"XyblFQHhp\",YZAlJBSOC:(_ref7=showIconR!==null&&showIconR!==void 0?showIconR:props.YZAlJBSOC)!==null&&_ref7!==void 0?_ref7:true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,MoT2QQ5gx,NP5yQIcR3,GrjfbeKC3,tXS3YmhNZ,YZAlJBSOC,KXJ3N9Ejk,RWkv57tSu,BKF5IahL8,SdhalYMpw,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XyblFQHhp\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:RWkv57tSu,openInNewTab:BKF5IahL8,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1c9go11\",className,classNames)} framer-114dxza`,\"data-framer-name\":\"L / Default\",layoutDependency:layoutDependency,layoutId:\"XyblFQHhp\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:1,...style},variants:{\"CYg03nirf-hover\":{opacity:.6},\"XyblFQHhp-hover\":{opacity:.6}},...addPropertyOverrides({\"CYg03nirf-hover\":{\"data-framer-name\":undefined},\"IfyiEh7pw-hover\":{\"data-framer-name\":undefined},\"JSXmzewkJ-hover\":{\"data-framer-name\":undefined},\"XyblFQHhp-hover\":{\"data-framer-name\":undefined},CYg03nirf:{\"data-framer-name\":\"S / Default\"},IfyiEh7pw:{\"data-framer-name\":\"S / Danger\"},jRgdE0241:{\"data-framer-name\":\"L / Disabled\"},JSXmzewkJ:{\"data-framer-name\":\"L / Danger\"},kCiCsttqn:{\"data-framer-name\":\"S / Disabled\"}},baseVariant,gestureVariant),children:[GrjfbeKC3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-f02s93-container\",\"data-framer-name\":\"Icon L\",layoutDependency:layoutDependency,layoutId:\"CNPBklYwk-container\",name:\"Icon L\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(64, 64, 64))\",height:\"100%\",iconSearch:\"Home\",iconSelection:tXS3YmhNZ,iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"CNPBklYwk\",layoutId:\"CNPBklYwk\",mirrored:false,name:\"Icon L\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"CYg03nirf-hover\":{color:\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\"},\"IfyiEh7pw-hover\":{color:\"var(--token-1507efa9-de01-4b38-ac9b-5f8f4b9be30e, rgb(220, 38, 38))\"},\"JSXmzewkJ-hover\":{color:\"var(--token-1507efa9-de01-4b38-ac9b-5f8f4b9be30e, rgb(220, 38, 38))\"},\"XyblFQHhp-hover\":{color:\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\"},IfyiEh7pw:{color:\"var(--token-fa8f09d1-40ae-40ce-91d6-991468d5d5f3, rgb(239, 68, 68))\"},jRgdE0241:{color:\"var(--token-64b159d3-04ba-4802-be08-e862d24eda69, rgb(115, 115, 115))\"},JSXmzewkJ:{color:\"var(--token-fa8f09d1-40ae-40ce-91d6-991468d5d5f3, rgb(239, 68, 68))\"},kCiCsttqn:{color:\"var(--token-64b159d3-04ba-4802-be08-e862d24eda69, rgb(115, 115, 115))\"}},baseVariant,gestureVariant)})})}),MoT2QQ5gx&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-g98qsv\",\"data-framer-name\":\"Label Wrapper\",layoutDependency:layoutDependency,layoutId:\"QHWu5NN5C\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlbHZldGljYSBOb3cgRGlzcGxheSBNZWRpdW0=\",\"--framer-font-family\":'\"Helvetica Now Display Medium\", \"Helvetica Now Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-SdhalYMpw-lcIRM4XWN) * 1px)\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10)))\"},children:\"Label\"})}),className:\"framer-1hdi269\",fonts:[\"CUSTOM;Helvetica Now Display Medium\"],layoutDependency:layoutDependency,layoutId:\"RUh70eZXo\",style:{\"--extracted-r6o4lv\":\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\",\"--variable-reference-SdhalYMpw-lcIRM4XWN\":SdhalYMpw},text:NP5yQIcR3,variants:{\"IfyiEh7pw-hover\":{\"--extracted-r6o4lv\":\"var(--token-1507efa9-de01-4b38-ac9b-5f8f4b9be30e, rgb(220, 38, 38))\"},\"JSXmzewkJ-hover\":{\"--extracted-r6o4lv\":\"var(--token-1507efa9-de01-4b38-ac9b-5f8f4b9be30e, rgb(220, 38, 38))\"},IfyiEh7pw:{\"--extracted-r6o4lv\":\"var(--token-fa8f09d1-40ae-40ce-91d6-991468d5d5f3, rgb(239, 68, 68))\"},jRgdE0241:{\"--extracted-r6o4lv\":\"var(--token-64b159d3-04ba-4802-be08-e862d24eda69, rgb(115, 115, 115))\"},JSXmzewkJ:{\"--extracted-r6o4lv\":\"var(--token-fa8f09d1-40ae-40ce-91d6-991468d5d5f3, rgb(239, 68, 68))\"},kCiCsttqn:{\"--extracted-r6o4lv\":\"var(--token-64b159d3-04ba-4802-be08-e862d24eda69, rgb(115, 115, 115))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"IfyiEh7pw-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g7xadr\",\"data-styles-preset\":\"tfDxytjFu\",style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1507efa9-de01-4b38-ac9b-5f8f4b9be30e, rgb(220, 38, 38)))\"},children:\"Label\"})})},\"JSXmzewkJ-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlbHZldGljYSBOb3cgRGlzcGxheSBNZWRpdW0=\",\"--framer-font-family\":'\"Helvetica Now Display Medium\", \"Helvetica Now Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-SdhalYMpw-lcIRM4XWN) * 1px)\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1507efa9-de01-4b38-ac9b-5f8f4b9be30e, rgb(220, 38, 38)))\"},children:\"Label\"})})},CYg03nirf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T25lc3QtNTAw\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.005em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10)))\"},children:\"Label\"})}),fonts:[\"GF;Onest-500\"]},IfyiEh7pw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g7xadr\",\"data-styles-preset\":\"tfDxytjFu\",style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa8f09d1-40ae-40ce-91d6-991468d5d5f3, rgb(239, 68, 68)))\"},children:\"Label\"})}),fonts:[\"Inter\"]},jRgdE0241:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlbHZldGljYSBOb3cgRGlzcGxheSBNZWRpdW0=\",\"--framer-font-family\":'\"Helvetica Now Display Medium\", \"Helvetica Now Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-SdhalYMpw-lcIRM4XWN) * 1px)\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64b159d3-04ba-4802-be08-e862d24eda69, rgb(115, 115, 115)))\"},children:\"Label\"})})},JSXmzewkJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlbHZldGljYSBOb3cgRGlzcGxheSBNZWRpdW0=\",\"--framer-font-family\":'\"Helvetica Now Display Medium\", \"Helvetica Now Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-SdhalYMpw-lcIRM4XWN) * 1px)\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa8f09d1-40ae-40ce-91d6-991468d5d5f3, rgb(239, 68, 68)))\"},children:\"Label\"})})},kCiCsttqn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g7xadr\",\"data-styles-preset\":\"tfDxytjFu\",style:{\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64b159d3-04ba-4802-be08-e862d24eda69, rgb(115, 115, 115)))\"},children:\"Label\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)})}),YZAlJBSOC&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8z8qvh-container\",\"data-framer-name\":\"Icon R\",layoutDependency:layoutDependency,layoutId:\"tKDo5Y0xC-container\",name:\"Icon R\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(64, 64, 64))\",height:\"100%\",iconSearch:\"Home\",iconSelection:KXJ3N9Ejk,iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"tKDo5Y0xC\",layoutId:\"tKDo5Y0xC\",mirrored:false,name:\"Icon R\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"CYg03nirf-hover\":{color:\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\"},\"IfyiEh7pw-hover\":{color:\"var(--token-1507efa9-de01-4b38-ac9b-5f8f4b9be30e, rgb(220, 38, 38))\"},\"JSXmzewkJ-hover\":{color:\"var(--token-1507efa9-de01-4b38-ac9b-5f8f4b9be30e, rgb(220, 38, 38))\"},\"XyblFQHhp-hover\":{color:\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\"},IfyiEh7pw:{color:\"var(--token-fa8f09d1-40ae-40ce-91d6-991468d5d5f3, rgb(239, 68, 68))\"},jRgdE0241:{color:\"var(--token-64b159d3-04ba-4802-be08-e862d24eda69, rgb(115, 115, 115))\"},JSXmzewkJ:{color:\"var(--token-fa8f09d1-40ae-40ce-91d6-991468d5d5f3, rgb(239, 68, 68))\"},kCiCsttqn:{color:\"var(--token-64b159d3-04ba-4802-be08-e862d24eda69, rgb(115, 115, 115))\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OIR2o.framer-114dxza, .framer-OIR2o .framer-114dxza { display: block; }\",\".framer-OIR2o.framer-1c9go11 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 40px; overflow: hidden; padding: 12px 16px 12px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-OIR2o .framer-f02s93-container, .framer-OIR2o .framer-8z8qvh-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-OIR2o .framer-g98qsv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 4px 0px 4px; position: relative; width: min-content; }\",\".framer-OIR2o .framer-1hdi269 { -webkit-user-select: none; flex: none; height: auto; overflow: visible; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OIR2o.framer-1c9go11, .framer-OIR2o .framer-g98qsv { gap: 0px; } .framer-OIR2o.framer-1c9go11 > *, .framer-OIR2o .framer-g98qsv > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-OIR2o.framer-1c9go11 > :first-child, .framer-OIR2o .framer-g98qsv > :first-child { margin-left: 0px; } .framer-OIR2o.framer-1c9go11 > :last-child, .framer-OIR2o .framer-g98qsv > :last-child { margin-right: 0px; } }\",\".framer-OIR2o.framer-v-1tb27jz.framer-1c9go11, .framer-OIR2o.framer-v-nz6hte.framer-1c9go11, .framer-OIR2o.framer-v-erlm6w.framer-1c9go11 { min-height: 32px; padding: 8px 12px 8px 12px; }\",\".framer-OIR2o.framer-v-1tb27jz .framer-f02s93-container, .framer-OIR2o.framer-v-1tb27jz .framer-8z8qvh-container, .framer-OIR2o.framer-v-nz6hte .framer-f02s93-container, .framer-OIR2o.framer-v-nz6hte .framer-8z8qvh-container, .framer-OIR2o.framer-v-erlm6w .framer-f02s93-container, .framer-OIR2o.framer-v-erlm6w .framer-8z8qvh-container { height: 16px; width: 16px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 45.5\n * @framerIntrinsicWidth 123.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"40px\",null]},\"jRgdE0241\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"40px\",null]},\"JSXmzewkJ\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"40px\",null]},\"CYg03nirf\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"kCiCsttqn\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"IfyiEh7pw\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"bt7kBzc43\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"40px\",null]},\"CKEvft7Jz\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"40px\",null]},\"NOcp5G6Am\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"r0WDE2lJu\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"32px\",null]}}}\n * @framerVariables {\"MoT2QQ5gx\":\"showLabel\",\"NP5yQIcR3\":\"label\",\"GrjfbeKC3\":\"showIconL\",\"tXS3YmhNZ\":\"iconL\",\"YZAlJBSOC\":\"showIconR\",\"KXJ3N9Ejk\":\"iconR\",\"RWkv57tSu\":\"link\",\"BKF5IahL8\":\"newTab\",\"SdhalYMpw\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlcIRM4XWN=withCSS(Component,css,\"framer-OIR2o\");export default FramerlcIRM4XWN;FramerlcIRM4XWN.displayName=\"Button / Ghost\";FramerlcIRM4XWN.defaultProps={height:45.5,width:123.5};addPropertyControls(FramerlcIRM4XWN,{variant:{options:[\"XyblFQHhp\",\"jRgdE0241\",\"JSXmzewkJ\",\"CYg03nirf\",\"kCiCsttqn\",\"IfyiEh7pw\"],optionTitles:[\"L / Default\",\"L / Disabled\",\"L / Danger\",\"S / Default\",\"S / Disabled\",\"S / Danger\"],title:\"Variant\",type:ControlType.Enum},MoT2QQ5gx:{defaultValue:true,title:\"Show Label\",type:ControlType.Boolean},NP5yQIcR3:{defaultValue:\"Label\",displayTextArea:false,title:\"Label\",type:ControlType.String},GrjfbeKC3:{defaultValue:true,title:\"Show Icon L\",type:ControlType.Boolean},tXS3YmhNZ:(MaterialControls===null||MaterialControls===void 0?void 0:MaterialControls[\"iconSelection\"])&&{...MaterialControls[\"iconSelection\"],defaultValue:\"Circle\",description:undefined,hidden:undefined,title:\"Icon L\"},YZAlJBSOC:{defaultValue:true,title:\"Show Icon R\",type:ControlType.Boolean},KXJ3N9Ejk:(MaterialControls===null||MaterialControls===void 0?void 0:MaterialControls[\"iconSelection\"])&&{...MaterialControls[\"iconSelection\"],defaultValue:\"Circle\",description:undefined,hidden:undefined,title:\"Icon R\"},RWkv57tSu:{title:\"Link\",type:ControlType.Link},BKF5IahL8:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},SdhalYMpw:{defaultValue:18,title:\"Font Size\",type:ControlType.Number}});addFonts(FramerlcIRM4XWN,[{explicitInter:true,fonts:[{family:\"Helvetica Now Display Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/e46fWP4fhHmh3sVj3VPrErR5s.woff2\"},{family:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPhxx-ZtxFMQWXgSQ.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...MaterialFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlcIRM4XWN\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"45.5\",\"framerVariables\":\"{\\\"MoT2QQ5gx\\\":\\\"showLabel\\\",\\\"NP5yQIcR3\\\":\\\"label\\\",\\\"GrjfbeKC3\\\":\\\"showIconL\\\",\\\"tXS3YmhNZ\\\":\\\"iconL\\\",\\\"YZAlJBSOC\\\":\\\"showIconR\\\",\\\"KXJ3N9Ejk\\\":\\\"iconR\\\",\\\"RWkv57tSu\\\":\\\"link\\\",\\\"BKF5IahL8\\\":\\\"newTab\\\",\\\"SdhalYMpw\\\":\\\"fontSize\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"123.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"40px\\\",null]},\\\"jRgdE0241\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"40px\\\",null]},\\\"JSXmzewkJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"40px\\\",null]},\\\"CYg03nirf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"kCiCsttqn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"IfyiEh7pw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"bt7kBzc43\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"40px\\\",null]},\\\"CKEvft7Jz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"40px\\\",null]},\\\"NOcp5G6Am\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"r0WDE2lJu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lcIRM4XWN.map", "// Generated by Framer (7cbec57)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={CqjGuI2oU:{hover:true},kAv5Jr4DZ:{hover:true},se5BfZgAz:{hover:true},wYcCpvH5d:{hover:true},xP0T0ad6G:{hover:true}};const cycleOrder=[\"se5BfZgAz\",\"CqjGuI2oU\",\"kAv5Jr4DZ\",\"xP0T0ad6G\",\"wYcCpvH5d\"];const serializationHash=\"framer-j6qie\";const variantClassNames={CqjGuI2oU:\"framer-v-wt10r9\",kAv5Jr4DZ:\"framer-v-eanlro\",se5BfZgAz:\"framer-v-1m76e8d\",wYcCpvH5d:\"framer-v-1yvd4ke\",xP0T0ad6G:\"framer-v-z95ull\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Apple podcasts\":\"se5BfZgAz\",\"google podcasts\":\"CqjGuI2oU\",Pandora:\"xP0T0ad6G\",Spotify:\"kAv5Jr4DZ\",YT:\"wYcCpvH5d\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,kbk4m_xXD:link!==null&&link!==void 0?link:props.kbk4m_xXD,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"se5BfZgAz\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,kbk4m_xXD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"se5BfZgAz\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"CqjGuI2oU-hover\",\"kAv5Jr4DZ-hover\",\"xP0T0ad6G-hover\",\"wYcCpvH5d-hover\"].includes(gestureVariant))return false;if([\"CqjGuI2oU\",\"kAv5Jr4DZ\",\"xP0T0ad6G\",\"wYcCpvH5d\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"CqjGuI2oU-hover\")return true;if(baseVariant===\"CqjGuI2oU\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"kAv5Jr4DZ-hover\")return true;if(baseVariant===\"kAv5Jr4DZ\")return true;return false;};const isDisplayed3=()=>{if(gestureVariant===\"xP0T0ad6G-hover\")return true;if(baseVariant===\"xP0T0ad6G\")return true;return false;};const isDisplayed4=()=>{if(gestureVariant===\"wYcCpvH5d-hover\")return true;if(baseVariant===\"wYcCpvH5d\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1m76e8d\",className,classNames),\"data-framer-name\":\"Apple podcasts\",layoutDependency:layoutDependency,layoutId:\"se5BfZgAz\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"CqjGuI2oU-hover\":{\"data-framer-name\":undefined},\"kAv5Jr4DZ-hover\":{\"data-framer-name\":undefined},\"se5BfZgAz-hover\":{\"data-framer-name\":undefined},\"wYcCpvH5d-hover\":{\"data-framer-name\":undefined},\"xP0T0ad6G-hover\":{\"data-framer-name\":undefined},CqjGuI2oU:{\"data-framer-name\":\"google podcasts\"},kAv5Jr4DZ:{\"data-framer-name\":\"Spotify\"},wYcCpvH5d:{\"data-framer-name\":\"YT\"},xP0T0ad6G:{\"data-framer-name\":\"Pandora\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://itunes.apple.com/us/podcast/relatable-with-allie-stuckey/id1359249098?mt=2\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-bj7w7c framer-1th9rdw\",\"data-framer-name\":\"Podcasts_iOS_\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"I8SjNexxA\",opacity:.4,style:{opacity:.4},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 31.371 27.733 C 31.061 28.523 30.347 29.632 29.323 30.421 C 28.736 30.869 28.032 31.307 27.072 31.595 C 26.048 31.904 24.779 32 23.2 32 L 8.8 32 C 7.221 32 5.963 31.893 4.928 31.595 C 3.968 31.307 3.264 30.88 2.677 30.421 C 1.664 29.643 0.939 28.523 0.629 27.733 C 0.011 26.144 0 24.341 0 23.2 L 0 8.8 C 0 7.659 0.011 5.856 0.629 4.267 C 0.939 3.477 1.653 2.368 2.677 1.579 C 3.264 1.131 3.968 0.693 4.928 0.405 C 5.963 0.107 7.221 0 8.8 0 L 23.2 0 C 24.779 0 26.037 0.107 27.072 0.405 C 28.032 0.693 28.736 1.12 29.323 1.579 C 30.336 2.357 31.061 3.477 31.371 4.267 C 32 5.856 32 7.669 32 8.8 L 32 23.2 C 32 24.341 31.989 26.144 31.371 27.733 Z\" fill=\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10)) /* {&quot;name&quot;:&quot;Text / Main&quot;} */\"></path><g transform=\"translate(4.746 3.541)\" id=\"ss8796781907_2\"><path d=\"M 13.996 15.776 C 13.953 15.392 13.825 15.115 13.569 14.859 C 13.089 14.357 12.246 14.027 11.254 14.027 C 10.262 14.027 9.42 14.347 8.94 14.859 C 8.694 15.125 8.556 15.392 8.513 15.776 C 8.428 16.523 8.481 17.163 8.566 18.197 C 8.652 19.179 8.812 20.491 9.014 21.813 C 9.164 22.763 9.281 23.275 9.388 23.637 C 9.569 24.235 10.22 24.747 11.254 24.747 C 12.289 24.747 12.95 24.224 13.121 23.637 C 13.228 23.275 13.345 22.763 13.494 21.813 C 13.697 20.48 13.857 19.179 13.942 18.197 C 14.038 17.163 14.081 16.523 13.996 15.776 Z M 13.878 10.336 C 13.878 11.787 12.705 12.96 11.254 12.96 C 9.804 12.96 8.63 11.787 8.63 10.336 C 8.63 8.885 9.804 7.712 11.254 7.712 C 12.705 7.712 13.878 8.896 13.878 10.336 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 11.222 0 C 5.1 0.021 0.086 4.992 0.001 11.115 C -0.063 16.075 3.105 20.32 7.532 21.877 C 7.638 21.92 7.745 21.824 7.734 21.717 C 7.681 21.333 7.617 20.949 7.574 20.565 C 7.553 20.427 7.468 20.32 7.35 20.256 C 3.852 18.731 1.409 15.221 1.452 11.157 C 1.505 5.824 5.857 1.483 11.18 1.44 C 16.63 1.397 21.078 5.813 21.078 11.253 C 21.078 15.275 18.646 18.731 15.18 20.256 C 15.052 20.309 14.966 20.427 14.956 20.565 L 14.796 21.717 C 14.774 21.835 14.892 21.92 14.998 21.877 C 19.382 20.341 22.529 16.16 22.529 11.253 C 22.508 5.045 17.441 -0.011 11.222 0 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 10.966 3.733 C 6.977 3.883 3.777 7.179 3.724 11.168 C 3.692 13.792 5.004 16.117 7.02 17.493 C 7.116 17.557 7.254 17.483 7.254 17.365 C 7.222 16.907 7.222 16.501 7.244 16.075 C 7.254 15.936 7.201 15.808 7.094 15.712 C 5.868 14.56 5.121 12.917 5.164 11.104 C 5.249 7.904 7.82 5.301 11.02 5.173 C 14.497 5.035 17.356 7.829 17.356 11.264 C 17.356 13.013 16.609 14.592 15.425 15.712 C 15.329 15.808 15.276 15.936 15.276 16.075 C 15.297 16.491 15.286 16.896 15.265 17.355 C 15.254 17.472 15.393 17.557 15.5 17.483 C 17.484 16.128 18.796 13.835 18.796 11.253 C 18.806 7.008 15.254 3.563 10.966 3.733 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:8796781907,variants:{\"se5BfZgAz-hover\":{opacity:.6}},withExternalLayout:true,...addPropertyOverrides({\"se5BfZgAz-hover\":{opacity:.6,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 31.371 27.733 C 31.061 28.523 30.347 29.632 29.323 30.421 C 28.736 30.869 28.032 31.307 27.072 31.595 C 26.048 31.904 24.779 32 23.2 32 L 8.8 32 C 7.221 32 5.963 31.893 4.928 31.595 C 3.968 31.307 3.264 30.88 2.677 30.421 C 1.664 29.643 0.939 28.523 0.629 27.733 C 0.011 26.144 0 24.341 0 23.2 L 0 8.8 C 0 7.659 0.011 5.856 0.629 4.267 C 0.939 3.477 1.653 2.368 2.677 1.579 C 3.264 1.131 3.968 0.693 4.928 0.405 C 5.963 0.107 7.221 0 8.8 0 L 23.2 0 C 24.779 0 26.037 0.107 27.072 0.405 C 28.032 0.693 28.736 1.12 29.323 1.579 C 30.336 2.357 31.061 3.477 31.371 4.267 C 32 5.856 32 7.669 32 8.8 L 32 23.2 C 32 24.341 31.989 26.144 31.371 27.733 Z\" fill=\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10)) /* {&quot;name&quot;:&quot;Text / Main&quot;} */\"></path><g transform=\"translate(4.746 3.541)\" id=\"ss10448749553_2\"><path d=\"M 13.996 15.776 C 13.953 15.392 13.825 15.115 13.569 14.859 C 13.089 14.357 12.246 14.027 11.254 14.027 C 10.262 14.027 9.42 14.347 8.94 14.859 C 8.694 15.125 8.556 15.392 8.513 15.776 C 8.428 16.523 8.481 17.163 8.566 18.197 C 8.652 19.179 8.812 20.491 9.014 21.813 C 9.164 22.763 9.281 23.275 9.388 23.637 C 9.569 24.235 10.22 24.747 11.254 24.747 C 12.289 24.747 12.95 24.224 13.121 23.637 C 13.228 23.275 13.345 22.763 13.494 21.813 C 13.697 20.48 13.857 19.179 13.942 18.197 C 14.038 17.163 14.081 16.523 13.996 15.776 Z M 13.878 10.336 C 13.878 11.787 12.705 12.96 11.254 12.96 C 9.804 12.96 8.63 11.787 8.63 10.336 C 8.63 8.885 9.804 7.712 11.254 7.712 C 12.705 7.712 13.878 8.896 13.878 10.336 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 11.222 0 C 5.1 0.021 0.086 4.992 0.001 11.115 C -0.063 16.075 3.105 20.32 7.532 21.877 C 7.638 21.92 7.745 21.824 7.734 21.717 C 7.681 21.333 7.617 20.949 7.574 20.565 C 7.553 20.427 7.468 20.32 7.35 20.256 C 3.852 18.731 1.409 15.221 1.452 11.157 C 1.505 5.824 5.857 1.483 11.18 1.44 C 16.63 1.397 21.078 5.813 21.078 11.253 C 21.078 15.275 18.646 18.731 15.18 20.256 C 15.052 20.309 14.966 20.427 14.956 20.565 L 14.796 21.717 C 14.774 21.835 14.892 21.92 14.998 21.877 C 19.382 20.341 22.529 16.16 22.529 11.253 C 22.508 5.045 17.441 -0.011 11.222 0 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 10.966 3.733 C 6.977 3.883 3.777 7.179 3.724 11.168 C 3.692 13.792 5.004 16.117 7.02 17.493 C 7.116 17.557 7.254 17.483 7.254 17.365 C 7.222 16.907 7.222 16.501 7.244 16.075 C 7.254 15.936 7.201 15.808 7.094 15.712 C 5.868 14.56 5.121 12.917 5.164 11.104 C 5.249 7.904 7.82 5.301 11.02 5.173 C 14.497 5.035 17.356 7.829 17.356 11.264 C 17.356 13.013 16.609 14.592 15.425 15.712 C 15.329 15.808 15.276 15.936 15.276 16.075 C 15.297 16.491 15.286 16.896 15.265 17.355 C 15.254 17.472 15.393 17.557 15.5 17.483 C 17.484 16.128 18.796 13.835 18.796 11.253 C 18.806 7.008 15.254 3.563 10.966 3.733 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:10448749553}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5tZWdhcGhvbmUuZm0vQk1EQzk5NjQ0ODc4MTQ?sa=X&ved=0CBoQ27cFahgKEwi4kt7fz7D7AhUAAAAAHQAAAAAQ8DU\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-mswh8g framer-1th9rdw\",\"data-framer-name\":\"Google_Podcasts_icon_1\",fill:\"black\",intrinsicHeight:400,intrinsicWidth:400,layoutDependency:layoutDependency,layoutId:\"xijC4ztke\",style:{opacity:.4},svg:'<svg width=\"400\" height=\"400\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M24.26 186.32v27.351Z\" fill=\"#0A0A0A\" style=\"fill:color(display-p3 .0392 .0392 .0392);fill-opacity:1\"/><path d=\"M24.26 186.32v27.351\" stroke=\"#0A0A0A\" style=\"stroke:color(display-p3 .0392 .0392 .0392);stroke-opacity:1\" stroke-width=\"48.5\" stroke-linecap=\"round\"/><path d=\"M375.74 186.32v27.351Z\" fill=\"#0A0A0A\" style=\"fill:color(display-p3 .0392 .0392 .0392);fill-opacity:1\"/><path d=\"M375.74 186.32v27.351\" stroke=\"#0A0A0A\" style=\"stroke:color(display-p3 .0392 .0392 .0392);stroke-opacity:1\" stroke-width=\"48.5\" stroke-linecap=\"round\"/><path d=\"M112.13 104.27v89.46Zm0 164.105v27.351Z\" fill=\"#0A0A0A\" style=\"fill:color(display-p3 .0392 .0392 .0392);fill-opacity:1\"/><path d=\"M112.13 104.27v89.46m0 74.645v27.351\" stroke=\"#0A0A0A\" style=\"stroke:color(display-p3 .0392 .0392 .0392);stroke-opacity:1\" stroke-width=\"48.5\" stroke-linecap=\"round\"/><path d=\"M287.87 206.26v89.46Zm0-102v27.351Z\" fill=\"#0A0A0A\" style=\"fill:color(display-p3 .0392 .0392 .0392);fill-opacity:1\"/><path d=\"M287.87 206.26v89.46m0-191.46v27.351\" stroke=\"#0A0A0A\" style=\"stroke:color(display-p3 .0392 .0392 .0392);stroke-opacity:1\" stroke-width=\"48.5\" stroke-linecap=\"round\"/><path d=\"M200 127.06v145.87Zm0-102.81v27.351Zm0 324.131v27.351Z\" fill=\"#0A0A0A\" style=\"fill:color(display-p3 .0392 .0392 .0392);fill-opacity:1\"/><path d=\"M200 127.06v145.87m0-248.68v27.351m0 296.78v27.351\" stroke=\"#0A0A0A\" style=\"stroke:color(display-p3 .0392 .0392 .0392);stroke-opacity:1\" stroke-width=\"48.5\" stroke-linecap=\"round\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h400v400H0z\"/></clipPath></defs></svg>',variants:{\"CqjGuI2oU-hover\":{opacity:.6}},withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:\"https://open.spotify.com/show/2z8aY7KQH1uUIR5Re0l2ba\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-8wx40a framer-1th9rdw\",\"data-framer-name\":\"Spotify_icon_1\",fill:\"black\",intrinsicHeight:512,intrinsicWidth:496,layoutDependency:layoutDependency,layoutId:\"pisng1_Ih\",style:{opacity:.4},svg:'<svg width=\"496\" height=\"512\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 256C0 119.1 111.1 8 248 8s248 111.1 248 248-111.1 248-248 248S0 392.9 0 256Zm393.7-28.8c4.5 2.6 7.7 3.9 12.9 3.9 12.2 0 23.2-9.7 23.2-23.3 0-11.9-5.1-18.1-12.9-22.6-55.9-32.6-132.4-47.8-205.4-47.8-42.9 0-82.3 4.9-117.5 15.2-9 2.6-17.4 10.3-17.4 23.9 0 13.3 10.1 23.6 23.3 23.6 4.003 0 7.797-1.113 11.035-2.062.645-.189 1.267-.372 1.865-.538 82.4-23 209.7-12.8 280.9 29.7Zm-29.067 76.617c3.158 1.716 6.409 3.483 10.967 3.483 10.9 0 19.3-8.7 19.4-19.5 0-8.7-3.2-14.9-11.3-19.7-49.4-29.4-112.1-45.5-177-45.5-41.6 0-70 5.8-97.8 13.6-10.3 2.9-15.5 10-15.5 20.7s8.7 19.4 19.4 19.4c3.31 0 5.592-.703 8.477-1.593 1.038-.319 2.153-.663 3.423-1.007 82.9-22.5 176.1-7.6 238.6 29.4.445.235.888.475 1.333.717ZM338 369.3c3.9 2.3 6.5 3.6 10.7 3.6 8.1 0 15.2-6.3 15.2-15.4 0-9.1-3.6-12.6-9.7-16.5-71.4-42.7-155.1-44.3-237-26.2-7.5 1.6-13.6 6.5-13.6 16.8 0 8.1 6.1 15.8 15.8 15.8 2.277 0 5.911-.987 9.255-1.895.915-.248 1.808-.49 2.645-.705 71.7-14.7 144.3-13.1 206.7 24.5Z\" fill=\"#0A0A0A\" style=\"fill:color(display-p3 .0392 .0392 .0392);fill-opacity:1\"/></svg>',variants:{\"kAv5Jr4DZ-hover\":{opacity:.6}},withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(Link,{href:\"https://www.pandora.com/podcast/relatable-with-allie-beth-stuckey/PC:36674\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1le4ya6 framer-1th9rdw\",\"data-framer-name\":\"Pandora_wordmark_1\",fill:\"black\",intrinsicHeight:57,intrinsicWidth:278,layoutDependency:layoutDependency,layoutId:\"ZRhHI7Jgh\",style:{opacity:.4},svg:'<svg width=\"278\" height=\"57\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"278\" height=\"57\"><path d=\"M277.2 0H0v57h277.2V0Z\" fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\"/></mask><g mask=\"url(#b)\"><path d=\"M186.4 17.4c6.1 0 11.1 5 11.1 11.1s-5 11.1-11.1 11.1-11.1-5-11.1-11.1c0-6.2 5-11.1 11.1-11.1Zm0-7.4c-10.2 0-18.5 8.3-18.5 18.5S176.2 47 186.4 47s18.5-8.3 18.5-18.5c0-10.3-8.3-18.5-18.5-18.5Z\" fill=\"#1A1A1A\" style=\"fill:color(display-p3 .1 .1 .1);fill-opacity:1\"/></g><mask id=\"c\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"278\" height=\"57\"><path d=\"M277.2 0H0v57h277.2V0Z\" fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\"/></mask><g mask=\"url(#c)\"><path d=\"M71.6 11.1v3c-3.2-2.6-7.3-4.2-11.7-4.2-10.2 0-18.5 8.3-18.5 18.5s8.3 18.5 18.5 18.5c4.4 0 8.5-1.6 11.7-4.2v3h6.8V11.1h-6.8ZM60.3 40c-6.4 0-11.5-5.2-11.5-11.5C48.8 22.1 54 17 60.3 17c6.4 0 11.5 5.2 11.5 11.5S66.6 40 60.3 40Z\" fill=\"#1A1A1A\" style=\"fill:color(display-p3 .1 .1 .1);fill-opacity:1\"/></g><mask id=\"d\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"278\" height=\"57\"><path d=\"M277.2 0H0v57h277.2V0Z\" fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\"/></mask><g mask=\"url(#d)\"><path d=\"M260.1 11.1v3c-3.2-2.6-7.3-4.2-11.7-4.2-10.2 0-18.5 8.3-18.5 18.5s8.3 18.5 18.5 18.5c4.4 0 8.5-1.6 11.7-4.2v3h6.8V11.1h-6.8ZM248.9 40c-6.4 0-11.5-5.2-11.5-11.5 0-6.4 5.2-11.5 11.5-11.5 6.4 0 11.5 5.2 11.5 11.5S255.2 40 248.9 40Z\" fill=\"#1A1A1A\" style=\"fill:color(display-p3 .1 .1 .1);fill-opacity:1\"/></g><mask id=\"e\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"278\" height=\"57\"><path d=\"M277.2 0H0v57h277.2V0Z\" fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\"/></mask><g mask=\"url(#e)\"><path d=\"M217.1 13.3c-4 2.5-7.4 7-7.4 15v17.5h7.4V28.3c0-11.5 11.9-10.9 11.9-10.9V10c-.1 0-6.5-.2-11.9 3.3Z\" fill=\"#1A1A1A\" style=\"fill:color(display-p3 .1 .1 .1);fill-opacity:1\"/></g><mask id=\"f\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"278\" height=\"57\"><path d=\"M277.2 0H0v57h277.2V0Z\" fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\"/></mask><g mask=\"url(#f)\"><path d=\"M113.6 13.7c-3.1-2.3-6.9-3.7-11.1-3.7-4.2 0-8 1.4-11.1 3.7-4.5 3.4-7.4 8.8-7.4 14.8v17.4h7.4V28.5c0-6.1 5-11.1 11.1-11.1s11.1 5 11.1 11.1v17.4h7.4V28.5c0-6.1-2.9-11.5-7.4-14.8Z\" fill=\"#1A1A1A\" style=\"fill:color(display-p3 .1 .1 .1);fill-opacity:1\"/></g><mask id=\"g\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"278\" height=\"57\"><path d=\"M277.2 0H0v57h277.2V0Z\" fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\"/></mask><g mask=\"url(#g)\"><path d=\"M159.5 0c-1.9 0-3.4 1.5-3.4 3.4v10.7c-3.2-2.6-7.3-4.2-11.7-4.2-10.2 0-18.5 8.3-18.5 18.5s8.3 18.5 18.5 18.5c4.4 0 8.5-1.6 11.7-4.2v3h6.8V0h-3.4Zm-14.7 40c-6.4 0-11.5-5.2-11.5-11.5 0-6.4 5.2-11.5 11.5-11.5 6.4 0 11.5 5.2 11.5 11.5.1 6.3-5.1 11.5-11.5 11.5Z\" fill=\"#1A1A1A\" style=\"fill:color(display-p3 .1 .1 .1);fill-opacity:1\"/></g><mask id=\"h\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"278\" height=\"57\"><path d=\"M277.2 0H0v57h277.2V0Z\" fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\"/></mask><g mask=\"url(#h)\"><path d=\"M18.5 10c-4.4 0-8.5 1.6-11.7 4.2v-3H0V57h3.4c1.9 0 3.4-1.5 3.4-3.4V42.8C10 45.4 14.1 47 18.5 47 28.8 47 37 38.7 37 28.5 37 18.2 28.8 10 18.5 10Zm-.4 30c-6.4 0-11.5-5.2-11.5-11.5 0-6.4 5.2-11.5 11.5-11.5s11.5 5.2 11.5 11.5S24.5 40 18.1 40Z\" fill=\"#1A1A1A\" style=\"fill:color(display-p3 .1 .1 .1);fill-opacity:1\"/></g><mask id=\"i\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"278\" height=\"57\"><path d=\"M277.2 0H0v57h277.2V0Z\" fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\"/></mask><g mask=\"url(#i)\"><path d=\"M273.8 11.1c-1.9 0-3.4-1.5-3.4-3.4s1.5-3.4 3.4-3.4 3.4 1.5 3.4 3.4-1.5 3.4-3.4 3.4Zm0-6.4c-1.7 0-3 1.3-3 3 0 1.6 1.3 3 3 3s3-1.4 3-3c0-1.7-1.4-3-3-3Zm.9 5-1-1.5h-.7v1.5h-.5V5.8h1.6c.7 0 1.2.5 1.2 1.2 0 .9-.8 1.2-1 1.2l1 1.6h-.6v-.1Zm-.6-3.5H273v1.5h1.1c.3 0 .7-.3.7-.7 0-.5-.4-.8-.7-.8Z\" fill=\"#1A1A1A\" style=\"fill:color(display-p3 .1 .1 .1);fill-opacity:1\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h277.2v57H0z\"/></clipPath></defs></svg>',variants:{\"xP0T0ad6G-hover\":{opacity:.6}},withExternalLayout:true})}),isDisplayed4()&&/*#__PURE__*/_jsx(Link,{href:kbk4m_xXD,openInNewTab:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-5zcquj framer-1th9rdw\",\"data-framer-name\":\"YouTube_full_color_icon_2017_1\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:29,layoutDependency:layoutDependency,layoutId:\"NSSXGrj6I\",style:{opacity:.4},svg:'<svg width=\"29\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><g clip-path=\"url(#b)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.447.597a3.578 3.578 0 0 1 2.526 2.526C28.568 5.35 28.57 10 28.57 10s0 4.65-.597 6.877a3.578 3.578 0 0 1-2.526 2.526C23.22 20 14.285 20 14.285 20s-8.935 0-11.162-.597a3.578 3.578 0 0 1-2.526-2.526C0 14.65 0 10 0 10s0-4.65.597-6.877A3.578 3.578 0 0 1 3.123.597C5.35 0 14.285 0 14.285 0s8.935 0 11.162.597ZM18.847 10l-7.422 4.285v-8.57L18.848 10Z\" fill=\"#1A1A1A\" style=\"fill:color(display-p3 .1 .1 .1);fill-opacity:1\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h28.57v20H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h28.57v20H0z\"/></clipPath></defs></svg>',variants:{\"wYcCpvH5d-hover\":{opacity:.6}},withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-j6qie.framer-1th9rdw, .framer-j6qie .framer-1th9rdw { display: block; }\",\".framer-j6qie.framer-1m76e8d { cursor: pointer; height: 32px; overflow: hidden; position: relative; width: 32px; }\",\".framer-j6qie .framer-bj7w7c { flex: none; height: 32px; left: calc(50.00000000000002% - 32px / 2); position: absolute; text-decoration: none; top: calc(50.00000000000002% - 32px / 2); width: 32px; }\",\".framer-j6qie .framer-mswh8g, .framer-j6qie .framer-8wx40a { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 0px; position: absolute; text-decoration: none; top: 0px; width: 32px; }\",\".framer-j6qie .framer-1le4ya6 { aspect-ratio: 4.87719298245614 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 0px; position: absolute; text-decoration: none; top: 0px; width: 78px; }\",\".framer-j6qie .framer-5zcquj { aspect-ratio: 1.45 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; text-decoration: none; top: 0px; width: 35px; }\",\".framer-j6qie.framer-v-z95ull.framer-1m76e8d, .framer-j6qie.framer-v-1yvd4ke.framer-1m76e8d { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; width: min-content; }\",\".framer-j6qie.framer-v-z95ull .framer-1le4ya6, .framer-j6qie.framer-v-1yvd4ke .framer-5zcquj { left: unset; position: relative; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-j6qie.framer-v-z95ull.framer-1m76e8d { gap: 0px; } .framer-j6qie.framer-v-z95ull.framer-1m76e8d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-j6qie.framer-v-z95ull.framer-1m76e8d > :first-child { margin-left: 0px; } .framer-j6qie.framer-v-z95ull.framer-1m76e8d > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-j6qie.framer-v-1yvd4ke.framer-1m76e8d { gap: 0px; } .framer-j6qie.framer-v-1yvd4ke.framer-1m76e8d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-j6qie.framer-v-1yvd4ke.framer-1m76e8d > :first-child { margin-left: 0px; } .framer-j6qie.framer-v-1yvd4ke.framer-1m76e8d > :last-child { margin-right: 0px; } }\",\".framer-j6qie.framer-v-z95ull.hover .framer-1le4ya6, .framer-j6qie.framer-v-1yvd4ke.hover .framer-5zcquj { left: unset; top: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"CqjGuI2oU\":{\"layout\":[\"fixed\",\"fixed\"]},\"kAv5Jr4DZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"xP0T0ad6G\":{\"layout\":[\"auto\",\"fixed\"]},\"wYcCpvH5d\":{\"layout\":[\"auto\",\"fixed\"]},\"hEBBFsQt9\":{\"layout\":[\"fixed\",\"fixed\"]},\"cq7KjeS1k\":{\"layout\":[\"fixed\",\"fixed\"]},\"pQKaJ4XDf\":{\"layout\":[\"fixed\",\"fixed\"]},\"VtHoTfp6I\":{\"layout\":[\"auto\",\"fixed\"]},\"osaW_gmXC\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"kbk4m_xXD\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlLGWQjSkK=withCSS(Component,css,\"framer-j6qie\");export default FramerlLGWQjSkK;FramerlLGWQjSkK.displayName=\"Podcast icon\";FramerlLGWQjSkK.defaultProps={height:32,width:32};addPropertyControls(FramerlLGWQjSkK,{variant:{options:[\"se5BfZgAz\",\"CqjGuI2oU\",\"kAv5Jr4DZ\",\"xP0T0ad6G\",\"wYcCpvH5d\"],optionTitles:[\"Apple podcasts\",\"google podcasts\",\"Spotify\",\"Pandora\",\"YT\"],title:\"Variant\",type:ControlType.Enum},kbk4m_xXD:{title:\"Link\",type:ControlType.Link}});addFonts(FramerlLGWQjSkK,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlLGWQjSkK\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"kbk4m_xXD\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"32\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CqjGuI2oU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kAv5Jr4DZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xP0T0ad6G\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"wYcCpvH5d\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"hEBBFsQt9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cq7KjeS1k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pQKaJ4XDf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VtHoTfp6I\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"osaW_gmXC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"32\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lLGWQjSkK.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";const API_KEY=\"AIzaSyB_TdIqjz0lWgcLphFu3JtpPRnrRJ5jxuc\";const CHANNEL_ID=\"UCx_2Vso6Qz76n-w5KV8DZcA\";const UPLOADS_PLAYLIST_ID=`UU${CHANNEL_ID.slice(2)}`;const SHORTS_PLAYLIST_ID=`UUSH${CHANNEL_ID.slice(2)}`;const API_URL_UPLOADS=`https://www.googleapis.com/youtube/v3/playlistItems?key=${API_KEY}&playlistId=${UPLOADS_PLAYLIST_ID}&part=snippet,contentDetails&maxResults=50`;const API_URL_SHORTS=`https://www.googleapis.com/youtube/v3/playlistItems?key=${API_KEY}&playlistId=${SHORTS_PLAYLIST_ID}&part=snippet,contentDetails&maxResults=50`;const MAX_AGE=24*60*60*1e3// 24 hours\n;// Variable to specify which video to pull data from\nconst VIDEO_INDEX=0// Change this to 1, 2, etc. to get the second, third, etc. long-form video\n;async function fetchVideoData(videoIndex){let nextPageToken=\"\";let uploadsData={items:[]};let shortsData={items:[]};let isFetching=true;let pagesFetched=0;while(isFetching){try{const[uploadsResponse,shortsResponse]=await Promise.all([fetch(`${API_URL_UPLOADS}&pageToken=${nextPageToken}`),fetch(API_URL_SHORTS)]);const[uploadsPageData,shortsDataPage]=await Promise.all([uploadsResponse.json(),shortsResponse.json()]);uploadsData.items.push(...uploadsPageData.items);nextPageToken=uploadsPageData.nextPageToken;shortsData=shortsDataPage;pagesFetched++;isFetching=nextPageToken&&uploadsData.items.length<videoIndex+1&&pagesFetched<10// Fetch until we have enough videos or reach page limit\n;}catch(error){console.error(\"Error fetching video:\",error);return null;}}const shortsVideoIds=new Set(shortsData.items.map(item=>item.contentDetails.videoId));const longFormVideos=uploadsData.items.filter(item=>!shortsVideoIds.has(item.contentDetails.videoId));return longFormVideos.length>videoIndex?longFormVideos[videoIndex]:null;}function cleanTitle(title){title=title.replace(/\\s\\|\\sEp\\s\\d{4}$/,\"\");return title.length>50?title.substring(0,47)+\"...\":title;}function storeDataInLocalStorage(key,data){localStorage.setItem(key,JSON.stringify({timestamp:Date.now(),data}));}function getDataFromLocalStorage(key,maxAge){const storedData=localStorage.getItem(key);if(!storedData)return null;const{timestamp,data}=JSON.parse(storedData);return Date.now()-timestamp<maxAge?data:null;}function useYouTubeData(key,fetchData,cleanData){const[data,setData]=useState(\"Loading...\");useEffect(()=>{async function fetchDataAndCache(){const cacheKey=`${key}_${VIDEO_INDEX}`;const cachedData=getDataFromLocalStorage(cacheKey,MAX_AGE);if(cachedData){setData(cachedData);return;}const video=await fetchData(VIDEO_INDEX);if(video){const cleanedData=cleanData(video);setData(cleanedData);storeDataInLocalStorage(cacheKey,cleanedData);}else{setData(\"No long-form videos found\");}}fetchDataAndCache();},[key]);return data;}export function useYouTubeVideoTitle(){return useYouTubeData(\"youtubeVideoTitle\",fetchVideoData,video=>cleanTitle(video.snippet.title));}export function useYouTubeVideoDescription(){return useYouTubeData(\"youtubeVideoDescription\",fetchVideoData,video=>{let description=video.snippet.description;return description.length>190?description.substring(0,190)+\"...\":description;});}export function useYouTubeVideoLink(){return useYouTubeData(\"youtubeVideoLink\",fetchVideoData,video=>`https://www.youtube.com/watch?v=${video.contentDetails.videoId}`);}export function useYouTubeVideoThumbnail(){return useYouTubeData(\"youtubeVideoThumbnail\",fetchVideoData,video=>video.snippet.thumbnails.high.url);}export function YouTubeTitleOverride(){const title=useYouTubeVideoTitle();return{text:title};}export function YouTubeDescriptionOverride(){const description=useYouTubeVideoDescription();return{text:description};}export function YouTubeLinkOverride(props){const link=useYouTubeVideoLink();const{onClick}=props;return{onClick:()=>{if(link)window.open(link,\"_blank\");if(onClick)onClick();}};}export function YouTubeThumbnailOverride(props){const thumbnail=useYouTubeVideoThumbnail();const imageRef=useRef();useEffect(()=>{if(imageRef.current&&thumbnail)imageRef.current.src=thumbnail;},[thumbnail]);return{ref:imageRef};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withYouTubeTitleOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeTitleOverride(props)});};}withYouTubeTitleOverride.displayName=\"YouTubeTitleOverride\";export function withYouTubeDescriptionOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeDescriptionOverride(props)});};}withYouTubeDescriptionOverride.displayName=\"YouTubeDescriptionOverride\";export function withYouTubeLinkOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeLinkOverride(props)});};}withYouTubeLinkOverride.displayName=\"YouTubeLinkOverride\";export function withYouTubeThumbnailOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeThumbnailOverride(props)});};}withYouTubeThumbnailOverride.displayName=\"YouTubeThumbnailOverride\";\nexport const __FramerMetadata__ = {\"exports\":{\"useYouTubeVideoThumbnail\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoLink\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeThumbnailOverride\":{\"type\":\"override\",\"name\":\"YouTubeThumbnailOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeLinkOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeLinkOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeDescriptionOverride\":{\"type\":\"override\",\"name\":\"YouTubeDescriptionOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeTitleOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeTitleOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeDescriptionOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeDescriptionOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoDescription\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoTitle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeLinkOverride\":{\"type\":\"override\",\"name\":\"YouTubeLinkOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeTitleOverride\":{\"type\":\"override\",\"name\":\"YouTubeTitleOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeThumbnailOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeThumbnailOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YoutubeData.map", "// Generated by Framer (1d71865)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withYouTubeDescriptionOverride,withYouTubeTitleOverride}from\"https://framerusercontent.com/modules/A4CtvTT0WLEI1eozftkd/Hrf209oHkvsZkOGWJmnB/YoutubeData.js\";import{withYouTubeLinkOverride}from\"https://framerusercontent.com/modules/SvGZGPBgTHF4tMRDL2g2/RaFLus3jsPSVoUYPhZ8S/YoutubeData2.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/2pdGeB4xDJhwqWVrDzlV/eQkSBuzHXCSG2Y0Mc64s/GygTAX8TE.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qvZtbGsEKPBlQHMrftya/BQpIkdb2pxDYx6KVbLPL/Syt1ipHc1.js\";const RichTextWithYouTubeTitleOverride=withYouTubeTitleOverride(RichText);const RichTextWithYouTubeDescriptionOverride=withYouTubeDescriptionOverride(RichText);const MotionDivWithYouTubeLinkOverride=withYouTubeLinkOverride(motion.div);const enabledGestures={Wey_VFcJx:{hover:true}};const cycleOrder=[\"Wey_VFcJx\"];const serializationHash=\"framer-RCddw\";const variantClassNames={Wey_VFcJx:\"framer-v-1dsvrec\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.44,0,.22,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vcOpbE5yzhms2gTB10,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Wey_VFcJx\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",pixelHeight:1038,pixelWidth:1826,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/tJetCQDFVUrX3X05tBY5loMFnk.jpeg\",srcSet:\"https://framerusercontent.com/images/tJetCQDFVUrX3X05tBY5loMFnk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/tJetCQDFVUrX3X05tBY5loMFnk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tJetCQDFVUrX3X05tBY5loMFnk.jpeg 1826w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1dsvrec\",className,classNames),\"data-framer-name\":\"Title Only\",layoutDependency:layoutDependency,layoutId:\"Wey_VFcJx\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({\"Wey_VFcJx-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oki0xz\",\"data-framer-name\":\"overlay\",layoutDependency:layoutDependency,layoutId:\"eymxubSBR\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%)\"},variants:{\"Wey_VFcJx-hover\":{background:\"linear-gradient(180deg, rgba(107, 120, 102, 0.5) 0%, rgba(108, 121, 103, 0.8) 100%)\"}}}),/*#__PURE__*/_jsxs(MotionDivWithYouTubeLinkOverride,{className:\"framer-dpjvnm\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"VoWggHihg\",children:[/*#__PURE__*/_jsx(RichTextWithYouTubeTitleOverride,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-14pobu5\",\"data-styles-preset\":\"Syt1ipHc1\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233)))\"},children:\"Resource title goes here\"})}),className:\"framer-1qsl0fa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lNocO1Cf1\",style:{\"--extracted-a0htzi\":\"var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vcOpbE5yzhms2gTB10,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithYouTubeDescriptionOverride,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233)))\"},children:\"Resource description goes here\"})}),className:\"framer-137gegm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AE_of5EGn\",style:{\"--extracted-r6o4lv\":\"var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},transformTemplate:transformTemplate1,variants:{\"Wey_VFcJx-hover\":{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"Wey_VFcJx-hover\":{transformTemplate:undefined}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RCddw.framer-1eh8nws, .framer-RCddw .framer-1eh8nws { display: block; }\",\".framer-RCddw.framer-1dsvrec { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 320px; justify-content: flex-end; overflow: hidden; padding: 20px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RCddw .framer-1oki0xz { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-RCddw .framer-dpjvnm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-RCddw .framer-1qsl0fa { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RCddw .framer-137gegm { bottom: -120px; flex: none; height: auto; left: 50%; position: absolute; white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RCddw.framer-1dsvrec, .framer-RCddw .framer-dpjvnm { gap: 0px; } .framer-RCddw.framer-1dsvrec > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-RCddw.framer-1dsvrec > :first-child, .framer-RCddw .framer-dpjvnm > :first-child { margin-top: 0px; } .framer-RCddw.framer-1dsvrec > :last-child, .framer-RCddw .framer-dpjvnm > :last-child { margin-bottom: 0px; } .framer-RCddw .framer-dpjvnm > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-RCddw.framer-v-1dsvrec.hover .framer-137gegm { bottom: unset; left: unset; position: relative; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 320\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dtePWGu7t\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroVRb7Bf52=withCSS(Component,css,\"framer-RCddw\");export default FrameroVRb7Bf52;FrameroVRb7Bf52.displayName=\"Latest resource card 1\";FrameroVRb7Bf52.defaultProps={height:320,width:320};addFonts(FrameroVRb7Bf52,[{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\":\"FrameroVRb7Bf52\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"320\",\"framerIntrinsicHeight\":\"320\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dtePWGu7t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oVRb7Bf52.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";const API_KEY=\"AIzaSyB_TdIqjz0lWgcLphFu3JtpPRnrRJ5jxuc\";const CHANNEL_ID=\"UCx_2Vso6Qz76n-w5KV8DZcA\";const UPLOADS_PLAYLIST_ID=`UU${CHANNEL_ID.slice(2)}`;const SHORTS_PLAYLIST_ID=`UUSH${CHANNEL_ID.slice(2)}`;const API_URL_UPLOADS=`https://www.googleapis.com/youtube/v3/playlistItems?key=${API_KEY}&playlistId=${UPLOADS_PLAYLIST_ID}&part=snippet,contentDetails&maxResults=50`;const API_URL_SHORTS=`https://www.googleapis.com/youtube/v3/playlistItems?key=${API_KEY}&playlistId=${SHORTS_PLAYLIST_ID}&part=snippet,contentDetails&maxResults=50`;const MAX_AGE=24*60*60*1e3// 24 hours\n;// Variable to specify which video to pull data from\nconst VIDEO_INDEX=2// Change this to 1, 2, etc. to get the second, third, etc. long-form video\n;async function fetchVideoData(videoIndex){let nextPageToken=\"\";let uploadsData={items:[]};let shortsData={items:[]};let isFetching=true;let pagesFetched=0;while(isFetching){try{const[uploadsResponse,shortsResponse]=await Promise.all([fetch(`${API_URL_UPLOADS}&pageToken=${nextPageToken}`),fetch(API_URL_SHORTS)]);const[uploadsPageData,shortsDataPage]=await Promise.all([uploadsResponse.json(),shortsResponse.json()]);uploadsData.items.push(...uploadsPageData.items);nextPageToken=uploadsPageData.nextPageToken;shortsData=shortsDataPage;pagesFetched++;isFetching=nextPageToken&&uploadsData.items.length<videoIndex+1&&pagesFetched<10// Fetch until we have enough videos or reach page limit\n;}catch(error){console.error(\"Error fetching video:\",error);return null;}}const shortsVideoIds=new Set(shortsData.items.map(item=>item.contentDetails.videoId));const longFormVideos=uploadsData.items.filter(item=>!shortsVideoIds.has(item.contentDetails.videoId));return longFormVideos.length>videoIndex?longFormVideos[videoIndex]:null;}function cleanTitle(title){title=title.replace(/\\s\\|\\sEp\\s\\d{4}$/,\"\");return title.length>50?title.substring(0,47)+\"...\":title;}function storeDataInLocalStorage(key,data){localStorage.setItem(key,JSON.stringify({timestamp:Date.now(),data}));}function getDataFromLocalStorage(key,maxAge){const storedData=localStorage.getItem(key);if(!storedData)return null;const{timestamp,data}=JSON.parse(storedData);return Date.now()-timestamp<maxAge?data:null;}function useYouTubeData(key,fetchData,cleanData){const[data,setData]=useState(\"Loading...\");useEffect(()=>{async function fetchDataAndCache(){const cacheKey=`${key}_${VIDEO_INDEX}`;const cachedData=getDataFromLocalStorage(cacheKey,MAX_AGE);if(cachedData){setData(cachedData);return;}const video=await fetchData(VIDEO_INDEX);if(video){const cleanedData=cleanData(video);setData(cleanedData);storeDataInLocalStorage(cacheKey,cleanedData);}else{setData(\"No long-form videos found\");}}fetchDataAndCache();},[key]);return data;}export function useYouTubeVideoTitle(){return useYouTubeData(\"youtubeVideoTitle\",fetchVideoData,video=>cleanTitle(video.snippet.title));}export function useYouTubeVideoDescription(){return useYouTubeData(\"youtubeVideoDescription\",fetchVideoData,video=>{let description=video.snippet.description;return description.length>190?description.substring(0,190)+\"...\":description;});}export function useYouTubeVideoLink(){return useYouTubeData(\"youtubeVideoLink\",fetchVideoData,video=>`https://www.youtube.com/watch?v=${video.contentDetails.videoId}`);}export function useYouTubeVideoThumbnail(){return useYouTubeData(\"youtubeVideoThumbnail\",fetchVideoData,video=>video.snippet.thumbnails.high.url);}export function YouTubeTitleOverride(){const title=useYouTubeVideoTitle();return{text:title};}export function YouTubeDescriptionOverride(){const description=useYouTubeVideoDescription();return{text:description};}export function YouTubeLinkOverride(props){const link=useYouTubeVideoLink();const{onClick}=props;return{onClick:()=>{if(link)window.open(link,\"_blank\");if(onClick)onClick();}};}export function YouTubeThumbnailOverride(props){const thumbnail=useYouTubeVideoThumbnail();const imageRef=useRef();useEffect(()=>{if(imageRef.current&&thumbnail)imageRef.current.src=thumbnail;},[thumbnail]);return{ref:imageRef};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withYouTubeTitleOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeTitleOverride(props)});};}withYouTubeTitleOverride.displayName=\"YouTubeTitleOverride\";export function withYouTubeDescriptionOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeDescriptionOverride(props)});};}withYouTubeDescriptionOverride.displayName=\"YouTubeDescriptionOverride\";export function withYouTubeLinkOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeLinkOverride(props)});};}withYouTubeLinkOverride.displayName=\"YouTubeLinkOverride\";export function withYouTubeThumbnailOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeThumbnailOverride(props)});};}withYouTubeThumbnailOverride.displayName=\"YouTubeThumbnailOverride\";\nexport const __FramerMetadata__ = {\"exports\":{\"useYouTubeVideoLink\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeLinkOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeLinkOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeThumbnailOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeThumbnailOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeDescriptionOverride\":{\"type\":\"override\",\"name\":\"YouTubeDescriptionOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeThumbnailOverride\":{\"type\":\"override\",\"name\":\"YouTubeThumbnailOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeLinkOverride\":{\"type\":\"override\",\"name\":\"YouTubeLinkOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeDescriptionOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeDescriptionOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeTitleOverride\":{\"type\":\"override\",\"name\":\"YouTubeTitleOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoThumbnail\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoDescription\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoTitle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeTitleOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeTitleOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YoutubeData3.map", "// Generated by Framer (1d71865)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withYouTubeDescriptionOverride,withYouTubeLinkOverride,withYouTubeTitleOverride}from\"https://framerusercontent.com/modules/LH7YK2GecMMGQCum0M22/s8acP9Au0FJXl3w8eKR2/YoutubeData3.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/2pdGeB4xDJhwqWVrDzlV/eQkSBuzHXCSG2Y0Mc64s/GygTAX8TE.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qvZtbGsEKPBlQHMrftya/BQpIkdb2pxDYx6KVbLPL/Syt1ipHc1.js\";const RichTextWithYouTubeTitleOverride=withYouTubeTitleOverride(RichText);const RichTextWithYouTubeDescriptionOverride=withYouTubeDescriptionOverride(RichText);const MotionDivWithYouTubeLinkOverride=withYouTubeLinkOverride(motion.div);const enabledGestures={UrsKb__DC:{hover:true}};const cycleOrder=[\"UrsKb__DC\"];const serializationHash=\"framer-GfIna\";const variantClassNames={UrsKb__DC:\"framer-v-e1tb3j\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.44,0,.22,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,title,width,...props})=>{var _ref;return{...props,vcOpbE5yz:(_ref=title!==null&&title!==void 0?title:props.vcOpbE5yz)!==null&&_ref!==void 0?_ref:\"Resource title goes here\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vcOpbE5yz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UrsKb__DC\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",pixelHeight:1550,pixelWidth:1626,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/FEsdDtnOXswNTc1uRujOwJGV40w.jpeg\",srcSet:\"https://framerusercontent.com/images/FEsdDtnOXswNTc1uRujOwJGV40w.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/FEsdDtnOXswNTc1uRujOwJGV40w.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FEsdDtnOXswNTc1uRujOwJGV40w.jpeg 1626w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-e1tb3j\",className,classNames),\"data-framer-name\":\"Title Only\",layoutDependency:layoutDependency,layoutId:\"UrsKb__DC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({\"UrsKb__DC-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(MotionDivWithYouTubeLinkOverride,{className:\"framer-4fjnpq\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"em33bcQpx\",children:[/*#__PURE__*/_jsx(RichTextWithYouTubeTitleOverride,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-14pobu5\",\"data-styles-preset\":\"Syt1ipHc1\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233)))\"},children:\"Resource title goes here\"})}),className:\"framer-1gnz70i\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"s_ZnkZsV6\",style:{\"--extracted-a0htzi\":\"var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vcOpbE5yz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithYouTubeDescriptionOverride,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233)))\"},children:\"Resource description goes here\"})}),className:\"framer-m03xy8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"twcLptdFJ\",style:{\"--extracted-r6o4lv\":\"var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},transformTemplate:transformTemplate1,variants:{\"UrsKb__DC-hover\":{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"UrsKb__DC-hover\":{transformTemplate:undefined}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nxhu06\",\"data-framer-name\":\"overlay\",layoutDependency:layoutDependency,layoutId:\"cdKfuAflI\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{\"UrsKb__DC-hover\":{background:\"linear-gradient(180deg, rgba(107, 120, 102, 0.5) 0%, rgba(108, 121, 103, 0.8) 100%)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GfIna.framer-17pcg0i, .framer-GfIna .framer-17pcg0i { display: block; }\",\".framer-GfIna.framer-e1tb3j { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 320px; justify-content: flex-end; overflow: hidden; padding: 20px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GfIna .framer-4fjnpq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-GfIna .framer-1gnz70i { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GfIna .framer-m03xy8 { bottom: -120px; flex: none; height: auto; left: 50%; position: absolute; white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-GfIna .framer-nxhu06 { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GfIna.framer-e1tb3j, .framer-GfIna .framer-4fjnpq { gap: 0px; } .framer-GfIna.framer-e1tb3j > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-GfIna.framer-e1tb3j > :first-child, .framer-GfIna .framer-4fjnpq > :first-child { margin-top: 0px; } .framer-GfIna.framer-e1tb3j > :last-child, .framer-GfIna .framer-4fjnpq > :last-child { margin-bottom: 0px; } .framer-GfIna .framer-4fjnpq > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-GfIna.framer-v-e1tb3j.hover .framer-m03xy8 { bottom: unset; left: unset; position: relative; }\",\".framer-GfIna.framer-v-e1tb3j.hover .framer-nxhu06 { will-change: var(--framer-will-change-override, transform); }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 320\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"RKXDdRAX6\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"vcOpbE5yz\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxnjV3dv8M=withCSS(Component,css,\"framer-GfIna\");export default FramerxnjV3dv8M;FramerxnjV3dv8M.displayName=\"Latest resource card 3\";FramerxnjV3dv8M.defaultProps={height:320,width:320};addPropertyControls(FramerxnjV3dv8M,{vcOpbE5yz:{defaultValue:\"Resource title goes here\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerxnjV3dv8M,[{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\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxnjV3dv8M\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RKXDdRAX6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"vcOpbE5yz\\\":\\\"title\\\"}\",\"framerIntrinsicHeight\":\"320\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"320\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xnjV3dv8M.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";const API_KEY=\"AIzaSyB_TdIqjz0lWgcLphFu3JtpPRnrRJ5jxuc\";const CHANNEL_ID=\"UCx_2Vso6Qz76n-w5KV8DZcA\";const UPLOADS_PLAYLIST_ID=`UU${CHANNEL_ID.slice(2)}`;const SHORTS_PLAYLIST_ID=`UUSH${CHANNEL_ID.slice(2)}`;const API_URL_UPLOADS=`https://www.googleapis.com/youtube/v3/playlistItems?key=${API_KEY}&playlistId=${UPLOADS_PLAYLIST_ID}&part=snippet,contentDetails&maxResults=50`;const API_URL_SHORTS=`https://www.googleapis.com/youtube/v3/playlistItems?key=${API_KEY}&playlistId=${SHORTS_PLAYLIST_ID}&part=snippet,contentDetails&maxResults=50`;const MAX_AGE=24*60*60*1e3// 24 hours\n;// Variable to specify which video to pull data from\nconst VIDEO_INDEX=4// Change this to 1, 2, etc. to get the second, third, etc. long-form video\n;async function fetchVideoData(videoIndex){let nextPageToken=\"\";let uploadsData={items:[]};let shortsData={items:[]};let isFetching=true;let pagesFetched=0;while(isFetching){try{const[uploadsResponse,shortsResponse]=await Promise.all([fetch(`${API_URL_UPLOADS}&pageToken=${nextPageToken}`),fetch(API_URL_SHORTS)]);const[uploadsPageData,shortsDataPage]=await Promise.all([uploadsResponse.json(),shortsResponse.json()]);uploadsData.items.push(...uploadsPageData.items);nextPageToken=uploadsPageData.nextPageToken;shortsData=shortsDataPage;pagesFetched++;isFetching=nextPageToken&&uploadsData.items.length<videoIndex+1&&pagesFetched<10// Fetch until we have enough videos or reach page limit\n;}catch(error){console.error(\"Error fetching video:\",error);return null;}}const shortsVideoIds=new Set(shortsData.items.map(item=>item.contentDetails.videoId));const longFormVideos=uploadsData.items.filter(item=>!shortsVideoIds.has(item.contentDetails.videoId));return longFormVideos.length>videoIndex?longFormVideos[videoIndex]:null;}function cleanTitle(title){title=title.replace(/\\s\\|\\sEp\\s\\d{4}$/,\"\");return title.length>50?title.substring(0,47)+\"...\":title;}function storeDataInLocalStorage(key,data){localStorage.setItem(key,JSON.stringify({timestamp:Date.now(),data}));}function getDataFromLocalStorage(key,maxAge){const storedData=localStorage.getItem(key);if(!storedData)return null;const{timestamp,data}=JSON.parse(storedData);return Date.now()-timestamp<maxAge?data:null;}function useYouTubeData(key,fetchData,cleanData){const[data,setData]=useState(\"Loading...\");useEffect(()=>{async function fetchDataAndCache(){const cacheKey=`${key}_${VIDEO_INDEX}`;const cachedData=getDataFromLocalStorage(cacheKey,MAX_AGE);if(cachedData){setData(cachedData);return;}const video=await fetchData(VIDEO_INDEX);if(video){const cleanedData=cleanData(video);setData(cleanedData);storeDataInLocalStorage(cacheKey,cleanedData);}else{setData(\"No long-form videos found\");}}fetchDataAndCache();},[key]);return data;}export function useYouTubeVideoTitle(){return useYouTubeData(\"youtubeVideoTitle\",fetchVideoData,video=>cleanTitle(video.snippet.title));}export function useYouTubeVideoDescription(){return useYouTubeData(\"youtubeVideoDescription\",fetchVideoData,video=>{let description=video.snippet.description;return description.length>190?description.substring(0,190)+\"...\":description;});}export function useYouTubeVideoLink(){return useYouTubeData(\"youtubeVideoLink\",fetchVideoData,video=>`https://www.youtube.com/watch?v=${video.contentDetails.videoId}`);}export function useYouTubeVideoThumbnail(){return useYouTubeData(\"youtubeVideoThumbnail\",fetchVideoData,video=>video.snippet.thumbnails.high.url);}export function YouTubeTitleOverride(){const title=useYouTubeVideoTitle();return{text:title};}export function YouTubeDescriptionOverride(){const description=useYouTubeVideoDescription();return{text:description};}export function YouTubeLinkOverride(props){const link=useYouTubeVideoLink();const{onClick}=props;return{onClick:()=>{if(link)window.open(link,\"_blank\");if(onClick)onClick();}};}export function YouTubeThumbnailOverride(props){const thumbnail=useYouTubeVideoThumbnail();const imageRef=useRef();useEffect(()=>{if(imageRef.current&&thumbnail)imageRef.current.src=thumbnail;},[thumbnail]);return{ref:imageRef};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withYouTubeTitleOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeTitleOverride(props)});};}withYouTubeTitleOverride.displayName=\"YouTubeTitleOverride\";export function withYouTubeDescriptionOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeDescriptionOverride(props)});};}withYouTubeDescriptionOverride.displayName=\"YouTubeDescriptionOverride\";export function withYouTubeLinkOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeLinkOverride(props)});};}withYouTubeLinkOverride.displayName=\"YouTubeLinkOverride\";export function withYouTubeThumbnailOverride(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...YouTubeThumbnailOverride(props)});};}withYouTubeThumbnailOverride.displayName=\"YouTubeThumbnailOverride\";\nexport const __FramerMetadata__ = {\"exports\":{\"YouTubeThumbnailOverride\":{\"type\":\"override\",\"name\":\"YouTubeThumbnailOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoTitle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoLink\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoDescription\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeDescriptionOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeDescriptionOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeLinkOverride\":{\"type\":\"override\",\"name\":\"YouTubeLinkOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeTitleOverride\":{\"type\":\"override\",\"name\":\"YouTubeTitleOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeTitleOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeTitleOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeLinkOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeLinkOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useYouTubeVideoThumbnail\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withYouTubeThumbnailOverride\":{\"type\":\"reactHoc\",\"name\":\"withYouTubeThumbnailOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"YouTubeDescriptionOverride\":{\"type\":\"override\",\"name\":\"YouTubeDescriptionOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YoutubeData5.map", "// Generated by Framer (1d71865)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withYouTubeDescriptionOverride,withYouTubeLinkOverride,withYouTubeTitleOverride}from\"https://framerusercontent.com/modules/wcIQjfIPU2pGed5UraIj/ZD1bKruZUnIhlzwolZuk/YoutubeData5.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/2pdGeB4xDJhwqWVrDzlV/eQkSBuzHXCSG2Y0Mc64s/GygTAX8TE.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qvZtbGsEKPBlQHMrftya/BQpIkdb2pxDYx6KVbLPL/Syt1ipHc1.js\";const RichTextWithYouTubeTitleOverride=withYouTubeTitleOverride(RichText);const RichTextWithYouTubeDescriptionOverride=withYouTubeDescriptionOverride(RichText);const MotionDivWithYouTubeLinkOverride=withYouTubeLinkOverride(motion.div);const enabledGestures={p_zVET_e4:{hover:true}};const cycleOrder=[\"p_zVET_e4\"];const serializationHash=\"framer-b2LiH\";const variantClassNames={p_zVET_e4:\"framer-v-7k4rgf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.44,0,.22,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,title,width,...props})=>{var _ref;return{...props,vcOpbE5yz:(_ref=title!==null&&title!==void 0?title:props.vcOpbE5yz)!==null&&_ref!==void 0?_ref:\"Resource title goes here\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vcOpbE5yz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"p_zVET_e4\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",pixelHeight:1662,pixelWidth:1936,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/dlAeVtIEAhCBadT5dkMDoyfLRQ.jpeg\",srcSet:\"https://framerusercontent.com/images/dlAeVtIEAhCBadT5dkMDoyfLRQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/dlAeVtIEAhCBadT5dkMDoyfLRQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dlAeVtIEAhCBadT5dkMDoyfLRQ.jpeg 1936w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-7k4rgf\",className,classNames),\"data-framer-name\":\"Title Only\",layoutDependency:layoutDependency,layoutId:\"p_zVET_e4\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({\"p_zVET_e4-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(MotionDivWithYouTubeLinkOverride,{className:\"framer-98n2fc\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"PqIV4XkHe\",children:[/*#__PURE__*/_jsx(RichTextWithYouTubeTitleOverride,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-14pobu5\",\"data-styles-preset\":\"Syt1ipHc1\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233)))\"},children:\"Resource title goes here\"})}),className:\"framer-1g6f1fw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TU8NJZZNV\",style:{\"--extracted-a0htzi\":\"var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vcOpbE5yz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithYouTubeDescriptionOverride,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vuyne3\",\"data-styles-preset\":\"GygTAX8TE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233)))\"},children:\"Resource description goes here\"})}),className:\"framer-uuq71j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EmoHOs7xf\",style:{\"--extracted-r6o4lv\":\"var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(246, 244, 233))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},transformTemplate:transformTemplate1,variants:{\"p_zVET_e4-hover\":{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"p_zVET_e4-hover\":{transformTemplate:undefined}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m8tqmw\",\"data-framer-name\":\"overlay\",layoutDependency:layoutDependency,layoutId:\"wCJkO6Aep\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{\"p_zVET_e4-hover\":{background:\"linear-gradient(180deg, rgba(107, 120, 102, 0.5) 0%, rgba(108, 121, 103, 0.8) 100%)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-b2LiH.framer-30ixp5, .framer-b2LiH .framer-30ixp5 { display: block; }\",\".framer-b2LiH.framer-7k4rgf { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 320px; justify-content: flex-end; overflow: hidden; padding: 20px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-b2LiH .framer-98n2fc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-b2LiH .framer-1g6f1fw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-b2LiH .framer-uuq71j { bottom: -120px; flex: none; height: auto; left: 50%; position: absolute; white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-b2LiH .framer-m8tqmw { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-b2LiH.framer-7k4rgf, .framer-b2LiH .framer-98n2fc { gap: 0px; } .framer-b2LiH.framer-7k4rgf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-b2LiH.framer-7k4rgf > :first-child, .framer-b2LiH .framer-98n2fc > :first-child { margin-top: 0px; } .framer-b2LiH.framer-7k4rgf > :last-child, .framer-b2LiH .framer-98n2fc > :last-child { margin-bottom: 0px; } .framer-b2LiH .framer-98n2fc > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-b2LiH.framer-v-7k4rgf.hover .framer-uuq71j { bottom: unset; left: unset; position: relative; }\",\".framer-b2LiH.framer-v-7k4rgf.hover .framer-m8tqmw { will-change: var(--framer-will-change-override, transform); }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 320\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"MOJb3qKr2\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"vcOpbE5yz\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framery8otGGrlq=withCSS(Component,css,\"framer-b2LiH\");export default Framery8otGGrlq;Framery8otGGrlq.displayName=\"Latest resource card 5\";Framery8otGGrlq.defaultProps={height:320,width:320};addPropertyControls(Framery8otGGrlq,{vcOpbE5yz:{defaultValue:\"Resource title goes here\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Framery8otGGrlq,[{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\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framery8otGGrlq\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MOJb3qKr2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"320\",\"framerVariables\":\"{\\\"vcOpbE5yz\\\":\\\"title\\\"}\",\"framerIntrinsicHeight\":\"320\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./y8otGGrlq.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Onest-600\",\"GF;Onest-900\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPhKxiZtxFMQWXgSQ.woff2\",weight:\"600\"},{family:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPhXBiZtxFMQWXgSQ.woff2\",weight:\"900\"}]}];export const css=['.framer-hHFua .framer-styles-preset-1st3muy:not(.rich-text-wrapper), .framer-hHFua .framer-styles-preset-1st3muy.rich-text-wrapper h6 { --framer-font-family: \"Onest\", \"Onest Placeholder\", sans-serif; --framer-font-family-bold: \"Onest\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: -0.015em; --framer-line-height: 150%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, #0a0a0a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-hHFua .framer-styles-preset-1st3muy:not(.rich-text-wrapper), .framer-hHFua .framer-styles-preset-1st3muy.rich-text-wrapper h6 { --framer-font-family: \"Onest\", \"Onest Placeholder\", sans-serif; --framer-font-family-bold: \"Onest\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: -0.015em; --framer-line-height: 150%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, #0a0a0a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-hHFua .framer-styles-preset-1st3muy:not(.rich-text-wrapper), .framer-hHFua .framer-styles-preset-1st3muy.rich-text-wrapper h6 { --framer-font-family: \"Onest\", \"Onest Placeholder\", sans-serif; --framer-font-family-bold: \"Onest\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: -0.015em; --framer-line-height: 150%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, #0a0a0a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-hHFua\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Helvetica Now Display Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Helvetica Now Display Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/o52mQz7hzSMS9eN0V6qFgpHUfzw.woff2\"}]}];export const css=['.framer-4bL0P .framer-styles-preset-cjrnga:not(.rich-text-wrapper), .framer-4bL0P .framer-styles-preset-cjrnga.rich-text-wrapper p { --framer-font-family: \"Helvetica Now Display Bold\", \"Helvetica Now Display Bold Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, #0a0a0a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-4bL0P .framer-styles-preset-cjrnga:not(.rich-text-wrapper), .framer-4bL0P .framer-styles-preset-cjrnga.rich-text-wrapper p { --framer-font-family: \"Helvetica Now Display Bold\", \"Helvetica Now Display Bold Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, #0a0a0a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-4bL0P .framer-styles-preset-cjrnga:not(.rich-text-wrapper), .framer-4bL0P .framer-styles-preset-cjrnga.rich-text-wrapper p { --framer-font-family: \"Helvetica Now Display Bold\", \"Helvetica Now Display Bold Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, #0a0a0a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-4bL0P\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import LatestResourceCard4 from\"#framer/local/canvasComponent/bsTrAfYMt/bsTrAfYMt.js\";import LatestResourceCard6 from\"#framer/local/canvasComponent/dwUNCe3GI/dwUNCe3GI.js\";import Footer10 from\"#framer/local/canvasComponent/ESHy_AM2t/ESHy_AM2t.js\";import Event from\"#framer/local/canvasComponent/g93kCLAlq/g93kCLAlq.js\";import LatestResourceCard2 from\"#framer/local/canvasComponent/hms2gTB10/hms2gTB10.js\";import ButtonGhost from\"#framer/local/canvasComponent/lcIRM4XWN/lcIRM4XWN.js\";import PodcastIcon from\"#framer/local/canvasComponent/lLGWQjSkK/lLGWQjSkK.js\";import LatestResourceCard1 from\"#framer/local/canvasComponent/oVRb7Bf52/oVRb7Bf52.js\";import BookSection from\"#framer/local/canvasComponent/PjEnA40tK/PjEnA40tK.js\";import NavbarDropdown03 from\"#framer/local/canvasComponent/UmGQ8JSh4/UmGQ8JSh4.js\";import ButtonOutline from\"#framer/local/canvasComponent/VIEX2I4X4/VIEX2I4X4.js\";import LatestResourceCard3 from\"#framer/local/canvasComponent/xnjV3dv8M/xnjV3dv8M.js\";import LatestResourceCard5 from\"#framer/local/canvasComponent/y8otGGrlq/y8otGGrlq.js\";import*as sharedStyle4 from\"#framer/local/css/bHTcuHzge/bHTcuHzge.js\";import*as sharedStyle from\"#framer/local/css/hArDDRNVm/hArDDRNVm.js\";import*as sharedStyle2 from\"#framer/local/css/QodQLACi6/QodQLACi6.js\";import*as sharedStyle3 from\"#framer/local/css/rncFq5P_8/rncFq5P_8.js\";import*as sharedStyle1 from\"#framer/local/css/Sv9VOC34f/Sv9VOC34f.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarDropdown03Fonts=getFonts(NavbarDropdown03);const NavbarDropdown03WithVariantAppearEffect=withVariantAppearEffect(NavbarDropdown03);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonOutlineFonts=getFonts(ButtonOutline);const ButtonGhostFonts=getFonts(ButtonGhost);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const EventFonts=getFonts(Event);const BookSectionFonts=getFonts(BookSection);const LatestResourceCard1Fonts=getFonts(LatestResourceCard1);const LatestResourceCard2Fonts=getFonts(LatestResourceCard2);const LatestResourceCard3Fonts=getFonts(LatestResourceCard3);const LatestResourceCard4Fonts=getFonts(LatestResourceCard4);const LatestResourceCard5Fonts=getFonts(LatestResourceCard5);const LatestResourceCard6Fonts=getFonts(LatestResourceCard6);const PodcastIconFonts=getFonts(PodcastIcon);const EmbedFonts=getFonts(Embed);const TickerFonts=getFonts(Ticker);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const Footer10Fonts=getFonts(Footer10);const breakpoints={WQLkyLRf1:\"(min-width: 1200px)\",ZEQfwHMlE:\"(min-width: 810px) and (max-width: 1199px)\",zKrFpwa7N:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-sNMDG\";const variantClassNames={WQLkyLRf1:\"framer-v-72rtr7\",ZEQfwHMlE:\"framer-v-1j3i7qj\",zKrFpwa7N:\"framer-v-gsths5\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:.2,duration:1.5,ease:[.35,0,0,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:30,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:50,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:70,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:30,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:30,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:50,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:50,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:70,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:70,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"zKrFpwa7N\",Tablet:\"ZEQfwHMlE\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,xWk18BpZJBZEP0l5uS,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);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 ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"zKrFpwa7N\")return false;return true;};const elementId=useRouteElementId(\"sfuK_X2ij\");const elementId1=useRouteElementId(\"XNzfPSQ8g\");const ref2=React.useRef(null);const router=useRouter();const elementId2=useRouteElementId(\"ENw7bymGF\");const ref3=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"ZEQfwHMlE\",\"zKrFpwa7N\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"zKrFpwa7N\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"ZEQfwHMlE\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bmpzhh-container\",layoutScroll:true,nodeId:\"ZE9pWQWKo\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zKrFpwa7N:{__framer__targets:[{offset:100,ref:ref1,target:\"GBs_ZBfkQ\"}],variant:\"LR8wXsOPa\"}},children:/*#__PURE__*/_jsx(NavbarDropdown03WithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:100,ref:ref1,target:\"B0MTsL20Z\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"ZE9pWQWKo\",layoutId:\"ZE9pWQWKo\",style:{width:\"100%\"},variant:\"Sr2jutL_A\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1p10y5a\",\"data-framer-name\":\"Main\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(Image,{as:\"section\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),pixelHeight:2800,pixelWidth:4800,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/skMC5xIc8lCcAHRkrJ1aug9SN4.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/skMC5xIc8lCcAHRkrJ1aug9SN4.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/skMC5xIc8lCcAHRkrJ1aug9SN4.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/skMC5xIc8lCcAHRkrJ1aug9SN4.jpg?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/skMC5xIc8lCcAHRkrJ1aug9SN4.jpg?scale-down-to=4096&lossless=1 4096w,https://framerusercontent.com/images/skMC5xIc8lCcAHRkrJ1aug9SN4.jpg?lossless=1 4800w\"},className:\"framer-yn7vu9 hidden-gsths5\",\"data-framer-name\":\"Hero / Horizontal-01\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8oilla\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jiwzc7\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12o9nqp\",\"data-framer-name\":\"podcast\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"8.499\" y=\"1.996\" width=\"7.003\" height=\"12.505\" rx=\"3.5\" stroke=\"#FEF9F5\" style=\"stroke:color(display-p3 .9961 .9765 .9608);stroke-opacity:1\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.503 10.5A7.503 7.503 0 0 1 12 18.002v0a7.503 7.503 0 0 1-7.503-7.504M12 21.004v-3.002\" stroke=\"#FEF9F5\" style=\"stroke:color(display-p3 .9961 .9765 .9608);stroke-opacity:1\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cjrnga\",\"data-styles-preset\":\"hArDDRNVm\",style:{\"--framer-text-color\":\"var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(249, 246, 241))\"},children:\"Podcast Host\"})}),className:\"framer-xno6u2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lw78mx\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-4l4so4\",\"data-framer-name\":\"books\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4 19V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v11a1 1 0 0 1-1 1H6a2 2 0 0 0-2 2v0a2 2 0 0 0 2 2h14M8 17V3m11 18v-4\" stroke=\"#FEF9F5\" style=\"stroke:color(display-p3 .9961 .9765 .9608);stroke-opacity:1\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cjrnga\",\"data-styles-preset\":\"hArDDRNVm\",style:{\"--framer-text-color\":\"var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(249, 246, 241))\"},children:\"Author\"})}),className:\"framer-l9mbiy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vavaxt\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-bp5sw3\",\"data-framer-name\":\"public_speaking\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path clip-rule=\"evenodd\" d=\"m6.051 13.101 4.051-4.051A4.052 4.052 0 0 0 2 9.051a4.05 4.05 0 0 0 4.051 4.05Z\" stroke=\"#FEF9F5\" style=\"stroke:color(display-p3 .9961 .9765 .9608);stroke-opacity:1\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m9.865 9.287 5.061 6.694a.923.923 0 0 1-.084 1.21l-.652.652a.925.925 0 0 1-1.21.084l-6.694-5.06\" stroke=\"#FEF9F5\" style=\"stroke:color(display-p3 .9961 .9765 .9608);stroke-opacity:1\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m22 11-1.746-1.746a2.434 2.434 0 0 0-3.443 0v0a2.434 2.434 0 0 0 0 3.443l1.262 1.262 1.205 1.205a2.516 2.516 0 0 1 0 3.557v0a2.516 2.516 0 0 1-3.557 0l-1.205-1.205\" stroke=\"#FEF9F5\" style=\"stroke:color(display-p3 .9961 .9765 .9608);stroke-opacity:1\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cjrnga\",\"data-styles-preset\":\"hArDDRNVm\",style:{\"--framer-text-color\":\"var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(249, 246, 241))\"},children:\"Speaker\"})}),className:\"framer-sr115v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dkq0ls\",\"data-framer-name\":\"Container + Padding\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u8gkm9\",\"data-framer-name\":\"Layout\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t1n0m9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tpa5zw\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpZW1wb3MgSGVhZGxpbmUgTWVkaXVtIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Tiempos Headline Medium Regular\", \"Tiempos Headline Medium Regular Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\"},children:[\"Raising a \",/*#__PURE__*/_jsx(\"em\",{children:\"respectful\"}),\" ruckus for things\",/*#__PURE__*/_jsx(\"br\",{}),\"that matter\"]})}),className:\"framer-dqeb8n\",\"data-framer-appear-id\":\"dqeb8n\",fonts:[\"CUSTOM;Tiempos Headline Medium Regular\"],id:elementId,initial:animation1,optimized:true,ref:ref1,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nmz7i6\",\"data-styles-preset\":\"Sv9VOC34f\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(58, 58, 58, 0.7)\"},children:\"Analyzing culture, news, and politics\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(58, 58, 58, 0.7)\"},children:\"from a biblical perspective.\"})]})}),className:\"framer-1ulh1xz\",\"data-framer-appear-id\":\"1ulh1xz\",fonts:[\"Inter\"],initial:animation2,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-n1xfbl\",\"data-framer-appear-id\":\"n1xfbl\",\"data-framer-name\":\"Button Row\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,y:(componentViewport?.y||0)+0+0+0+0+0+0+200+107.3+0+0+0+258.4+16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t2t02o-container\",nodeId:\"W_zsejokE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonOutline,{GrjfbeKC3:false,height:\"100%\",id:\"W_zsejokE\",KXJ3N9Ejk:\"Circle\",layoutId:\"W_zsejokE\",MoT2QQ5gx:true,na_q1Zcpq:{borderColor:\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\",borderStyle:\"solid\",borderWidth:2},NP5yQIcR3:\"Watch the podcast\",RWkv57tSu:\"https://www.youtube.com/@AllieBethStuckey\",tXS3YmhNZ:\"Circle\",ueNsqLm87:false,variant:\"uGzw8Xm6C\",width:\"100%\",wPBnWntPg:\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\",YZAlJBSOC:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+0+0+0+0+0+200+107.3+0+0+0+258.4+24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-42kx1e-container\",nodeId:\"waynW7CtB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{SdhalYMpw:16}},children:/*#__PURE__*/_jsx(ButtonGhost,{BKF5IahL8:false,GrjfbeKC3:false,height:\"100%\",id:\"waynW7CtB\",KXJ3N9Ejk:\"Circle\",layoutId:\"waynW7CtB\",MoT2QQ5gx:true,NP5yQIcR3:\"Buy the book\",RWkv57tSu:\"https://www.toxicempathy.com\",SdhalYMpw:18,tXS3YmhNZ:\"Circle\",variant:\"XyblFQHhp\",width:\"100%\",YZAlJBSOC:false})})})})]})]})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zKrFpwa7N:{height:766.4,y:(componentViewport?.y||0)+0+0+0+745.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:780,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+950,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uszfao-container\",nodeId:\"Zo7NHw2FT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zKrFpwa7N:{kNBSjUAHT:15,Rjl5QCEPt:\"column\"}},children:/*#__PURE__*/_jsx(Event,{cJbh9Njd5:\"K_AqO2ZGx\",height:\"100%\",id:\"Zo7NHw2FT\",JKRwLFXiv:\"Share the Arrows\",kNBSjUAHT:80,layoutId:\"Zo7NHw2FT\",LoVCWrmei:\"var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(254, 249, 245))\",Rjl5QCEPt:\"row\",style:{height:\"100%\",width:\"100%\"},T2e9Ja9dM:\"https://www.sharethearrows.com/\",variant:\"VQ73GVLq1\",width:\"100%\",xbh6TyeTQ:\"Sign up today\",XxItCJC9C:\"120px 80px 120px 80px\",zPibtK7f3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Join us for an unforgettable day of teaching and encouragement from some of the wisest Christian voices of our era. Fellowship with likeminded women who are ready to Share the Arrows with you, armed with truth and courage in an age of deception and cowardice.\"})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zKrFpwa7N:{y:(componentViewport?.y||0)+0+0+0+1512}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:780,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+1730,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15owyqy-container\",id:elementId1,nodeId:\"XNzfPSQ8g\",ref:ref2,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{variant:\"aw_hicLDY\"},zKrFpwa7N:{variant:\"SKy8JGY7a\"}},children:/*#__PURE__*/_jsx(BookSection,{height:\"100%\",id:\"XNzfPSQ8g\",layoutId:\"XNzfPSQ8g\",style:{width:\"100%\"},variant:\"ku8ZQEolH\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-15r7jc0\",\"data-framer-name\":\"Feature / Grid-06\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qcdpb\",\"data-framer-name\":\"Container + Padding\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sxmg8q\",\"data-framer-name\":\"Layout\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fyriwz\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-rx12o1\",\"data-styles-preset\":\"QodQLACi6\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\"},children:\"Stay up-to-date\"})}),className:\"framer-y2xkm4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fcm6as\",\"data-styles-preset\":\"rncFq5P_8\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-25c94280-7217-4913-8617-1f9c844d3f16, rgb(64, 64, 64))\"},children:\"Dive into Allie's latest content\"})}),className:\"framer-1eqkmov\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d9akgo\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{width:\"320px\"},zKrFpwa7N:{height:350,width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 40px, 300px)`,y:(componentViewport?.y||0)+0+0+0+2292+0+0+40+0+0+248.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 240px) / 3, 100px)`,y:(componentViewport?.y||0)+0+0+0+2510+0+0+40+0+0+272.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pa5xjh-container\",nodeId:\"cCIfQ3Wjw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LatestResourceCard1,{height:\"100%\",id:\"cCIfQ3Wjw\",layoutId:\"cCIfQ3Wjw\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{width:\"320px\"},zKrFpwa7N:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 40px, 300px)`,y:(componentViewport?.y||0)+0+0+0+2292+0+0+40+0+0+248.6+0+380}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 240px) / 3, 100px)`,y:(componentViewport?.y||0)+0+0+0+2510+0+0+40+0+0+272.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p4z2rs-container\",nodeId:\"pFUJOEEL5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LatestResourceCard2,{height:\"100%\",id:\"pFUJOEEL5\",layoutId:\"pFUJOEEL5\",style:{height:\"100%\",width:\"100%\"},vcOpbE5yz:\"Resource title goes here\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{width:\"320px\",y:(componentViewport?.y||0)+0+0+0+2510+0+0+40+0+0+272.6+0+360},zKrFpwa7N:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 40px, 300px)`,y:(componentViewport?.y||0)+0+0+0+2292+0+0+40+0+0+248.6+0+730}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 240px) / 3, 100px)`,y:(componentViewport?.y||0)+0+0+0+2510+0+0+40+0+0+272.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1au9e03-container\",nodeId:\"sFwDk7Anx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LatestResourceCard3,{height:\"100%\",id:\"sFwDk7Anx\",layoutId:\"sFwDk7Anx\",style:{height:\"100%\",width:\"100%\"},vcOpbE5yz:\"Resource title goes here\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{width:\"320px\"},zKrFpwa7N:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 40px, 300px)`,y:(componentViewport?.y||0)+0+0+0+2292+0+0+40+0+0+248.6+0+1080}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 240px) / 3, 100px)`,y:(componentViewport?.y||0)+0+0+0+2510+0+0+40+0+0+272.6+0+360,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14w0nvy-container\",nodeId:\"Bc9QeHNBz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LatestResourceCard4,{height:\"100%\",id:\"Bc9QeHNBz\",layoutId:\"Bc9QeHNBz\",style:{height:\"100%\",width:\"100%\"},vcOpbE5yz:\"Resource title goes here\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{width:\"320px\",y:(componentViewport?.y||0)+0+0+0+2510+0+0+40+0+0+272.6+0+720},zKrFpwa7N:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 40px, 300px)`,y:(componentViewport?.y||0)+0+0+0+2292+0+0+40+0+0+248.6+0+1430}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 240px) / 3, 100px)`,y:(componentViewport?.y||0)+0+0+0+2510+0+0+40+0+0+272.6+0+360,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jp5uy1-container\",nodeId:\"X7Efg77pN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LatestResourceCard5,{height:\"100%\",id:\"X7Efg77pN\",layoutId:\"X7Efg77pN\",style:{height:\"100%\",width:\"100%\"},vcOpbE5yz:\"Resource title goes here\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{width:\"320px\",y:(componentViewport?.y||0)+0+0+0+2510+0+0+40+0+0+272.6+0+720},zKrFpwa7N:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1280px) - 40px, 300px)`,y:(componentViewport?.y||0)+0+0+0+2292+0+0+40+0+0+248.6+0+1780}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 240px) / 3, 100px)`,y:(componentViewport?.y||0)+0+0+0+2510+0+0+40+0+0+272.6+0+360,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g3t84s-container\",nodeId:\"N69lUovI_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LatestResourceCard6,{height:\"100%\",id:\"N69lUovI_\",layoutId:\"N69lUovI_\",style:{height:\"100%\",width:\"100%\"},vcOpbE5yz:\"Resource title goes here\",width:\"100%\"})})})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-17ft183\",\"data-framer-name\":\"Feature / Horizontal-01\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hiwo37\",\"data-framer-name\":\"Container + Padding\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fjlgo8\",\"data-framer-name\":\"Layout\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15w2xsm\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-js5bkk\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-rx12o1\",\"data-styles-preset\":\"QodQLACi6\",children:\"About Allie\"})}),className:\"framer-1vcf9y7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fcm6as\",\"data-styles-preset\":\"rncFq5P_8\",children:\"Allie is a podcast host, author, commentator, and speaker who\u2019s passionate about helping women build their worldview upon the truth of God's\\xa0Word.\"})}),className:\"framer-ta42ne\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kbpfxq\",\"data-framer-name\":\"Button Row\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fkFnJVxXl\"},implicitPathVariables:undefined},{href:{webPageId:\"fkFnJVxXl\"},implicitPathVariables:undefined},{href:{webPageId:\"fkFnJVxXl\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{y:(componentViewport?.y||0)+0+0+0+3942.6+0+0+120+0+0+0+0+232.6+16},zKrFpwa7N:{y:(componentViewport?.y||0)+0+0+0+4760.6+0+0+80+0+0+164+0+232.6+16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,y:(componentViewport?.y||0)+0+0+0+3582.6+0+0+120+0+0+0+232.6+16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q1541h-container\",nodeId:\"YaDRSb4Dn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{RWkv57tSu:resolvedLinks[1]},zKrFpwa7N:{RWkv57tSu:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonOutline,{GrjfbeKC3:false,height:\"100%\",id:\"YaDRSb4Dn\",KXJ3N9Ejk:\"Circle\",layoutId:\"YaDRSb4Dn\",MoT2QQ5gx:true,na_q1Zcpq:{borderColor:\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\",borderStyle:\"solid\",borderWidth:2},NP5yQIcR3:\"Keep reading\",RWkv57tSu:resolvedLinks[0],tXS3YmhNZ:\"Circle\",ueNsqLm87:false,variant:\"uGzw8Xm6C\",width:\"100%\",wPBnWntPg:\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\",YZAlJBSOC:false})})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1086,intrinsicWidth:1086,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3942.6+0+0+120+0+0+389.6),pixelHeight:8192,pixelWidth:5464,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 80px)`,src:\"https://framerusercontent.com/images/dW6WWkbMif4gBhvGHlzQd3wNpE.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dW6WWkbMif4gBhvGHlzQd3wNpE.jpeg?scale-down-to=1024 683w,https://framerusercontent.com/images/dW6WWkbMif4gBhvGHlzQd3wNpE.jpeg?scale-down-to=2048 1366w,https://framerusercontent.com/images/dW6WWkbMif4gBhvGHlzQd3wNpE.jpeg?scale-down-to=4096 2732w,https://framerusercontent.com/images/dW6WWkbMif4gBhvGHlzQd3wNpE.jpeg 5464w\"}},zKrFpwa7N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1086,intrinsicWidth:1086,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4760.6+0+0+80+0+0+0),pixelHeight:8192,pixelWidth:5464,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 40px)`,src:\"https://framerusercontent.com/images/dW6WWkbMif4gBhvGHlzQd3wNpE.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dW6WWkbMif4gBhvGHlzQd3wNpE.jpeg?scale-down-to=1024 683w,https://framerusercontent.com/images/dW6WWkbMif4gBhvGHlzQd3wNpE.jpeg?scale-down-to=2048 1366w,https://framerusercontent.com/images/dW6WWkbMif4gBhvGHlzQd3wNpE.jpeg?scale-down-to=4096 2732w,https://framerusercontent.com/images/dW6WWkbMif4gBhvGHlzQd3wNpE.jpeg 5464w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1086,intrinsicWidth:1086,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3582.6+0+0+120+0+104.8),pixelHeight:8192,pixelWidth:5464,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 240px) / 2, 1px)`,src:\"https://framerusercontent.com/images/dW6WWkbMif4gBhvGHlzQd3wNpE.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dW6WWkbMif4gBhvGHlzQd3wNpE.jpeg?scale-down-to=1024 683w,https://framerusercontent.com/images/dW6WWkbMif4gBhvGHlzQd3wNpE.jpeg?scale-down-to=2048 1366w,https://framerusercontent.com/images/dW6WWkbMif4gBhvGHlzQd3wNpE.jpeg?scale-down-to=4096 2732w,https://framerusercontent.com/images/dW6WWkbMif4gBhvGHlzQd3wNpE.jpeg 5464w\"},className:\"framer-1ywntu8\",\"data-framer-name\":\"Image\"})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-8e561e\",\"data-framer-name\":\"Feature / Horizontal-02\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12n6wl7\",\"data-framer-name\":\"Container + Padding\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kf43nl\",\"data-framer-name\":\"Layout\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1001,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4132.2+0+0+120+0+0),pixelHeight:3e3,pixelWidth:3e3,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/uFmuPgHB3Pp6g7FB6bbg58PRhVs.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uFmuPgHB3Pp6g7FB6bbg58PRhVs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uFmuPgHB3Pp6g7FB6bbg58PRhVs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uFmuPgHB3Pp6g7FB6bbg58PRhVs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uFmuPgHB3Pp6g7FB6bbg58PRhVs.jpg 3000w\"},className:\"framer-1x1okwn hidden-1j3i7qj hidden-gsths5\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k1eitl\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7y33kh\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pm3212\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1st3muy\",\"data-styles-preset\":\"bHTcuHzge\",style:{\"--framer-text-color\":\"var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, rgb(59, 37, 97))\"},children:\"Podcast\"})}),className:\"framer-1x0g62x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-rx12o1\",\"data-styles-preset\":\"QodQLACi6\",style:{\"--framer-text-color\":\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\"},children:\"Relatable\"})}),className:\"framer-pg1aih\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-fcm6as\",\"data-styles-preset\":\"rncFq5P_8\",children:[\"My podcast\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"Relatable\"}),\"\\xa0analyzes culture, news and politics from a biblical perspective. These are a few recent episodes. Listen wherever you get your podcasts or watch on my Allie Beth Stuckey YouTube channel.\"]})}),className:\"framer-1usnyfg\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11943mi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{y:(componentViewport?.y||0)+0+0+0+4672.2+0+0+120+0+0+0+0+0+0+280.6+0},zKrFpwa7N:{y:(componentViewport?.y||0)+0+0+0+5394.2+0+0+60+0+0+0+0+0+0+280.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+0+0+4132.2+0+0+120+0+0+0+0+0+280.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ijlzr9-container\",nodeId:\"g5S8t_X2m\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PodcastIcon,{height:\"100%\",id:\"g5S8t_X2m\",kbk4m_xXD:\"https://www.youtube.com/@AllieBethStuckey\",layoutId:\"g5S8t_X2m\",style:{height:\"100%\"},variant:\"wYcCpvH5d\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{y:(componentViewport?.y||0)+0+0+0+4672.2+0+0+120+0+0+0+0+0+0+280.6+0},zKrFpwa7N:{y:(componentViewport?.y||0)+0+0+0+5394.2+0+0+60+0+0+0+0+0+0+280.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"32px\",y:(componentViewport?.y||0)+0+0+0+4132.2+0+0+120+0+0+0+0+0+280.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ueug2-container\",nodeId:\"uy57G_ODZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PodcastIcon,{height:\"100%\",id:\"uy57G_ODZ\",kbk4m_xXD:\"https://podcasts.apple.com/podcast/id1359249098?app=podcast&at=1000lHKX&ct=linktree_http&itscg=30200&itsct=lt_p&ls=1&mt=2\",layoutId:\"uy57G_ODZ\",style:{height:\"100%\",width:\"100%\"},variant:\"se5BfZgAz\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{y:(componentViewport?.y||0)+0+0+0+4672.2+0+0+120+0+0+0+0+0+0+280.6+0},zKrFpwa7N:{y:(componentViewport?.y||0)+0+0+0+5394.2+0+0+60+0+0+0+0+0+0+280.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"32px\",y:(componentViewport?.y||0)+0+0+0+4132.2+0+0+120+0+0+0+0+0+280.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ka6i70-container\",nodeId:\"nm_sUUaVC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PodcastIcon,{height:\"100%\",id:\"nm_sUUaVC\",kbk4m_xXD:\"https://open.spotify.com/show/6HUhXbF0dPutdhbnLnxRQZ?utm_medium=share&utm_source=abswebsite\",layoutId:\"nm_sUUaVC\",style:{height:\"100%\",width:\"100%\"},variant:\"kAv5Jr4DZ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{y:(componentViewport?.y||0)+0+0+0+4672.2+0+0+120+0+0+0+0+0+0+280.6+0},zKrFpwa7N:{y:(componentViewport?.y||0)+0+0+0+5394.2+0+0+60+0+0+0+0+0+0+280.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+0+0+4132.2+0+0+120+0+0+0+0+0+280.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16xch6z-container\",nodeId:\"DXnn3lEP9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PodcastIcon,{height:\"100%\",id:\"DXnn3lEP9\",kbk4m_xXD:\"https://www.pandora.com/podcast/relatable-with-allie-beth-stuckey/PC:36674\",layoutId:\"DXnn3lEP9\",style:{height:\"100%\"},variant:\"xP0T0ad6G\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3kg9jv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c7b4be-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"d7DETclvs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe frameBorder=\"0\" height=\"482\" scrolling=\"no\" src=\"https://playlist.megaphone.fm/?p=BMDC9964487814&artwork=false\"\\nwidth=\"100%\"></iframe>',id:\"d7DETclvs\",layoutId:\"d7DETclvs\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://megaphone.link/BMDC3478500397\",width:\"100%\"})})})})]})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-17sab1j\",\"data-framer-name\":\"Feature / Horizontal-01\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19fubjr\",\"data-framer-name\":\"Container + Padding\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c6xl0r\",\"data-framer-name\":\"Layout\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8l9pet\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cvsjhf\",\"data-framer-name\":\"Heading Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-rx12o1\",\"data-styles-preset\":\"QodQLACi6\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\"},children:[\"Follow Allie Beth\",/*#__PURE__*/_jsx(\"br\",{}),\"on Instagram\"]})}),className:\"framer-nueibn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6sm4of\",\"data-framer-name\":\"Button Row\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{y:(componentViewport?.y||0)+0+0+0+5747.8+0+0+120+0+0+0+0+73.6+16},zKrFpwa7N:{y:(componentViewport?.y||0)+0+0+0+6325.8+0+0+80+0+0+0+0+73.6+16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,y:(componentViewport?.y||0)+0+0+0+5207.8+0+0+120+0+0+0+0+73.6+16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lavbdp-container\",nodeId:\"WtEclpqZo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonOutline,{GrjfbeKC3:false,height:\"100%\",id:\"WtEclpqZo\",KXJ3N9Ejk:\"Circle\",layoutId:\"WtEclpqZo\",MoT2QQ5gx:true,na_q1Zcpq:{borderColor:\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\",borderStyle:\"solid\",borderWidth:2},NP5yQIcR3:\"Follow\",RWkv57tSu:\"https://www.instagram.com/alliebstuckey/\",tXS3YmhNZ:\"Circle\",ueNsqLm87:false,variant:\"uGzw8Xm6C\",width:\"100%\",wPBnWntPg:\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\",YZAlJBSOC:false})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-657da7-container\",isModuleExternal:true,nodeId:\"a70VlG3Vh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"a70VlG3Vh\",layoutId:\"a70VlG3Vh\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/alliebstuckey/\",motionChild:true,nodeId:\"FBSEzJoDQ\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:928,pixelWidth:932,sizes:\"300px\",src:\"https://framerusercontent.com/images/KLHKh6JOF2yCTNpezzBPmoVtZc.png\",srcSet:\"https://framerusercontent.com/images/KLHKh6JOF2yCTNpezzBPmoVtZc.png?scale-down-to=512 512w,https://framerusercontent.com/images/KLHKh6JOF2yCTNpezzBPmoVtZc.png 932w\"},className:\"framer-tmvwbp framer-lux5qc\",\"data-framer-name\":\"Post 1\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/alliebstuckey/\",motionChild:true,nodeId:\"bevlG5fzq\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:924,pixelWidth:930,sizes:\"300px\",src:\"https://framerusercontent.com/images/PwdPs8HNtj6vjElkgD6Evaq0suY.png\",srcSet:\"https://framerusercontent.com/images/PwdPs8HNtj6vjElkgD6Evaq0suY.png?scale-down-to=512 512w,https://framerusercontent.com/images/PwdPs8HNtj6vjElkgD6Evaq0suY.png 930w\"},className:\"framer-yjxhry framer-lux5qc\",\"data-framer-name\":\"Post 2\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/alliebstuckey/\",motionChild:true,nodeId:\"bcwJbgap5\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:930,pixelWidth:934,sizes:\"300px\",src:\"https://framerusercontent.com/images/bWwstJuDwoHG1S8l1LDHMTNLslQ.png\",srcSet:\"https://framerusercontent.com/images/bWwstJuDwoHG1S8l1LDHMTNLslQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/bWwstJuDwoHG1S8l1LDHMTNLslQ.png 934w\"},className:\"framer-mw1u6b framer-lux5qc\",\"data-framer-name\":\"Post 3\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/alliebstuckey/\",motionChild:true,nodeId:\"cT9f2uRNn\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:932,pixelWidth:932,sizes:\"300px\",src:\"https://framerusercontent.com/images/rZtNLzP5MEgKNBGxIWkqWPG138.png\",srcSet:\"https://framerusercontent.com/images/rZtNLzP5MEgKNBGxIWkqWPG138.png?scale-down-to=512 512w,https://framerusercontent.com/images/rZtNLzP5MEgKNBGxIWkqWPG138.png 932w\"},className:\"framer-1i6jiuz framer-lux5qc\",\"data-framer-name\":\"Post 1\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/alliebstuckey/\",motionChild:true,nodeId:\"GRJRFVAyV\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:928,pixelWidth:934,sizes:\"300px\",src:\"https://framerusercontent.com/images/N7pCYNnAXk9U4QKYgWQsXEs3hs.png\",srcSet:\"https://framerusercontent.com/images/N7pCYNnAXk9U4QKYgWQsXEs3hs.png?scale-down-to=512 512w,https://framerusercontent.com/images/N7pCYNnAXk9U4QKYgWQsXEs3hs.png 934w\"},className:\"framer-b70xzr framer-lux5qc\",\"data-framer-name\":\"Post 2\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/alliebstuckey/\",motionChild:true,nodeId:\"vAOYN4rEV\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:926,pixelWidth:932,sizes:\"300px\",src:\"https://framerusercontent.com/images/8Y1FJIQMTS83fkHJnKKZhar5p1M.png\",srcSet:\"https://framerusercontent.com/images/8Y1FJIQMTS83fkHJnKKZhar5p1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/8Y1FJIQMTS83fkHJnKKZhar5p1M.png 932w\"},className:\"framer-1dgt3ed framer-lux5qc\",\"data-framer-name\":\"Post 3\"})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zKrFpwa7N:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),pixelHeight:2800,pixelWidth:1858,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/fDQsAZmOzsIImThEkqf7MLeSEE.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/fDQsAZmOzsIImThEkqf7MLeSEE.jpg?scale-down-to=1024&lossless=1 679w,https://framerusercontent.com/images/fDQsAZmOzsIImThEkqf7MLeSEE.jpg?scale-down-to=2048&lossless=1 1358w,https://framerusercontent.com/images/fDQsAZmOzsIImThEkqf7MLeSEE.jpg?lossless=1 1858w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"section\",background:{alt:\"\",fit:\"fill\",pixelHeight:2800,pixelWidth:1858,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/fDQsAZmOzsIImThEkqf7MLeSEE.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/fDQsAZmOzsIImThEkqf7MLeSEE.jpg?scale-down-to=1024&lossless=1 679w,https://framerusercontent.com/images/fDQsAZmOzsIImThEkqf7MLeSEE.jpg?scale-down-to=2048&lossless=1 1358w,https://framerusercontent.com/images/fDQsAZmOzsIImThEkqf7MLeSEE.jpg?lossless=1 1858w\"},className:\"framer-cb8ks2 hidden-72rtr7 hidden-1j3i7qj\",\"data-framer-name\":\"Hero / Horizontal-01\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1awqfsp\",\"data-framer-name\":\"Container + Padding\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q63473\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hcw3on\",\"data-framer-name\":\"Layout\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hc7i6s\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-akveos\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpZW1wb3MgSGVhZGxpbmUgTWVkaXVtIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Tiempos Headline Medium Regular\", \"Tiempos Headline Medium Regular Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\"},children:[\"Raise a\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1RpZW1wb3MgSGVhZGxpbmUgTWVkaXVtIEl0YWxpYw==\",\"--framer-font-family\":'\"Tiempos Headline Medium Italic\", \"Tiempos Headline Medium Italic Placeholder\", sans-serif'},children:\"Respectful\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Ruckus\"]})}),className:\"framer-14qh0jh\",fonts:[\"CUSTOM;Tiempos Headline Medium Regular\",\"CUSTOM;Tiempos Headline Medium Italic\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nmz7i6\",\"data-styles-preset\":\"Sv9VOC34f\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(58, 58, 58, 0.7)\"},children:\"Analyzing culture, news, and politics\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(58, 58, 58, 0.7)\"},children:\"from a biblical perspective.\"})]})}),className:\"framer-19wo6i4\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wptyf0\",\"data-framer-name\":\"Button Row\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zKrFpwa7N:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 40px, 560px)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+320+0+0+0+0+247.6+16+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uv3d8c-container\",nodeId:\"w9tOswPak\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonOutline,{GrjfbeKC3:false,height:\"100%\",id:\"w9tOswPak\",KXJ3N9Ejk:\"Circle\",layoutId:\"w9tOswPak\",MoT2QQ5gx:true,na_q1Zcpq:{borderColor:\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\",borderStyle:\"solid\",borderWidth:2},NP5yQIcR3:\"Buy the book\",style:{width:\"100%\"},tXS3YmhNZ:\"Circle\",ueNsqLm87:false,variant:\"uGzw8Xm6C\",width:\"100%\",wPBnWntPg:\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\",YZAlJBSOC:false})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zKrFpwa7N:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 40px, 560px)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+320+0+0+0+0+247.6+16+77}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v907v1-container\",nodeId:\"m5uQZWaJh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonGhost,{BKF5IahL8:false,GrjfbeKC3:false,height:\"100%\",id:\"m5uQZWaJh\",KXJ3N9Ejk:\"Circle\",layoutId:\"m5uQZWaJh\",MoT2QQ5gx:true,NP5yQIcR3:\"Listen to the podcast\",SdhalYMpw:16,style:{width:\"100%\"},tXS3YmhNZ:\"Circle\",variant:\"XyblFQHhp\",width:\"100%\",YZAlJBSOC:false})})})})]})]})})]})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{y:(componentViewport?.y||0)+0+6497.4},zKrFpwa7N:{y:(componentViewport?.y||0)+0+7664}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:505,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5957.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-137y9i6-container\",nodeId:\"ffmiczwfg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{variant:\"yP5jwyYRh\"},zKrFpwa7N:{variant:\"cYokbLdla\"}},children:/*#__PURE__*/_jsx(Footer10,{height:\"100%\",id:\"ffmiczwfg\",layoutId:\"ffmiczwfg\",style:{width:\"100%\"},variant:\"AaQ2Cg3Vu\",width:\"100%\"})})})})}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16k6vda hidden-72rtr7 hidden-gsths5\",\"data-framer-name\":\"2 Columns Image Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7002.4+0),sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,...toResponsiveImage(xWk18BpZJBZEP0l5uS)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,...toResponsiveImage(xWk18BpZJBZEP0l5uS)},className:\"framer-kbslng\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11nktyk\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-331w1l\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZEQfwHMlE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Double Click to Update Anything\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Double Click to Update Anything\"})}),className:\"framer-139ecpu\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Double click the image placeholders to add images. Do the same for any text, then tweak styles and publish.\"})}),className:\"framer-1jxjyi0\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gkek0c\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9lrh7n\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get Started\"})}),className:\"framer-1s8w4dc\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r2kiak\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Learn More\"})}),className:\"framer-yefr3a\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sNMDG.framer-lux5qc, .framer-sNMDG .framer-lux5qc { display: block; }\",\".framer-sNMDG.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-80553515-7ab0-44ac-b981-96d7680674fd, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-sNMDG .framer-bmpzhh-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-sNMDG .framer-1p10y5a, .framer-sNMDG .framer-cb8ks2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-yn7vu9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 95vh; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-8oilla { align-content: center; align-items: center; background-color: var(--token-f5bbcd0c-3b82-4dbd-94cb-c69bafd7aca8, #967fbb); border-bottom-left-radius: 1000px; border-bottom-right-radius: 1000px; border-top-left-radius: 1000px; border-top-right-radius: 1000px; bottom: -30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-evenly; left: 50%; overflow: hidden; padding: 18px 50px 18px 50px; position: absolute; transform: translateX(-50%); width: 60%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-sNMDG .framer-1jiwzc7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-sNMDG .framer-12o9nqp, .framer-sNMDG .framer-4l4so4, .framer-sNMDG .framer-bp5sw3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-sNMDG .framer-xno6u2, .framer-sNMDG .framer-l9mbiy, .framer-sNMDG .framer-sr115v, .framer-sNMDG .framer-1s8w4dc, .framer-sNMDG .framer-yefr3a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sNMDG .framer-1lw78mx, .framer-sNMDG .framer-1vavaxt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-sNMDG .framer-dkq0ls { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; max-width: 1280px; padding: 200px 80px 200px 80px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-1u8gkm9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-1t1n0m9 { 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; max-width: 560px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-tpa5zw, .framer-sNMDG .framer-js5bkk, .framer-sNMDG .framer-cvsjhf, .framer-sNMDG .framer-akveos { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-dqeb8n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; scroll-margin-top: 100px; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-sNMDG .framer-1ulh1xz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-sNMDG .framer-n1xfbl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-sNMDG .framer-t2t02o-container, .framer-sNMDG .framer-42kx1e-container, .framer-sNMDG .framer-1q1541h-container, .framer-sNMDG .framer-1lavbdp-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-sNMDG .framer-1uszfao-container { flex: none; height: 780px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-15owyqy-container, .framer-sNMDG .framer-1uv3d8c-container, .framer-sNMDG .framer-v907v1-container, .framer-sNMDG .framer-137y9i6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-sNMDG .framer-15r7jc0 { align-content: center; align-items: center; background-color: var(--token-80553515-7ab0-44ac-b981-96d7680674fd, #f8f0e8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-qcdpb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1280px; padding: 40px 80px 80px 80px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-1sxmg8q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-fyriwz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 500px; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-y2xkm4, .framer-sNMDG .framer-1eqkmov, .framer-sNMDG .framer-1vcf9y7, .framer-sNMDG .framer-ta42ne, .framer-sNMDG .framer-1x0g62x, .framer-sNMDG .framer-pg1aih, .framer-sNMDG .framer-1usnyfg, .framer-sNMDG .framer-nueibn, .framer-sNMDG .framer-14qh0jh, .framer-sNMDG .framer-19wo6i4 { --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-sNMDG .framer-1d9akgo { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(100px, 1fr)); grid-template-rows: repeat(2, min-content); height: 680px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-pa5xjh-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-sNMDG .framer-p4z2rs-container, .framer-sNMDG .framer-1au9e03-container, .framer-sNMDG .framer-14w0nvy-container, .framer-sNMDG .framer-1jp5uy1-container, .framer-sNMDG .framer-g3t84s-container { align-self: start; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 320px); justify-self: start; position: relative; width: 100%; }\",\".framer-sNMDG .framer-17ft183, .framer-sNMDG .framer-17sab1j { align-content: center; align-items: center; background-color: var(--token-80553515-7ab0-44ac-b981-96d7680674fd, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-hiwo37, .framer-sNMDG .framer-12n6wl7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1280px; padding: 120px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-1fjlgo8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-15w2xsm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sNMDG .framer-1kbpfxq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-1ywntu8 { 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: 1 0 0px; height: var(--framer-aspect-ratio-supported, 480px); position: relative; width: 1px; }\",\".framer-sNMDG .framer-8e561e { align-content: center; align-items: center; background-color: var(--token-ee7ff27e-bc2d-40a1-8a1f-b3d025af745d, #f3e6d9); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-1kf43nl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-1x1okwn { aspect-ratio: 1 / 1; box-shadow: 0px 0.6369534988189116px 0.6369534988189116px -0.625px rgba(0, 0, 0, 0.13), 0px 1.9316049144836143px 1.9316049144836143px -1.25px rgba(0, 0, 0, 0.13), 0px 5.106122817187569px 5.106122817187569px -1.875px rgba(0, 0, 0, 0.13), 0px 16px 16px -2.5px rgba(0, 0, 0, 0.13); flex: none; height: var(--framer-aspect-ratio-supported, 300px); position: relative; width: 300px; }\",\".framer-sNMDG .framer-1k1eitl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-sNMDG .framer-7y33kh { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-1pm3212 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-11943mi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-ijlzr9-container, .framer-sNMDG .framer-16xch6z-container { flex: none; height: 32px; position: relative; width: auto; }\",\".framer-sNMDG .framer-ueug2-container, .framer-sNMDG .framer-ka6i70-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-sNMDG .framer-3kg9jv { aspect-ratio: 1.3664596273291925 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 483px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-sNMDG .framer-1c7b4be-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(49.89648033126296% - 99.79296066252587% / 2); width: 100%; }\",\".framer-sNMDG .framer-19fubjr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1280px; padding: 120px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-c6xl0r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-8l9pet { 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; max-width: 501px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-6sm4of { 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: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-657da7-container { flex: none; height: 319px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-tmvwbp, .framer-sNMDG .framer-yjxhry, .framer-sNMDG .framer-mw1u6b, .framer-sNMDG .framer-1i6jiuz, .framer-sNMDG .framer-b70xzr, .framer-sNMDG .framer-1dgt3ed { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.6021873017743928px 1.083937143193907px -1px rgba(0, 0, 0, 0.09), 0px 2.288533303243457px 4.119359945838223px -2px rgba(0, 0, 0, 0.08), 0px 10px 18px -3px rgba(0, 0, 0, 0.06); height: 300px; overflow: hidden; position: relative; text-decoration: none; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sNMDG .framer-1awqfsp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; max-width: 1280px; padding: 320px 20px 40px 20px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-q63473 { background: linear-gradient(180deg, rgba(254, 249, 245, 0) 0%, rgba(254, 249, 245, 0.8) 40%); bottom: 0px; flex: none; height: 600px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 0; }\",\".framer-sNMDG .framer-1hcw3on { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-hc7i6s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 560px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-wptyf0 { 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: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-16k6vda { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sNMDG .framer-kbslng { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sNMDG .framer-11nktyk { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sNMDG .framer-331w1l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 400px; }\",\".framer-sNMDG .framer-139ecpu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sNMDG .framer-1jxjyi0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sNMDG .framer-gkek0c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sNMDG .framer-9lrh7n { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: min-content; }\",\".framer-sNMDG .framer-r2kiak { align-content: center; align-items: center; background-color: #ebebeb; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: min-content; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-sNMDG.framer-72rtr7 { width: 810px; } .framer-sNMDG .framer-8oilla { width: 90%; } .framer-sNMDG .framer-dkq0ls { padding: 200px 40px 200px 40px; } .framer-sNMDG .framer-1t1n0m9 { max-width: 480px; } .framer-sNMDG .framer-qcdpb { padding: 40px 40px 80px 40px; } .framer-sNMDG .framer-1d9akgo { grid-template-columns: repeat(2, 320px); height: min-content; } .framer-sNMDG .framer-hiwo37, .framer-sNMDG .framer-12n6wl7 { padding: 120px 40px 120px 40px; } .framer-sNMDG .framer-1fjlgo8, .framer-sNMDG .framer-1kf43nl { flex-direction: column; } .framer-sNMDG .framer-15w2xsm { flex: none; width: 100%; } .framer-sNMDG .framer-1ywntu8 { flex: none; height: var(--framer-aspect-ratio-supported, 730px); width: 100%; } .framer-sNMDG .framer-1k1eitl { align-content: center; align-items: center; flex: none; order: 1; width: 100%; } .framer-sNMDG .framer-3kg9jv { height: var(--framer-aspect-ratio-supported, 535px); } .framer-sNMDG .framer-19fubjr { padding: 120px 40px 100px 40px; } .framer-sNMDG .framer-kbslng { height: 500px; } .framer-sNMDG .framer-331w1l { flex: 1 0 0px; padding: 40px; width: 1px; }}\",\"@media (max-width: 809px) { .framer-sNMDG.framer-72rtr7 { width: 390px; } .framer-sNMDG .framer-1p10y5a { height: 7664px; } .framer-sNMDG .framer-1uszfao-container { height: 10%; order: 2; } .framer-sNMDG .framer-15owyqy-container { order: 3; } .framer-sNMDG .framer-15r7jc0 { order: 4; } .framer-sNMDG .framer-qcdpb { padding: 40px 20px 80px 20px; } .framer-sNMDG .framer-1sxmg8q { gap: 40px; } .framer-sNMDG .framer-fyriwz { order: 0; } .framer-sNMDG .framer-1d9akgo { gap: 30px; grid-template-columns: repeat(1, minmax(300px, 1fr)); height: min-content; order: 1; } .framer-sNMDG .framer-pa5xjh-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 350px); } .framer-sNMDG .framer-p4z2rs-container, .framer-sNMDG .framer-1au9e03-container, .framer-sNMDG .framer-14w0nvy-container, .framer-sNMDG .framer-1jp5uy1-container, .framer-sNMDG .framer-g3t84s-container { height: var(--framer-aspect-ratio-supported, 350px); } .framer-sNMDG .framer-17ft183 { order: 5; } .framer-sNMDG .framer-hiwo37, .framer-sNMDG .framer-19fubjr { padding: 80px 20px 80px 20px; } .framer-sNMDG .framer-1fjlgo8 { flex-direction: column; gap: 64px; } .framer-sNMDG .framer-15w2xsm { flex: none; order: 1; width: 100%; } .framer-sNMDG .framer-1ywntu8 { flex: none; height: var(--framer-aspect-ratio-supported, 350px); order: 0; width: 100%; } .framer-sNMDG .framer-8e561e { order: 6; } .framer-sNMDG .framer-12n6wl7 { padding: 60px 20px 60px 20px; } .framer-sNMDG .framer-1kf43nl { flex-direction: column; } .framer-sNMDG .framer-1k1eitl { flex: none; width: 100%; } .framer-sNMDG .framer-3kg9jv { aspect-ratio: 0.7625272331154684 / 1; height: var(--framer-aspect-ratio-supported, 459px); } .framer-sNMDG .framer-17sab1j { order: 8; } .framer-sNMDG .framer-c6xl0r { gap: 64px; } .framer-sNMDG .framer-cb8ks2 { order: 1; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6339\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZEQfwHMlE\":{\"layout\":[\"fixed\",\"auto\"]},\"zKrFpwa7N\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"sfuK_X2ij\":{\"pattern\":\":sfuK_X2ij\",\"name\":\"hero-home\"},\"XNzfPSQ8g\":{\"pattern\":\":XNzfPSQ8g\",\"name\":\"scrolled-web\"},\"ENw7bymGF\":{\"pattern\":\":ENw7bymGF\",\"name\":\"2nd-cco\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-sNMDG\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6339,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Tiempos Headline Medium Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/o4QHg6gNFKBbr50EBufhpnRdS8.woff2\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Tiempos Headline Medium Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/i5CpLoHnEIzCRC9QJw7A4WvMFmg.woff2\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...NavbarDropdown03Fonts,...ButtonOutlineFonts,...ButtonGhostFonts,...EventFonts,...BookSectionFonts,...LatestResourceCard1Fonts,...LatestResourceCard2Fonts,...LatestResourceCard3Fonts,...LatestResourceCard4Fonts,...LatestResourceCard5Fonts,...LatestResourceCard6Fonts,...PodcastIconFonts,...EmbedFonts,...TickerFonts,...Footer10Fonts,...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\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"6339\",\"framerAutoSizeImages\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZEQfwHMlE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zKrFpwa7N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"sfuK_X2ij\\\":{\\\"pattern\\\":\\\":sfuK_X2ij\\\",\\\"name\\\":\\\"hero-home\\\"},\\\"XNzfPSQ8g\\\":{\\\"pattern\\\":\\\":XNzfPSQ8g\\\",\\\"name\\\":\\\"scrolled-web\\\"},\\\"ENw7bymGF\\\":{\\\"pattern\\\":\\\":ENw7bymGF\\\",\\\"name\\\":\\\"2nd-cco\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "API_KEY", "CHANNEL_ID", "UPLOADS_PLAYLIST_ID", "SHORTS_PLAYLIST_ID", "API_URL_UPLOADS", "API_URL_SHORTS", "MAX_AGE", "VIDEO_INDEX", "fetchVideoData", "videoIndex", "nextPageToken", "uploadsData", "shortsData", "isFetching", "pagesFetched", "uploadsResponse", "shortsResponse", "uploadsPageData", "shortsDataPage", "error", "shortsVideoIds", "item", "longFormVideos", "cleanTitle", "title", "storeDataInLocalStorage", "key", "data", "getDataFromLocalStorage", "maxAge", "storedData", "timestamp", "useYouTubeData", "fetchData", "cleanData", "setData", "ye", "ue", "fetchDataAndCache", "cacheKey", "cachedData", "video", "cleanedData", "useYouTubeVideoTitle", "useYouTubeVideoDescription", "description", "useYouTubeVideoLink", "useYouTubeVideoThumbnail", "YouTubeTitleOverride", "YouTubeDescriptionOverride", "YouTubeLinkOverride", "props", "link", "onClick", "window", "YouTubeThumbnailOverride", "thumbnail", "imageRef", "pe", "withYouTubeTitleOverride", "C", "re", "DataObserverContext", "p", "withYouTubeDescriptionOverride", "withYouTubeLinkOverride", "withYouTubeThumbnailOverride", "RichTextWithYouTubeTitleOverride", "withYouTubeTitleOverride", "RichText2", "RichTextWithYouTubeDescriptionOverride", "withYouTubeDescriptionOverride", "MotionDivWithYouTubeLinkOverride", "withYouTubeLinkOverride", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "getProps", "height", "id", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vcOpbE5yz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "cx", "css", "FramerbsTrAfYMt", "withCSS", "bsTrAfYMt_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "API_KEY", "CHANNEL_ID", "UPLOADS_PLAYLIST_ID", "SHORTS_PLAYLIST_ID", "API_URL_UPLOADS", "API_URL_SHORTS", "MAX_AGE", "VIDEO_INDEX", "fetchVideoData", "videoIndex", "nextPageToken", "uploadsData", "shortsData", "isFetching", "pagesFetched", "uploadsResponse", "shortsResponse", "uploadsPageData", "shortsDataPage", "error", "shortsVideoIds", "item", "longFormVideos", "cleanTitle", "title", "storeDataInLocalStorage", "key", "data", "getDataFromLocalStorage", "maxAge", "storedData", "timestamp", "useYouTubeData", "fetchData", "cleanData", "setData", "ye", "ue", "fetchDataAndCache", "cacheKey", "cachedData", "video", "cleanedData", "useYouTubeVideoTitle", "useYouTubeVideoDescription", "description", "useYouTubeVideoLink", "useYouTubeVideoThumbnail", "YouTubeTitleOverride", "YouTubeDescriptionOverride", "YouTubeLinkOverride", "props", "link", "onClick", "window", "YouTubeThumbnailOverride", "thumbnail", "imageRef", "pe", "withYouTubeTitleOverride", "C", "re", "DataObserverContext", "p", "withYouTubeDescriptionOverride", "withYouTubeLinkOverride", "withYouTubeThumbnailOverride", "RichTextWithYouTubeTitleOverride", "withYouTubeTitleOverride", "RichText2", "RichTextWithYouTubeDescriptionOverride", "withYouTubeDescriptionOverride", "MotionDivWithYouTubeLinkOverride", "withYouTubeLinkOverride", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "getProps", "height", "id", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vcOpbE5yz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "cx", "css", "FramerdwUNCe3GI", "withCSS", "dwUNCe3GI_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "API_KEY", "CHANNEL_ID", "UPLOADS_PLAYLIST_ID", "SHORTS_PLAYLIST_ID", "API_URL_UPLOADS", "API_URL_SHORTS", "MAX_AGE", "VIDEO_INDEX", "fetchVideoData", "videoIndex", "nextPageToken", "uploadsData", "shortsData", "isFetching", "pagesFetched", "uploadsResponse", "shortsResponse", "uploadsPageData", "shortsDataPage", "error", "shortsVideoIds", "item", "longFormVideos", "cleanTitle", "title", "storeDataInLocalStorage", "key", "data", "getDataFromLocalStorage", "maxAge", "storedData", "timestamp", "useYouTubeData", "fetchData", "cleanData", "setData", "ye", "ue", "fetchDataAndCache", "cacheKey", "cachedData", "video", "cleanedData", "useYouTubeVideoTitle", "useYouTubeVideoDescription", "description", "useYouTubeVideoLink", "useYouTubeVideoThumbnail", "YouTubeTitleOverride", "YouTubeDescriptionOverride", "YouTubeLinkOverride", "props", "link", "onClick", "window", "YouTubeThumbnailOverride", "thumbnail", "imageRef", "pe", "withYouTubeTitleOverride", "C", "re", "DataObserverContext", "p", "withYouTubeDescriptionOverride", "withYouTubeLinkOverride", "withYouTubeThumbnailOverride", "RichTextWithYouTubeTitleOverride", "withYouTubeTitleOverride", "RichText2", "RichTextWithYouTubeDescriptionOverride", "withYouTubeDescriptionOverride", "MotionDivWithYouTubeLinkOverride", "withYouTubeLinkOverride", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "getProps", "height", "id", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vcOpbE5yz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "cx", "css", "Framerhms2gTB10", "withCSS", "hms2gTB10_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MaterialFonts", "getFonts", "Icon", "MaterialControls", "getPropertyControls", "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", "fontSize", "height", "iconL", "iconR", "id", "label", "link", "newTab", "showIconL", "showIconR", "showLabel", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "_ref7", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "MoT2QQ5gx", "NP5yQIcR3", "GrjfbeKC3", "tXS3YmhNZ", "YZAlJBSOC", "KXJ3N9Ejk", "RWkv57tSu", "BKF5IahL8", "SdhalYMpw", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerlcIRM4XWN", "withCSS", "lcIRM4XWN_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", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "kbk4m_xXD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "SVG", "css", "FramerlLGWQjSkK", "withCSS", "lLGWQjSkK_default", "addPropertyControls", "ControlType", "addFonts", "API_KEY", "CHANNEL_ID", "UPLOADS_PLAYLIST_ID", "SHORTS_PLAYLIST_ID", "API_URL_UPLOADS", "API_URL_SHORTS", "MAX_AGE", "VIDEO_INDEX", "fetchVideoData", "videoIndex", "nextPageToken", "uploadsData", "shortsData", "isFetching", "pagesFetched", "uploadsResponse", "shortsResponse", "uploadsPageData", "shortsDataPage", "error", "shortsVideoIds", "item", "longFormVideos", "cleanTitle", "title", "storeDataInLocalStorage", "key", "data", "getDataFromLocalStorage", "maxAge", "storedData", "timestamp", "useYouTubeData", "fetchData", "cleanData", "setData", "ye", "ue", "fetchDataAndCache", "cacheKey", "cachedData", "video", "cleanedData", "useYouTubeVideoTitle", "useYouTubeVideoDescription", "description", "useYouTubeVideoLink", "useYouTubeVideoThumbnail", "YouTubeTitleOverride", "YouTubeDescriptionOverride", "YouTubeLinkOverride", "props", "link", "onClick", "window", "YouTubeThumbnailOverride", "thumbnail", "imageRef", "pe", "withYouTubeTitleOverride", "C", "re", "DataObserverContext", "p", "withYouTubeDescriptionOverride", "withYouTubeLinkOverride", "withYouTubeThumbnailOverride", "RichTextWithYouTubeTitleOverride", "withYouTubeTitleOverride", "RichText2", "RichTextWithYouTubeDescriptionOverride", "withYouTubeDescriptionOverride", "MotionDivWithYouTubeLinkOverride", "withYouTubeLinkOverride", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vcOpbE5yzhms2gTB10", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "cx", "css", "FrameroVRb7Bf52", "withCSS", "oVRb7Bf52_default", "addFonts", "getFontsFromSharedStyle", "fonts", "API_KEY", "CHANNEL_ID", "UPLOADS_PLAYLIST_ID", "SHORTS_PLAYLIST_ID", "API_URL_UPLOADS", "API_URL_SHORTS", "MAX_AGE", "VIDEO_INDEX", "fetchVideoData", "videoIndex", "nextPageToken", "uploadsData", "shortsData", "isFetching", "pagesFetched", "uploadsResponse", "shortsResponse", "uploadsPageData", "shortsDataPage", "error", "shortsVideoIds", "item", "longFormVideos", "cleanTitle", "title", "storeDataInLocalStorage", "key", "data", "getDataFromLocalStorage", "maxAge", "storedData", "timestamp", "useYouTubeData", "fetchData", "cleanData", "setData", "ye", "ue", "fetchDataAndCache", "cacheKey", "cachedData", "video", "cleanedData", "useYouTubeVideoTitle", "useYouTubeVideoDescription", "description", "useYouTubeVideoLink", "useYouTubeVideoThumbnail", "YouTubeTitleOverride", "YouTubeDescriptionOverride", "YouTubeLinkOverride", "props", "link", "onClick", "window", "YouTubeThumbnailOverride", "thumbnail", "imageRef", "pe", "withYouTubeTitleOverride", "C", "re", "DataObserverContext", "p", "withYouTubeDescriptionOverride", "withYouTubeLinkOverride", "withYouTubeThumbnailOverride", "RichTextWithYouTubeTitleOverride", "withYouTubeTitleOverride", "RichText2", "RichTextWithYouTubeDescriptionOverride", "withYouTubeDescriptionOverride", "MotionDivWithYouTubeLinkOverride", "withYouTubeLinkOverride", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "getProps", "height", "id", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vcOpbE5yz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "cx", "css", "FramerxnjV3dv8M", "withCSS", "xnjV3dv8M_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "API_KEY", "CHANNEL_ID", "UPLOADS_PLAYLIST_ID", "SHORTS_PLAYLIST_ID", "API_URL_UPLOADS", "API_URL_SHORTS", "MAX_AGE", "VIDEO_INDEX", "fetchVideoData", "videoIndex", "nextPageToken", "uploadsData", "shortsData", "isFetching", "pagesFetched", "uploadsResponse", "shortsResponse", "uploadsPageData", "shortsDataPage", "error", "shortsVideoIds", "item", "longFormVideos", "cleanTitle", "title", "storeDataInLocalStorage", "key", "data", "getDataFromLocalStorage", "maxAge", "storedData", "timestamp", "useYouTubeData", "fetchData", "cleanData", "setData", "ye", "ue", "fetchDataAndCache", "cacheKey", "cachedData", "video", "cleanedData", "useYouTubeVideoTitle", "useYouTubeVideoDescription", "description", "useYouTubeVideoLink", "useYouTubeVideoThumbnail", "YouTubeTitleOverride", "YouTubeDescriptionOverride", "YouTubeLinkOverride", "props", "link", "onClick", "window", "YouTubeThumbnailOverride", "thumbnail", "imageRef", "pe", "withYouTubeTitleOverride", "C", "re", "DataObserverContext", "p", "withYouTubeDescriptionOverride", "withYouTubeLinkOverride", "withYouTubeThumbnailOverride", "RichTextWithYouTubeTitleOverride", "withYouTubeTitleOverride", "RichText2", "RichTextWithYouTubeDescriptionOverride", "withYouTubeDescriptionOverride", "MotionDivWithYouTubeLinkOverride", "withYouTubeLinkOverride", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "getProps", "height", "id", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vcOpbE5yz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "cx", "css", "Framery8otGGrlq", "withCSS", "y8otGGrlq_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavbarDropdown03Fonts", "getFonts", "UmGQ8JSh4_default", "NavbarDropdown03WithVariantAppearEffect", "withVariantAppearEffect", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ButtonOutlineFonts", "VIEX2I4X4_default", "ButtonGhostFonts", "lcIRM4XWN_default", "MotionDivWithOptimizedAppearEffect", "motion", "EventFonts", "g93kCLAlq_default", "BookSectionFonts", "PjEnA40tK_default", "LatestResourceCard1Fonts", "oVRb7Bf52_default", "LatestResourceCard2Fonts", "hms2gTB10_default", "LatestResourceCard3Fonts", "xnjV3dv8M_default", "LatestResourceCard4Fonts", "bsTrAfYMt_default", "LatestResourceCard5Fonts", "y8otGGrlq_default", "LatestResourceCard6Fonts", "dwUNCe3GI_default", "PodcastIconFonts", "lLGWQjSkK_default", "EmbedFonts", "Embed", "TickerFonts", "Ticker", "RichTextWithFX", "withFX", "MotionDivWithFX", "Footer10Fonts", "ESHy_AM2t_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "animation2", "animation3", "animation4", "animation5", "animation6", "animation7", "animation8", "animation9", "toResponsiveImage", "value", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "xWk18BpZJBZEP0l5uS", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "isDisplayed", "elementId", "useRouteElementId", "elementId1", "ref2", "router", "useRouter", "elementId2", "ref3", "isDisplayed1", "isDisplayed2", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "Image2", "getLoadingLazyAtYPosition", "SVG", "x", "ResolveLinks", "resolvedLinks", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
