{"version":3,"file":"KDa4VTwjd.CJ7GusFZ.mjs","names":["formatPlaylistDuration","h","m","s","cacheKey","cached","cacheValid","_Fragment","RichText","YouTubeVideoInfo","className","Image","css"],"sources":["https:/framerusercontent.com/modules/UckdASHhzFoF5MzH8rny/n8Og5vOa4otdphhLLiku/YouTubeVideoInfo.js","https:/framerusercontent.com/modules/JoKJFTPCK1zc3iQZQg2u/ncMkQMDNqSTHtjuzE0m6/KDa4VTwjd.js"],"sourcesContent":["// User instructions: Component to display YouTube video data from a URL and API key.\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType,useIsOnFramerCanvas}from\"framer\";/**\n * YOUTUBE VIDEO INFO\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function extractVideoId(url){// Handles various YouTube URL formats\nif(!url)return null;const regex=/(?:youtube\\.com\\/(?:[^\\/\\n\\s]+\\/\\S+\\/|(?:v|e(?:mbed)?|shorts)\\/|.*[?&]v=)|youtu\\.be\\/)([\\w-]{11})/;const match=url.match(regex);return match?match[1]:null;}function extractPlaylistId(url){// Handles YouTube playlist URLs\nif(!url)return null;// Try to extract list= parameter\nconst match=url.match(/[?&]list=([a-zA-Z0-9_-]+)/);return match?match[1]:null;}function parseISODuration(iso){// Parse ISO 8601 duration (e.g. PT1H2M3S) to seconds\nif(!iso)return 0;const match=iso.match(/PT(?:(\\d+)H)?(?:(\\d+)M)?(?:(\\d+)S)?/);if(!match)return 0;const h=parseInt(match[1]||\"0\",10);function formatPlaylistDuration(totalSeconds){const h=Math.floor(totalSeconds/3600);const m=Math.floor(totalSeconds%3600/60);const s=totalSeconds%60;if(h>0)return`${h}h${m>0?` ${m}m`:\"\"}`;if(m>0)return`${m}m`;return`${s}s`;}const m=parseInt(match[2]||\"0\",10);const s=parseInt(match[3]||\"0\",10);return h*3600+m*60+s;}function formatSecondsToHMS(totalSeconds){const h=Math.floor(totalSeconds/3600);const m=Math.floor(totalSeconds%3600/60);const s=totalSeconds%60;if(h>0)return`${h}:${String(m).padStart(2,\"0\")}:${String(s).padStart(2,\"0\")}`;else return`${m}:${String(s).padStart(2,\"0\")}`;}function formatPlaylistDuration(totalSeconds){const h=Math.floor(totalSeconds/3600);const m=Math.floor(totalSeconds%3600/60);const s=totalSeconds%60;if(h>0)return`${h}h${m>0?` ${m}m`:\"\"}`;if(m>0)return`${m}m`;return`${s}s`;}function YouTubeVideoInfo(props){const{youtubeUrl,apiKey,textColor,font,showThumbnail,showTitle,showChannel,showDate,showDescription,showViews,showLikes,showCommentsCount,showTopComments,showPlaylistCount=true}=props;// Caching interval is fixed to 7 days\nconst cacheDaysValue=7;const isOnCanvas=useIsOnFramerCanvas();const[videoData,setVideoData]=React.useState(null);const[comments,setComments]=React.useState([]);const[error,setError]=React.useState(\"\");const[loading,setLoading]=React.useState(false);React.useEffect(()=>{if(!youtubeUrl||!apiKey){setVideoData(null);setComments([]);setError(\"\");return;}const videoId=extractVideoId(youtubeUrl);const playlistId=extractPlaylistId(youtubeUrl);if(!videoId&&!playlistId){setVideoData(null);setComments([]);setError(\"Invalid YouTube or Playlist URL\");return;}setLoading(true);setError(\"\");setVideoData(null);setComments([]);if(typeof window===\"undefined\")return;if(playlistId){// PLAYLIST MODE\nconst cacheKey=`ytplaylist_${playlistId}_${apiKey}`;const cached=window.localStorage.getItem(cacheKey);let cacheValid=false;if(cached){try{const parsed=JSON.parse(cached);if(parsed&&parsed.timestamp&&Date.now()-parsed.timestamp<cacheDaysValue*24*60*60*1e3&&parsed.data){setVideoData(parsed.data);setLoading(false);cacheValid=true;}}catch{}}if(cacheValid)return;// Helper: fetch all video IDs in playlist (handle pagination)\nasync function fetchAllPlaylistVideoIds(){let ids=[];let nextPageToken=\"\";let tries=0;do{const url=`https://www.googleapis.com/youtube/v3/playlistItems?part=contentDetails&maxResults=50&playlistId=${playlistId}&key=${apiKey}`+(nextPageToken?`&pageToken=${nextPageToken}`:\"\");const res=await fetch(url);const data=await res.json();if(data.items){ids=ids.concat(data.items.map(item=>item.contentDetails.videoId));}nextPageToken=data.nextPageToken;tries++;}while(nextPageToken&&tries<20)return ids;}// Helper: fetch durations for video IDs in batches of 50\nasync function fetchDurationsForIds(ids){let totalSeconds=0;for(let i=0;i<ids.length;i+=50){const batch=ids.slice(i,i+50);const url=`https://www.googleapis.com/youtube/v3/videos?part=contentDetails&id=${batch.join(\",\")}&key=${apiKey}`;const res=await fetch(url);const data=await res.json();if(data.items){totalSeconds+=data.items.reduce((sum,item)=>sum+parseISODuration(item.contentDetails.duration),0);}}return totalSeconds;}// Main async\n(async()=>{try{const ids=await fetchAllPlaylistVideoIds();if(!ids.length)throw new Error(\"No videos in playlist\");const totalSeconds=await fetchDurationsForIds(ids);const playlistData={totalSeconds,count:ids.length};setVideoData(playlistData);window.localStorage.setItem(cacheKey,JSON.stringify({data:playlistData,timestamp:Date.now()}));}catch(e){setError(\"Failed to fetch playlist duration.\");}finally{setLoading(false);}})();return;}// VIDEO MODE\n// Caching logic: use localStorage to cache for 7 days per videoId+apiKey\nconst cacheKey=`ytinfo_${videoId}_${apiKey}`;const cached=window.localStorage.getItem(cacheKey);let cacheValid=false;if(cached){try{const parsed=JSON.parse(cached);if(parsed&&parsed.timestamp&&Date.now()-parsed.timestamp<cacheDaysValue*24*60*60*1e3&&parsed.data){setVideoData(parsed.data);setLoading(false);cacheValid=true;}}catch{}}if(cacheValid)return;// Fetch video info (add contentDetails for duration)\nfetch(`https://www.googleapis.com/youtube/v3/videos?part=snippet,statistics,contentDetails&id=${videoId}&key=${apiKey}`).then(res=>res.json()).then(data=>{if(data.items&&data.items.length>0){setVideoData(data.items[0]);// Save to cache\nwindow.localStorage.setItem(cacheKey,JSON.stringify({data:data.items[0],timestamp:Date.now()}));}else{setError(\"Video not found or API error.\");}}).catch(()=>setError(\"Failed to fetch video data.\")).finally(()=>setLoading(false));},[youtubeUrl,apiKey]);return /*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",width:\"100%\",height:\"100%\",color:textColor,borderRadius:12,padding:0,boxSizing:\"border-box\",display:\"flex\",flexDirection:\"column\",gap:16,...font},children:[loading&&/*#__PURE__*/_jsx(\"span\",{children:\"Loading…\"}),error&&/*#__PURE__*/_jsx(\"span\",{style:{color:\"#FF5588\"},children:error}),videoData?/*#__PURE__*/_jsx(_Fragment,{children:videoData.totalSeconds!==undefined?/*#__PURE__*/_jsxs(\"div\",{style:{fontWeight:600,fontSize:18,...font},children:[formatPlaylistDuration(videoData.totalSeconds),showPlaylistCount&&/*#__PURE__*/_jsxs(\"span\",{style:{fontWeight:400,fontSize:14,opacity:.7,marginLeft:8},children:[\"(\",videoData.count,\" videos)\"]})]}):/*#__PURE__*/_jsx(\"div\",{style:{fontWeight:600,fontSize:18,...font},children:formatSecondsToHMS(parseISODuration(videoData.contentDetails?.duration))})}):/*#__PURE__*/_jsx(\"div\",{style:{fontWeight:600,fontSize:18,...font},children:\"0:00\"})]});}addPropertyControls(YouTubeVideoInfo,{youtubeUrl:{type:ControlType.String,title:\"YouTube URL\",placeholder:\"https://youtu.be/…\",defaultValue:\"\"},apiKey:{type:ControlType.String,title:\"API Key\",placeholder:\"AIza…\",defaultValue:\"\",obscured:true},textColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#000000\"},showPlaylistCount:{type:ControlType.Boolean,title:\"Show Playlist Count\",defaultValue:true},font:{type:ControlType.Font,title:\"Font\",defaultValue:{fontSize:\"15px\",variant:\"Medium\",letterSpacing:\"-0.01em\",lineHeight:\"1.3em\"},controls:\"extended\",defaultFontType:\"sans-serif\"}});export default YouTubeVideoInfo;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"YouTubeVideoInfo\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTubeVideoInfo.map","// Generated by Framer (091ef16)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import YouTubeVideoInfo from\"https://framerusercontent.com/modules/UckdASHhzFoF5MzH8rny/n8Og5vOa4otdphhLLiku/YouTubeVideoInfo.js\";import{useTruncation,useTruncationTwoLines}from\"https://framerusercontent.com/modules/UBaRMlPACT0Yo3L4cJm7/fDoBVAGUHcH7XvSOaPXw/Truncate.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/383XKZfRkvb6OE1rbi9L/rlp8GBqm99vn7JLX6LHh/AahRHBzID.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/8bEONh85zh6EVWef3xaX/iDeL8FvZq4K1iZyrwME7/g4Cd13Htz.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/FgCyjYkD3v72Yze6ukPM/ax3zwg3odcSwu21D122s/HzisqCyKI.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/ILxqBITqgar7CwCeSxED/bJ2fkaSj4TyFOr5SMBcE/owysJjUmB.js\";const RichTextUseTruncation1n5xjd3=withCodeBoundaryForOverrides(RichText,{nodeId:\"JXO6QrgAS\",override:useTruncation,scopeId:\"KDa4VTwjd\"});const RichTextUseTruncationTwoLines8dpd7s=withCodeBoundaryForOverrides(RichText,{nodeId:\"Ezd83MQ76\",override:useTruncationTwoLines,scopeId:\"KDa4VTwjd\"});const RichTextUseTruncationTwoLines1ncm0m2=withCodeBoundaryForOverrides(RichText,{nodeId:\"SxsSOvGgv\",override:useTruncationTwoLines,scopeId:\"KDa4VTwjd\"});const YouTubeVideoInfoFonts=getFonts(YouTubeVideoInfo);const MotionAWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.a));const enabledGestures={ad28cqqOB:{hover:true},fZFIHtybp:{hover:true}};const cycleOrder=[\"ad28cqqOB\",\"fZFIHtybp\"];const serializationHash=\"framer-nPMf4\";const variantClassNames={ad28cqqOB:\"framer-v-1812f3k\",fZFIHtybp:\"framer-v-1jq435m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.6,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:5};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Course:\"ad28cqqOB\",Lesson:\"fZFIHtybp\"};const getProps=({description,duration,height,id,level,link,thumbnail,title,width,youTube,...props})=>{return{...props,eayk1a5zZ:thumbnail??props.eayk1a5zZ??{pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/l0Q44FNV79kayuROGMpIbga5pY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/l0Q44FNV79kayuROGMpIbga5pY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/l0Q44FNV79kayuROGMpIbga5pY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/l0Q44FNV79kayuROGMpIbga5pY.jpg 1920w\"},HYQCO105R:level??props.HYQCO105R??\"Beginner\",Kd9IP3Utk:title??props.Kd9IP3Utk??\"Multi-Stop and Conic Gradients\",PVr4uD4WI:link??props.PVr4uD4WI,UIEwEyCr3:youTube??props.UIEwEyCr3??\"https://www.youtube.com/playlist?list=PL9p5auxyrweNdaSZKq9k7cOcYDzZyR7fc\",variant:humanReadableVariantMap[props.variant]??props.variant??\"ad28cqqOB\",YE9mxD7R3:description??props.YE9mxD7R3??\"Subtitle\",zeomXB9jD:duration??props.zeomXB9jD??\"4:13\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,eayk1a5zZ,Kd9IP3Utk,zeomXB9jD,PVr4uD4WI,YE9mxD7R3,HYQCO105R,UIEwEyCr3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ad28cqqOB\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"fZFIHtybp-hover\")return false;if(baseVariant===\"fZFIHtybp\")return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"fZFIHtybp-hover\")return true;if(baseVariant===\"fZFIHtybp\")return true;return false;};const visible=isSet(YE9mxD7R3);const isDisplayed2=value=>{if(gestureVariant===\"fZFIHtybp-hover\")return false;if(baseVariant===\"fZFIHtybp\")return false;return value;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(Link,{href:PVr4uD4WI,motionChild:true,nodeId:\"ad28cqqOB\",openInNewTab:false,scopeId:\"KDa4VTwjd\",children:/*#__PURE__*/_jsxs(MotionAWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:`${cx(scopingClassNames,\"framer-1812f3k\",className,classNames)} framer-1hbs6up`,\"data-framer-appear-id\":\"1812f3k\",\"data-framer-name\":\"Course\",layoutDependency:layoutDependency,layoutId:\"ad28cqqOB\",optimized:true,ref:refBinding,style:{...style},...addPropertyOverrides({\"ad28cqqOB-hover\":{\"data-framer-name\":undefined},\"fZFIHtybp-hover\":{\"data-framer-name\":undefined},fZFIHtybp:{__framer__presenceInitial:animation2,\"data-framer-name\":\"Lesson\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kjppat\",\"data-framer-name\":\"Visual\",layoutDependency:layoutDependency,layoutId:\"A1thRpWxS\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(eayk1a5zZ)},className:\"framer-wigx4r\",\"data-framer-name\":\"Cover\",layoutDependency:layoutDependency,layoutId:\"W5DXCur__\",style:{opacity:1},variants:{\"ad28cqqOB-hover\":{opacity:.7},\"fZFIHtybp-hover\":{opacity:.7}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-160at6k\",\"data-border\":true,\"data-framer-name\":\"Border\",layoutDependency:layoutDependency,layoutId:\"Bwce32FeF\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.05)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1)\"}})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lpzgk9\",layoutDependency:layoutDependency,layoutId:\"WRzYQMyv1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gp51n8\",layoutDependency:layoutDependency,layoutId:\"aa3SrsvtD\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o9yrbv\",layoutDependency:layoutDependency,layoutId:\"H_K4gJFkk\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14ydyhj\",layoutDependency:layoutDependency,layoutId:\"lTXina3ra\",children:[/*#__PURE__*/_jsx(RichTextUseTruncation1n5xjd3,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-i078a0\",\"data-styles-preset\":\"AahRHBzID\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f7c1d118-c2a0-4569-b903-967f2348401c, rgb(255, 255, 255)))\"},children:\"Multi-Stop and Conic Gradients\"})}),className:\"framer-1n5xjd3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JXO6QrgAS\",style:{\"--extracted-r6o4lv\":\"var(--token-f7c1d118-c2a0-4569-b903-967f2348401c, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Kd9IP3Utk,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fZFIHtybp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dk5it0\",\"data-styles-preset\":\"HzisqCyKI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f7c1d118-c2a0-4569-b903-967f2348401c, rgb(255, 255, 255)))\"},children:\"Multi-Stop and Conic Gradients\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextUseTruncationTwoLines8dpd7s,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1chqh0j\",\"data-styles-preset\":\"owysJjUmB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8f5eb515-7a13-452b-a4ab-f35e2208a3f3, rgba(255, 255, 255, 0.6)))\"},children:\"Subtitle\"})}),className:\"framer-8dpd7s\",\"data-framer-name\":\"2 Lines\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ezd83MQ76\",style:{\"--extracted-r6o4lv\":\"var(--token-8f5eb515-7a13-452b-a4ab-f35e2208a3f3, rgba(255, 255, 255, 0.6))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YE9mxD7R3,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xheooq\",\"data-styles-preset\":\"g4Cd13Htz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8f5eb515-7a13-452b-a4ab-f35e2208a3f3, rgb(153, 153, 153)))\"},children:\"4:13\"})}),className:\"framer-1e213wf\",\"data-framer-name\":\"Level\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gY184afdY\",style:{\"--extracted-r6o4lv\":\"var(--token-8f5eb515-7a13-452b-a4ab-f35e2208a3f3, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zeomXB9jD,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2(visible)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gzaeln\",\"data-framer-name\":\"Level Time\",layoutDependency:layoutDependency,layoutId:\"tsK01nHlU\",children:[/*#__PURE__*/_jsx(RichTextUseTruncationTwoLines1ncm0m2,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1chqh0j\",\"data-styles-preset\":\"owysJjUmB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8f5eb515-7a13-452b-a4ab-f35e2208a3f3, rgb(153, 153, 153)))\"},children:\"Beginner\"})}),className:\"framer-1ncm0m2\",\"data-framer-name\":\"Level\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SxsSOvGgv\",style:{\"--extracted-r6o4lv\":\"var(--token-8f5eb515-7a13-452b-a4ab-f35e2208a3f3, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:HYQCO105R,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5zczgb-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WAPaasBbu-container\",nodeId:\"WAPaasBbu\",rendersWithMotion:true,scopeId:\"KDa4VTwjd\",children:/*#__PURE__*/_jsx(YouTubeVideoInfo,{apiKey:\"AIzaSyCaNjrDZpCcZUm7DfCunDfX5XBpok4VnWA\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.01em\",lineHeight:\"1.3em\"},height:\"100%\",id:\"WAPaasBbu\",layoutId:\"WAPaasBbu\",showPlaylistCount:false,textColor:\"var(--token-8f5eb515-7a13-452b-a4ab-f35e2208a3f3, rgba(255, 255, 255, 0.6))\",width:\"100%\",youtubeUrl:UIEwEyCr3})})})]})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nPMf4.framer-1hbs6up, .framer-nPMf4 .framer-1hbs6up { display: block; }\",\".framer-nPMf4.framer-1812f3k { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 20px 0px; position: relative; text-decoration: none; width: 283px; }\",\".framer-nPMf4 .framer-1kjppat { align-content: center; align-items: center; aspect-ratio: 1.7777777777777777 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 159px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-nPMf4 .framer-wigx4r { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-nPMf4 .framer-160at6k { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-nPMf4 .framer-lpzgk9 { align-content: flex-start; align-items: flex-start; 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: 100%; }\",\".framer-nPMf4 .framer-gp51n8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-nPMf4 .framer-o9yrbv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-nPMf4 .framer-14ydyhj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-nPMf4 .framer-1n5xjd3 { flex: none; height: 26px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-nPMf4 .framer-8dpd7s { --framer-text-wrap-override: balance; flex: none; height: auto; max-height: 50px; position: relative; width: 90%; }\",\".framer-nPMf4 .framer-1e213wf { --framer-text-wrap-override: balance; flex: none; height: auto; max-height: 50px; position: relative; width: auto; }\",\".framer-nPMf4 .framer-1gzaeln { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-nPMf4 .framer-1ncm0m2 { --framer-text-wrap-override: balance; flex: 0.9 0 0px; height: auto; max-height: 50px; position: relative; width: 1px; }\",\".framer-nPMf4 .framer-5zczgb-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-nPMf4.framer-v-1jq435m.framer-1812f3k { gap: 15px; padding: 0px; }\",\".framer-nPMf4.framer-v-1jq435m .framer-gp51n8 { gap: 5px; }\",\".framer-nPMf4.framer-v-1jq435m .framer-o9yrbv { flex-direction: row; }\",\".framer-nPMf4.framer-v-1jq435m .framer-14ydyhj { flex: 1 0 0px; gap: 2px; width: 1px; }\",\".framer-nPMf4.framer-v-1jq435m .framer-1n5xjd3 { height: 18px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-nPMf4[data-border=\"true\"]::after, .framer-nPMf4 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 276\n * @framerIntrinsicWidth 283\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fZFIHtybp\":{\"layout\":[\"fixed\",\"auto\"]},\"XIbXu695c\":{\"layout\":[\"fixed\",\"auto\"]},\"h3bZg7uBM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"eayk1a5zZ\":\"thumbnail\",\"Kd9IP3Utk\":\"title\",\"zeomXB9jD\":\"duration\",\"PVr4uD4WI\":\"link\",\"YE9mxD7R3\":\"description\",\"HYQCO105R\":\"level\",\"UIEwEyCr3\":\"youTube\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerKDa4VTwjd=withCSS(Component,css,\"framer-nPMf4\");export default FramerKDa4VTwjd;FramerKDa4VTwjd.displayName=\"Academy/Lesson Card\";FramerKDa4VTwjd.defaultProps={height:276,width:283};addPropertyControls(FramerKDa4VTwjd,{variant:{options:[\"ad28cqqOB\",\"fZFIHtybp\"],optionTitles:[\"Course\",\"Lesson\"],title:\"Variant\",type:ControlType.Enum},eayk1a5zZ:{__defaultAssetReference:\"data:framer/asset-reference,l0Q44FNV79kayuROGMpIbga5pY.jpg?originalFilename=Thumbnail-v3.jpg&preferredSize=auto\",title:\"Thumbnail\",type:ControlType.ResponsiveImage},Kd9IP3Utk:{defaultValue:\"Multi-Stop and Conic Gradients\",displayTextArea:false,title:\"Title\",type:ControlType.String},zeomXB9jD:{defaultValue:\"4:13\",displayTextArea:false,title:\"Duration\",type:ControlType.String},PVr4uD4WI:{title:\"Link\",type:ControlType.Link},YE9mxD7R3:{defaultValue:\"Subtitle\",displayTextArea:false,title:\"Description\",type:ControlType.String},HYQCO105R:{defaultValue:\"Beginner\",displayTextArea:false,title:\"Level\",type:ControlType.String},UIEwEyCr3:{defaultValue:\"https://www.youtube.com/playlist?list=PL9p5auxyrweNdaSZKq9k7cOcYDzZyR7fc\",placeholder:\"https://www.youtube.com/playlist?list=PL9p5auxyrweNdaSZKq9k7cOcYDzZyR7fc\",title:\"YouTube\",type:ControlType.String}});addFonts(FramerKDa4VTwjd,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...YouTubeVideoInfoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKDa4VTwjd\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fZFIHtybp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XIbXu695c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"h3bZg7uBM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"283\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"276\",\"framerVariables\":\"{\\\"eayk1a5zZ\\\":\\\"thumbnail\\\",\\\"Kd9IP3Utk\\\":\\\"title\\\",\\\"zeomXB9jD\\\":\\\"duration\\\",\\\"PVr4uD4WI\\\":\\\"link\\\",\\\"YE9mxD7R3\\\":\\\"description\\\",\\\"HYQCO105R\\\":\\\"level\\\",\\\"UIEwEyCr3\\\":\\\"youTube\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KDa4VTwjd.map"],"mappings":"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"}