{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js", "ssg:https://framerusercontent.com/modules/4JrNezxYtup36c30dWge/kAVXScOPS9DpiV33Fqtx/TBaXry2PS.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail)}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}// https://www.youtube.com/shorts/zwMEhBq4kYM\nif(pathSegments[0]===\"shorts\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FrameshipShopify from\"https://framerusercontent.com/modules/1kPVCHEEg0BrtObiM14s/o4kK4Ek69VrOt4aWlYqf/Frameship.js\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/IH6s9ASs8tTeXMp8PWOj/Cookies.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js\";import CardsPodcast from\"#framer/local/canvasComponent/GBlNhkESf/GBlNhkESf.js\";import CTA from\"#framer/local/canvasComponent/Ug7v1b2kC/Ug7v1b2kC.js\";import SectionHeader from\"#framer/local/canvasComponent/wYlK0tdvZ/wYlK0tdvZ.js\";import SectionFooter from\"#framer/local/canvasComponent/ztHwUWbjO/ztHwUWbjO.js\";import PodcastAi from\"#framer/local/collection/Jgqt_Yvyk/Jgqt_Yvyk.js\";import*as sharedStyle from\"#framer/local/css/jfkH74J6j/jfkH74J6j.js\";import*as sharedStyle2 from\"#framer/local/css/m6NRU7pSh/m6NRU7pSh.js\";import*as sharedStyle1 from\"#framer/local/css/WwRg3Gt8F/WwRg3Gt8F.js\";import metadataProvider from\"#framer/local/webPageMetadata/TBaXry2PS/TBaXry2PS.js\";const FrameshipShopifyFonts=getFonts(FrameshipShopify);const SectionHeaderFonts=getFonts(SectionHeader);const SectionHeaderWithVariantAppearEffect=withVariantAppearEffect(SectionHeader);const YouTubeFonts=getFonts(YouTube);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const CTAFonts=getFonts(CTA);const CardsPodcastFonts=getFonts(CardsPodcast);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const SectionFooterFonts=getFonts(SectionFooter);const CookieBannerFonts=getFonts(CookieBanner);const breakpoints={aBejdoTAL:\"(min-width: 768px) and (max-width: 1199px)\",EiIQYSXiN:\"(max-width: 767px)\",JUwLGU1p0:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-5haZB\";const variantClassNames={aBejdoTAL:\"framer-v-14z1vl3\",EiIQYSXiN:\"framer-v-vjwu8c\",JUwLGU1p0:\"framer-v-pvd4ap\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={bounce:0,delay:.3,duration:1.5,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:60};const transition2={bounce:0,delay:.35,duration:1.5,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition3={bounce:0,delay:.4,duration:1.5,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const transition4={bounce:0,delay:.35,duration:1,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={bounce:0,delay:.45,duration:1,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={bounce:0,delay:.5,duration:1.5,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,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 QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"JUwLGU1p0\",Phone:\"EiIQYSXiN\",Tablet:\"aBejdoTAL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"JUwLGU1p0\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"TBaXry2PS\",data:PodcastAi,type:\"Collection\"},select:[{collection:\"TBaXry2PS\",name:\"id\",type:\"Identifier\"},{collection:\"TBaXry2PS\",name:\"h3lOI4Zhx\",type:\"Identifier\"},{collection:\"TBaXry2PS\",name:\"vljJ9nmk9\",type:\"Identifier\"},{collection:\"TBaXry2PS\",name:\"le3N_Qluk\",type:\"Identifier\"},{collection:\"TBaXry2PS\",name:\"OWEYhOKgp\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"TBaXry2PS\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,le3N_Qluk=getFromCurrentRouteData(\"le3N_Qluk\")??\"\",h3lOI4Zhx=getFromCurrentRouteData(\"h3lOI4Zhx\")??\"\",vljJ9nmk9=getFromCurrentRouteData(\"vljJ9nmk9\"),OWEYhOKgp=getFromCurrentRouteData(\"OWEYhOKgp\")??\"\",JmUwhNgcQhBrseDcZH,sO1pnSBf3hBrseDcZH,h3lOI4ZhxhBrseDcZH,vljJ9nmk9hBrseDcZH,idhBrseDcZH,id=getFromCurrentRouteData(\"id\"),...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const elementId=useRouteElementId(\"fhtedlOkj\");const elementId1=useRouteElementId(\"W0bO7T9VD\");const activeLocaleCode=useLocaleCode();const textContent=toDateString(vljJ9nmk9,{dateStyle:\"medium\",locale:\"lt-LT\"},activeLocaleCode);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"JUwLGU1p0\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-2b0c1085-dfe1-4e6c-b0dd-0d5149cd7df1, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-pvd4ap\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bxegk5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"M7Q4W6uaw\",scopeId:\"TBaXry2PS\",children:/*#__PURE__*/_jsx(FrameshipShopify,{frameshipData:\"DsvNUpu5vpy1JLlMzY0NQAmDGZgH2LhSzp1A3puIzpgZKqiEKn1EapiM2YibmpjEUqbWvBvDzVfVPqf5FLeyzock2n11Jqe5Jqm5lq3q3YibmpjEUqbWvBvZzVfVlLwAzL4LmZzSJA4NwZjDGM3pwA3xQZ3VQAwWTAlL2LkVvBvVzVfVFoiAzY5MJnj9TnmyKohR2nc5JnfgJqgI3nhI3pvbwVuWlr\",height:\"100%\",id:\"M7Q4W6uaw\",layoutId:\"M7Q4W6uaw\",note:\"IMPORTANT\",productionDomain:\"\",shopifyAccessToken:\"\",shopUrl:\"\",stagingDomain:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a501qb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"j6PmYP6gA\",scopeId:\"TBaXry2PS\",children:/*#__PURE__*/_jsx(FrameshipShopify,{frameshipData:\"DsvNUpu5vpy1JLlMzY0NQAmDGZgH2LhSzp1A3puIzpgZKqiEKn1EapiM2YibmpjEUqbWvBvDzVfVPqf5FLeyzock2n11Jqe5Jqm5lq3q3YibmpjEUqbWvBvZzVfVlLwAzL4LmZzSJA4NwZjDGM3pwA3xQZ3VQAwWTAlL2LkVvBvVzVfVFoiAzY5MJnj9TnmyKohR2nc5JnfgJqgI3nhI3pvbwVuWlr\",height:\"100%\",id:\"j6PmYP6gA\",layoutId:\"j6PmYP6gA\",note:\"IMPORTANT\",productionDomain:\"\",shopifyAccessToken:\"\",shopUrl:\"\",stagingDomain:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:131,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q9xw4m-container\",layoutScroll:true,nodeId:\"eLB2ZFIf4\",rendersWithMotion:true,scopeId:\"TBaXry2PS\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aBejdoTAL:{__framer__targets:[{ref:ref1,target:\"Mq4LW4XKG\"},{offset:100,ref:ref2,target:\"fhtiIHnri\"}],variant:\"Mq4LW4XKG\"},EiIQYSXiN:{__framer__targets:[{ref:ref1,target:\"FialvwHGM\"},{offset:100,ref:ref2,target:\"P29vfLFE5\"}],variant:\"FialvwHGM\"}},children:/*#__PURE__*/_jsx(SectionHeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"lEtJWhIIF\"},{offset:100,ref:ref2,target:\"PAaEkyIc5\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"eLB2ZFIf4\",layoutId:\"eLB2ZFIf4\",style:{width:\"100%\"},variant:\"lEtJWhIIF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jgp4th\",id:elementId,ref:ref2}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xms9um\",id:elementId1,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hhf2jq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-jqk1ld-container\",\"data-framer-appear-id\":\"jqk1ld\",initial:animation1,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uiHyP3ZfN\",optimized:true,rendersWithMotion:true,scopeId:\"TBaXry2PS\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"uiHyP3ZfN\",isMixedBorderRadius:false,isRed:true,layoutId:\"uiHyP3ZfN\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:le3N_Qluk,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15c7j0v\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11g250i\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1xn4vow\",\"data-styles-preset\":\"jfkH74J6j\",style:{\"--framer-text-color\":\"var(--token-ef0dc23d-f9ea-47c6-9571-98390dbea8d8, rgb(48, 48, 48))\"},children:\"Kult\u016Brizmo kaina - su Luku Smagurausku l Sunkum\u0173 Klinikos Podcast'as #25\"})}),className:\"framer-3grn84\",\"data-framer-appear-id\":\"3grn84\",fonts:[\"Inter\"],initial:animation3,optimized:true,text:h3lOI4Zhx,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19i2120\",\"data-styles-preset\":\"WwRg3Gt8F\",style:{\"--framer-text-color\":\"var(--token-8dc5c803-edc8-4cc5-88ee-0fc382f4e7e6, rgb(143, 143, 143))\"},children:\"2024 09 10\"})}),className:\"framer-1lv6te4\",\"data-framer-appear-id\":\"1lv6te4\",fonts:[\"Inter\"],initial:animation3,optimized:true,text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e2wfh8\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:OWEYhOKgp,implicitPathVariables:undefined},{href:OWEYhOKgp,implicitPathVariables:undefined},{href:OWEYhOKgp,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aBejdoTAL:{y:(componentViewport?.y||0)+0+400+100+0+0+690+0+0+0},EiIQYSXiN:{y:(componentViewport?.y||0)+0+400+100+0+0+690+0+96+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+400+140+0+0+690+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EiIQYSXiN:{animate:animation6}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1c4xgd-container\",\"data-framer-appear-id\":\"1c4xgd\",initial:animation3,nodeId:\"qz3y9UYkL\",optimized:true,rendersWithMotion:true,scopeId:\"TBaXry2PS\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aBejdoTAL:{variant:\"SCVCGqcbW\",YxbjKjOpv:resolvedLinks[1]},EiIQYSXiN:{variant:\"SCVCGqcbW\",YxbjKjOpv:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(CTA,{cvQ9QMBJ0:false,height:\"100%\",id:\"qz3y9UYkL\",iuLcLAkAH:\"\u017Di\u016Br\u0117ti Youtube\",layoutId:\"qz3y9UYkL\",style:{height:\"100%\"},variant:\"Y2S_b3eAk\",width:\"100%\",YxbjKjOpv:resolvedLinks[0]})})})})})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aBejdoTAL:{animate:animation7,initial:animation3,optimized:true},EiIQYSXiN:{animate:animation7,initial:animation3,optimized:true}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{className:\"framer-1hzb6e1\",\"data-framer-appear-id\":\"1hzb6e1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z0v6iz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-amwh1g\",\"data-styles-preset\":\"m6NRU7pSh\",style:{\"--framer-text-color\":\"var(--token-ef0dc23d-f9ea-47c6-9571-98390dbea8d8, rgb(48, 48, 48))\"},children:\"Susij\u0119 epizodai\"})}),className:\"framer-wwwomm\",\"data-framer-name\":\"Straipsniai\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JO_RHdCMZ\"},implicitPathVariables:undefined},{href:{webPageId:\"JO_RHdCMZ\"},implicitPathVariables:undefined},{href:{webPageId:\"JO_RHdCMZ\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aBejdoTAL:{y:(componentViewport?.y||0)+0+1354+0+0+0},EiIQYSXiN:{y:(componentViewport?.y||0)+0+1466+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1434+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q7i2vr-container\",nodeId:\"h99EqMPk2\",scopeId:\"TBaXry2PS\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aBejdoTAL:{variant:\"SCVCGqcbW\",YxbjKjOpv:resolvedLinks1[1]},EiIQYSXiN:{variant:\"SCVCGqcbW\",YxbjKjOpv:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(CTA,{cvQ9QMBJ0:false,height:\"100%\",id:\"h99EqMPk2\",iuLcLAkAH:\"Daugiau\",layoutId:\"h99EqMPk2\",variant:\"Y2S_b3eAk\",width:\"100%\",YxbjKjOpv:resolvedLinks1[0]})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xnc2sp\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"hBrseDcZH\",data:PodcastAi,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"hBrseDcZH\",name:\"JmUwhNgcQ\",type:\"Identifier\"},{collection:\"hBrseDcZH\",name:\"sO1pnSBf3\",type:\"Identifier\"},{collection:\"hBrseDcZH\",name:\"h3lOI4Zhx\",type:\"Identifier\"},{collection:\"hBrseDcZH\",name:\"vljJ9nmk9\",type:\"Identifier\"},{collection:\"hBrseDcZH\",name:\"id\",type:\"Identifier\"}],where:{left:{type:\"LiteralValue\",value:id},operator:\"in\",right:{collection:\"hBrseDcZH\",name:\"VOBKthncz\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({h3lOI4Zhx:h3lOI4ZhxhBrseDcZH,id:idhBrseDcZH,JmUwhNgcQ:JmUwhNgcQhBrseDcZH,sO1pnSBf3:sO1pnSBf3hBrseDcZH,vljJ9nmk9:vljJ9nmk9hBrseDcZH},index)=>{JmUwhNgcQhBrseDcZH??=\"\";h3lOI4ZhxhBrseDcZH??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`hBrseDcZH-${idhBrseDcZH}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{JmUwhNgcQ:JmUwhNgcQhBrseDcZH},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{JmUwhNgcQ:JmUwhNgcQhBrseDcZH},webPageId:\"TBaXry2PS\"},motionChild:true,nodeId:\"n_G9nI8pT\",scopeId:\"TBaXry2PS\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-tykx0k framer-1rwaqzu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aBejdoTAL:{y:(componentViewport?.y||0)+0+1354+0+56+0+0},EiIQYSXiN:{y:(componentViewport?.y||0)+0+1466+0+56+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:484,width:`max(${componentViewport?.width||\"100vw\"} - 16px, 1px)`,y:(componentViewport?.y||0)+0+1434+0+56+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b5ikzh-container\",nodeId:\"VNTp26ly9\",scopeId:\"TBaXry2PS\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aBejdoTAL:{variant:\"unRqfvCIr\"},EiIQYSXiN:{variant:\"unRqfvCIr\"}},children:/*#__PURE__*/_jsx(CardsPodcast,{c4epS_lWy:toDateString(vljJ9nmk9hBrseDcZH,{dateStyle:\"medium\",locale:\"lt-LT\"},activeLocaleCode),cCBwgaxzA:\"var(--token-ef0dc23d-f9ea-47c6-9571-98390dbea8d8, rgb(48, 48, 48))\",height:\"100%\",id:\"VNTp26ly9\",layoutId:\"VNTp26ly9\",P3br3yQcP:h3lOI4ZhxhBrseDcZH,rw8HkYILk:toResponsiveImage(sO1pnSBf3hBrseDcZH),style:{width:\"100%\"},variant:\"pDPX8hPhJ\",width:\"100%\"})})})})})})})})},idhBrseDcZH);})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aBejdoTAL:{y:(componentViewport?.y||0)+0+1974},EiIQYSXiN:{y:(componentViewport?.y||0)+0+2058}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:427,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2106,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9l12xi-container\",nodeId:\"QoBK9sHwk\",scopeId:\"TBaXry2PS\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aBejdoTAL:{variant:\"XSK2jUVU6\"},EiIQYSXiN:{variant:\"MCMq2yFit\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"QoBK9sHwk\",layoutId:\"QoBK9sHwk\",style:{width:\"100%\"},variant:\"LoFEpLbFT\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f2yUKe0pN\"},implicitPathVariables:undefined},{href:{webPageId:\"f2yUKe0pN\"},implicitPathVariables:undefined},{href:{webPageId:\"f2yUKe0pN\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9ghsk2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"Pg_xqqRdx\",scopeId:\"TBaXry2PS\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aBejdoTAL:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:false,preferences:false},euDescription:\"Naudojame slapukus, kad u\u017Etikrintume pagrindines svetain\u0117s funkcijas, pagerintume j\u016Bs\u0173 nar\u0161ymo patirt\u012F ir analizuotume naudojim\u0105, kaip nurodyta m\u016Bs\u0173 \",euPolicy:{label:\"privatumo politikoje\",link:resolvedLinks2[1],prefix:\"\"},euShowReject:true,euTitle:\"Privatumo nustatymai\",euType:\"medium\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"Naudojame slapukus pagrindin\u0117ms funkcijoms, geresnei patir\u010Diai ir naudojimo analizei, kaip nurodyta m\u016Bs\u0173 privatumo politikoje.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"}},EiIQYSXiN:{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:24,paddingBottom:24,paddingLeft:24,paddingPerSide:false,paddingRight:24,paddingTop:24,position:\"bottom-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:0,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"var(--token-0e47b0d8-567c-4ca6-8a1a-266f1c302548, rgb(0, 0, 0))\",fill:\"rgb(255, 255, 255)\",fontBody:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.3em\"},fontTitle:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},link:\"rgb(52, 125, 209)\",shadow:{shadowBlur:32,shadowColor:\"rgba(0, 0, 0, 0.1)\",shadowX:0,shadowY:2}},width:320,zIndex:10},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:false,preferences:false},euDescription:\"Naudojame slapukus, kad u\u017Etikrintume pagrindines svetain\u0117s funkcijas, pagerintume j\u016Bs\u0173 nar\u0161ymo patirt\u012F ir analizuotume naudojim\u0105, kaip nurodyta m\u016Bs\u0173 \",euPolicy:{label:\"privatumo politikoje\",link:resolvedLinks2[2],prefix:\"\"},euShowReject:true,euTitle:\"Privatumo nustatymai\",euType:\"medium\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"Naudojame slapukus pagrindin\u0117ms funkcijoms, geresnei patir\u010Diai ir naudojimo analizei, kaip nurodyta m\u016Bs\u0173 privatumo politikoje.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"}}},children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:24,paddingBottom:24,paddingLeft:24,paddingPerSide:false,paddingRight:24,paddingTop:24,position:\"bottom-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:0,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"var(--token-0e47b0d8-567c-4ca6-8a1a-266f1c302548, rgb(0, 0, 0))\",fill:\"rgb(255, 255, 255)\",fontBody:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.3em\"},fontTitle:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},link:\"rgb(52, 125, 209)\",shadow:{shadowBlur:32,shadowColor:\"rgba(0, 0, 0, 0.1)\",shadowX:0,shadowY:2}},width:520,zIndex:10},button:{borderRadius:48,direction:\"row\",fluid:true,font:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},hoverOpacity:.6,labels:{accept:\"Priimti\",acceptAll:\"Priimti visus\",confirm:\"Patvirtinu\",customize:\"Pakeisti\",reject:\"Atsisakyti\",rejectAll:\"Atsisakyti vis\u0173\",save:\"I\u0161saugoti\"},padding:10,paddingBottom:10,paddingLeft:16,paddingPerSide:true,paddingRight:16,paddingTop:10,primary:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\"},secondary:{color:\"rgb(68, 68, 68)\",fill:\"var(--token-0550c6ad-250f-4928-a1f8-9b6c903da766, rgb(236, 237, 237))\"},tapOpacity:.4},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:false,preferences:false},euDescription:\"Naudojame slapukus, kad u\u017Etikrintume pagrindines svetain\u0117s funkcijas, pagerintume j\u016Bs\u0173 nar\u0161ymo patirt\u012F ir analizuotume naudojim\u0105, kaip nurodyta m\u016Bs\u0173 \",euPolicy:{label:\"privatumo politikoje\",link:resolvedLinks2[0],prefix:\"\"},euShowReject:true,euTitle:\"Privatumo nustatymai\",euType:\"medium\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"Naudojame slapukus pagrindin\u0117ms funkcijoms, geresnei patir\u010Diai ir naudojimo analizei, kaip nurodyta m\u016Bs\u0173 privatumo politikoje.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"},gtmId:\"GTM-5WQHZBMS\",height:\"100%\",id:\"Pg_xqqRdx\",layoutId:\"Pg_xqqRdx\",options:{analytics:{description:\"Enables tracking of performance.\",title:\"Analytics\"},marketing:{description:\"Enables ads personalization and tracking.\",title:\"Marketing\"},necessary:{description:\"Enables security and basic functionality.\",optional:true,title:\"Necessary\"},preferences:{description:\"Enables personalized content and settings.\",title:\"Preferences\"},preview:false,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{},fontTitle:{},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"rgb(0, 0, 0)\",toggleColorInactive:\"rgba(0, 0, 0, 0.1)\"}},preview:true,trigger:{color:\"rgb(51, 51, 51)\",iconSize:24,iconType:\"default\",text:\"Cookie Settings\",textFont:{},type:\"none\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5haZB.framer-1rwaqzu, .framer-5haZB .framer-1rwaqzu { display: block; }\",\".framer-5haZB.framer-pvd4ap { align-content: center; align-items: center; background-color: var(--token-2b0c1085-dfe1-4e6c-b0dd-0d5149cd7df1, #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-5haZB .framer-bxegk5-container, .framer-5haZB .framer-1a501qb-container, .framer-5haZB .framer-q7i2vr-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-5haZB .framer-q9xw4m-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-5haZB .framer-1jgp4th { flex: none; height: 1px; left: 0px; overflow: visible; position: absolute; right: 0px; scroll-margin-top: 100px; top: 200px; z-index: 1; }\",\".framer-5haZB .framer-1xms9um { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 140px 8px 140px 8px; position: relative; width: 100%; }\",\".framer-5haZB .framer-hhf2jq { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5haZB .framer-jqk1ld-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5haZB .framer-15c7j0v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5haZB .framer-11g250i { 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: center; overflow: visible; padding: 0px 0px 0px 16px; position: relative; width: 1px; }\",\".framer-5haZB .framer-3grn84 { --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-5haZB .framer-1lv6te4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5haZB .framer-e2wfh8 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px 16px 0px 0px; position: relative; width: 1px; }\",\".framer-5haZB .framer-1c4xgd-container { flex: none; height: 40px; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5haZB .framer-1hzb6e1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 8px 80px 8px; position: relative; width: 100%; }\",\".framer-5haZB .framer-z0v6iz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-5haZB .framer-wwwomm { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5haZB .framer-1xnc2sp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-5haZB .framer-tykx0k { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px 0px 52px 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-5haZB .framer-b5ikzh-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-5haZB .framer-9l12xi-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-5haZB .framer-9ghsk2-container { bottom: 24px; flex: none; height: auto; position: fixed; right: 24px; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5haZB.framer-pvd4ap, .framer-5haZB .framer-1xms9um, .framer-5haZB .framer-hhf2jq, .framer-5haZB .framer-15c7j0v, .framer-5haZB .framer-11g250i, .framer-5haZB .framer-e2wfh8, .framer-5haZB .framer-1hzb6e1, .framer-5haZB .framer-1xnc2sp, .framer-5haZB .framer-tykx0k { gap: 0px; } .framer-5haZB.framer-pvd4ap > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5haZB.framer-pvd4ap > :first-child, .framer-5haZB .framer-1xms9um > :first-child, .framer-5haZB .framer-hhf2jq > :first-child, .framer-5haZB .framer-11g250i > :first-child, .framer-5haZB .framer-e2wfh8 > :first-child, .framer-5haZB .framer-1hzb6e1 > :first-child { margin-top: 0px; } .framer-5haZB.framer-pvd4ap > :last-child, .framer-5haZB .framer-1xms9um > :last-child, .framer-5haZB .framer-hhf2jq > :last-child, .framer-5haZB .framer-11g250i > :last-child, .framer-5haZB .framer-e2wfh8 > :last-child, .framer-5haZB .framer-1hzb6e1 > :last-child { margin-bottom: 0px; } .framer-5haZB .framer-1xms9um > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5haZB .framer-hhf2jq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-5haZB .framer-15c7j0v > *, .framer-5haZB .framer-1xnc2sp > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-5haZB .framer-15c7j0v > :first-child, .framer-5haZB .framer-1xnc2sp > :first-child, .framer-5haZB .framer-tykx0k > :first-child { margin-left: 0px; } .framer-5haZB .framer-15c7j0v > :last-child, .framer-5haZB .framer-1xnc2sp > :last-child, .framer-5haZB .framer-tykx0k > :last-child { margin-right: 0px; } .framer-5haZB .framer-11g250i > *, .framer-5haZB .framer-e2wfh8 > *, .framer-5haZB .framer-1hzb6e1 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-5haZB .framer-tykx0k > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,\"@media (min-width: 768px) and (max-width: 1199px) { .framer-5haZB.framer-pvd4ap { width: 768px; } .framer-5haZB .framer-1xms9um { padding: 100px 8px 100px 8px; } .framer-5haZB .framer-1hzb6e1 { will-change: var(--framer-will-change-effect-override, transform); } .framer-5haZB .framer-tykx0k { padding: 0px; }}\",\"@media (max-width: 767px) { .framer-5haZB.framer-pvd4ap { width: 375px; } .framer-5haZB .framer-1xms9um { padding: 100px 8px 140px 8px; } .framer-5haZB .framer-15c7j0v { flex-direction: column; gap: 32px; } .framer-5haZB .framer-11g250i, .framer-5haZB .framer-tykx0k { flex: none; width: 100%; } .framer-5haZB .framer-e2wfh8 { align-content: flex-start; align-items: flex-start; flex: none; padding: 0px 16px 0px 16px; width: 100%; } .framer-5haZB .framer-1hzb6e1 { padding: 0px 8px 0px 8px; will-change: var(--framer-will-change-effect-override, transform); } .framer-5haZB .framer-wwwomm { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-5haZB .framer-1xnc2sp { flex-direction: column; } .framer-5haZB .framer-9ghsk2-container { right: 8px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5haZB .framer-15c7j0v, .framer-5haZB .framer-1xnc2sp { gap: 0px; } .framer-5haZB .framer-15c7j0v > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-5haZB .framer-15c7j0v > :first-child, .framer-5haZB .framer-1xnc2sp > :first-child { margin-top: 0px; } .framer-5haZB .framer-15c7j0v > :last-child, .framer-5haZB .framer-1xnc2sp > :last-child { margin-bottom: 0px; } .framer-5haZB .framer-1xnc2sp > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1677\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"aBejdoTAL\":{\"layout\":[\"fixed\",\"auto\"]},\"EiIQYSXiN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"fhtedlOkj\":{\"pattern\":\":fhtedlOkj\",\"name\":\"line\"},\"W0bO7T9VD\":{\"pattern\":\":W0bO7T9VD\",\"name\":\"hero\"}}\n * @framerResponsiveScreen\n */const FramerTBaXry2PS=withCSS(Component,css,\"framer-5haZB\");export default FramerTBaXry2PS;FramerTBaXry2PS.displayName=\"Podcasts\";FramerTBaXry2PS.defaultProps={height:1677,width:1200};addFonts(FramerTBaXry2PS,[{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:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]},...FrameshipShopifyFonts,...SectionHeaderFonts,...YouTubeFonts,...CTAFonts,...CardsPodcastFonts,...SectionFooterFonts,...CookieBannerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTBaXry2PS\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"fhtedlOkj\\\":{\\\"pattern\\\":\\\":fhtedlOkj\\\",\\\"name\\\":\\\"line\\\"},\\\"W0bO7T9VD\\\":{\\\"pattern\\\":\\\":W0bO7T9VD\\\",\\\"name\\\":\\\"hero\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1677\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aBejdoTAL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EiIQYSXiN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "FrameshipShopifyFonts", "getFonts", "Frameship", "SectionHeaderFonts", "wYlK0tdvZ_default", "SectionHeaderWithVariantAppearEffect", "withVariantAppearEffect", "YouTubeFonts", "Youtube", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "CTAFonts", "Ug7v1b2kC_default", "CardsPodcastFonts", "GBlNhkESf_default", "MotionDivWithOptimizedAppearEffect", "motion", "SectionFooterFonts", "ztHwUWbjO_default", "CookieBannerFonts", "CookieBanner", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "transition4", "animation5", "transition5", "animation6", "transition6", "animation7", "toResponsiveImage", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "Jgqt_Yvyk_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "le3N_Qluk", "h3lOI4Zhx", "vljJ9nmk9", "OWEYhOKgp", "JmUwhNgcQhBrseDcZH", "sO1pnSBf3hBrseDcZH", "h3lOI4ZhxhBrseDcZH", "vljJ9nmk9hBrseDcZH", "idhBrseDcZH", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "ref2", "elementId", "useRouteElementId", "elementId1", "activeLocaleCode", "useLocaleCode", "textContent", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "Frameship", "PropertyOverrides2", "SectionHeaderWithVariantAppearEffect", "ContainerWithOptimizedAppearEffect", "Youtube", "RichTextWithOptimizedAppearEffect", "x", "ResolveLinks", "resolvedLinks", "Ug7v1b2kC_default", "MotionDivWithOptimizedAppearEffect", "RichText2", "resolvedLinks1", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "GBlNhkESf_default", "ztHwUWbjO_default", "resolvedLinks2", "CookieBanner", "css", "FramerTBaXry2PS", "withCSS", "TBaXry2PS_default", "addFonts", "FrameshipShopifyFonts", "SectionHeaderFonts", "YouTubeFonts", "CTAFonts", "CardsPodcastFonts", "SectionFooterFonts", "CookieBannerFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
