{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js", "ssg:https://framerusercontent.com/modules/N1S5JucjZ0ZxytegjNrN/pi8sFIpCNZn1XlrVs78H/aJqGuPb3Q.js", "ssg:https://framerusercontent.com/modules/8OGIa7qGK6vMq1nxb9Ih/dQmFAYet1hXqBCVbqkTm/BgvDaa0zy.js", "ssg:https://framerusercontent.com/modules/0cmSGMRxS15XVbsTcN7c/WyRAYepUW5RbelbuGHsG/slv1lmPDj.js", "ssg:https://framerusercontent.com/modules/BuUWr0uOCCwctDGooefs/ZayQjyovJbDcvgAxEpOk/UGC771HJl.js", "ssg:https://framerusercontent.com/modules/2vsW4MhxVFkbD8h3x8en/MPtA8GHQLs5S64QLYrQb/hSym6Majn.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}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,originalSearchParams]=parsedURL;const searchParams=embedURL.searchParams;if(originalSearchParams){for(const[param,value]of originalSearchParams){searchParams.set(param,value);}}// https://developers.google.com/youtube/player_parameters\nsearchParams.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\"}),showThumbnail&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://i.ytimg.com\"}),/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",src:getThumbnailURL(videoId,thumbnail),style:{...videoStyle,objectFit:\"cover\"}})]}),!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,null];}const searchParams=url.searchParams;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(\"/\");const page=pathSegments[0];// https://www.youtube.com/watch?v=Fop2oskTug8\nif(page===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}// https://www.youtube.com/embed/Fop2oskTug8\nif(page===\"embed\"){const videoId=pathSegments[1];return[videoId,url,searchParams];}// https://www.youtube.com/shorts/zwMEhBq4kYM / https://www.youtube.com/live/XlWSzaluBKk\nif(page===\"shorts\"||page===\"live\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}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\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (c499f43)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/XfZMCh1klp4aOP2okOyj/Y21pv9cEt2obO130OsUF/CktptDtHQ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/KVguuDCslpICo4bHZOYz/DDhvWO5zAGCZpNcLl7NE/wsQ6j8DdZ.js\";import ImagesStandardizedImage from\"https://framerusercontent.com/modules/ySTJe3RBw6m3qjOqEGVh/uXRAJlriJ4YA5rumtrCx/GM9ZRpLhS.js\";const ImagesStandardizedImageFonts=getFonts(ImagesStandardizedImage);const enabledGestures={mjV2lVWhZ:{hover:true}};const cycleOrder=[\"b60lkmha1\",\"mjV2lVWhZ\"];const serializationHash=\"framer-5dmNC\";const variantClassNames={b60lkmha1:\"framer-v-1371h0i\",mjV2lVWhZ:\"framer-v-uqcsv\"};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={duration:0,type:\"tween\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const negate=value=>{return!value;};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.create(React.Fragment);const humanReadableVariantMap={Fit:\"mjV2lVWhZ\",Fixed:\"b60lkmha1\"};const getProps=({background,height,id,image,link,tag,textDark,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3,_ref4;return{...props,dZ3yCmzWv:(_ref=image!==null&&image!==void 0?image:props.dZ3yCmzWv)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/Sg1fC0dmtSsDh4Hws9thxQRADA.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Sg1fC0dmtSsDh4Hws9thxQRADA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Sg1fC0dmtSsDh4Hws9thxQRADA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Sg1fC0dmtSsDh4Hws9thxQRADA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Sg1fC0dmtSsDh4Hws9thxQRADA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Sg1fC0dmtSsDh4Hws9thxQRADA.jpg 6000w\"},SmVnM1NhP:link!==null&&link!==void 0?link:props.SmVnM1NhP,sreOZYM0v:(_ref1=tag!==null&&tag!==void 0?tag:props.sreOZYM0v)!==null&&_ref1!==void 0?_ref1:\"Analysis\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"b60lkmha1\",vbdAcBEtT:textDark!==null&&textDark!==void 0?textDark:props.vbdAcBEtT,xkPkbNllA:(_ref3=title!==null&&title!==void 0?title:props.xkPkbNllA)!==null&&_ref3!==void 0?_ref3:\"Q&A: How Gen Z Wants to Mark 250 Years\",Z0kZGyjZl:(_ref4=background!==null&&background!==void 0?background:props.Z0kZGyjZl)!==null&&_ref4!==void 0?_ref4:\"var(--token-7d3d1aa4-1f92-45ce-bbee-8476ffb0f592, rgb(113, 153, 25))\"};};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,SmVnM1NhP,dZ3yCmzWv,Z0kZGyjZl,vbdAcBEtT,xkPkbNllA,sreOZYM0v,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"b60lkmha1\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=negate(vbdAcBEtT);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,...addPropertyOverrides({mjV2lVWhZ:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:SmVnM1NhP,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1371h0i\",className,classNames)} framer-q08bh`,\"data-framer-name\":\"Fixed\",layoutDependency:layoutDependency,layoutId:\"b60lkmha1\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:Z0kZGyjZl,borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"mjV2lVWhZ-hover\":{backgroundColor:\"var(--token-020e04c6-0ba1-42f6-89b5-52f42228fb1e, rgb(4, 13, 25))\"}},...addPropertyOverrides({\"mjV2lVWhZ-hover\":{\"data-framer-name\":undefined},mjV2lVWhZ:{\"data-framer-name\":\"Fit\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x5amf0-container\",layoutDependency:layoutDependency,layoutId:\"k98tfYRSx-container\",children:/*#__PURE__*/_jsx(ImagesStandardizedImage,{height:\"100%\",id:\"k98tfYRSx\",layoutId:\"k98tfYRSx\",SNMnFZNxL:0,style:{height:\"100%\",width:\"100%\"},variant:\"k5c6eoXri\",width:\"100%\",yEX6tUGh9:toResponsiveImage(dZ3yCmzWv)})})}),visible&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g3cqt8\",\"data-framer-name\":\"Text Light\",layoutDependency:layoutDependency,layoutId:\"o4O9WSAVy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0JDIE1pa3NlciBSZWd1bGFy\",\"--framer-font-family\":'\"BC Mikser Regular\", \"BC Mikser Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255)))\"},children:\"Q&A: How Gen Z Wants to Mark 250 Years\"})}),className:\"framer-1scb5u8\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;BC Mikser Regular\"],layoutDependency:layoutDependency,layoutId:\"YJPG9bxi2\",style:{\"--extracted-a0htzi\":\"var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:xkPkbNllA,variants:{mjV2lVWhZ:{\"--extracted-1eung3n\":\"var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mjV2lVWhZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-113zj22\",\"data-styles-preset\":\"CktptDtHQ\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255)))\"},children:\"Q&A: How Gen Z Wants to Mark 250 Years\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-kuccl1\",\"data-styles-preset\":\"wsQ6j8DdZ\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255)))\"},children:\"Analysis\"})}),className:\"framer-1dncd7i\",\"data-framer-name\":\"Tag\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iD3lWFU0D\",style:{\"--extracted-1w1cjl5\":\"var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:sreOZYM0v,verticalAlignment:\"top\",withExternalLayout:true})]}),vbdAcBEtT&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wgon8g\",\"data-framer-name\":\"Text Dark\",layoutDependency:layoutDependency,layoutId:\"CTV92rYQy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0JDIE1pa3NlciBSZWd1bGFy\",\"--framer-font-family\":'\"BC Mikser Regular\", \"BC Mikser Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-5bd4ca79-e56c-468b-93d0-59646b7b8d75, rgb(0, 0, 0)))\"},children:\"Q&A: How Gen Z Wants to Mark 250 Years\"})}),className:\"framer-lzauut\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;BC Mikser Regular\"],layoutDependency:layoutDependency,layoutId:\"iqnVI3Rvs\",style:{\"--extracted-a0htzi\":\"var(--token-5bd4ca79-e56c-468b-93d0-59646b7b8d75, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:xkPkbNllA,variants:{mjV2lVWhZ:{\"--extracted-1eung3n\":\"var(--token-5bd4ca79-e56c-468b-93d0-59646b7b8d75, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mjV2lVWhZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-113zj22\",\"data-styles-preset\":\"CktptDtHQ\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-5bd4ca79-e56c-468b-93d0-59646b7b8d75, rgb(0, 0, 0)))\"},children:\"Q&A: How Gen Z Wants to Mark 250 Years\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-kuccl1\",\"data-styles-preset\":\"wsQ6j8DdZ\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-5bd4ca79-e56c-468b-93d0-59646b7b8d75, rgb(0, 0, 0)))\"},children:\"Analysis\"})}),className:\"framer-dpbpfo\",\"data-framer-name\":\"Tag\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HtTTgviS1\",style:{\"--extracted-1w1cjl5\":\"var(--token-5bd4ca79-e56c-468b-93d0-59646b7b8d75, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:sreOZYM0v,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5dmNC.framer-q08bh, .framer-5dmNC .framer-q08bh { display: block; }\",\".framer-5dmNC.framer-1371h0i { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 371px; justify-content: flex-start; max-width: 286px; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 270px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5dmNC .framer-1x5amf0-container { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 203px); position: relative; width: 100%; }\",\".framer-5dmNC .framer-g3cqt8, .framer-5dmNC .framer-wgon8g { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-5dmNC .framer-1scb5u8, .framer-5dmNC .framer-1dncd7i, .framer-5dmNC .framer-lzauut, .framer-5dmNC .framer-dpbpfo { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5dmNC.framer-1371h0i { gap: 0px; } .framer-5dmNC.framer-1371h0i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5dmNC.framer-1371h0i > :first-child { margin-top: 0px; } .framer-5dmNC.framer-1371h0i > :last-child { margin-bottom: 0px; } }\",\".framer-5dmNC.framer-v-uqcsv.framer-1371h0i { cursor: pointer; height: min-content; max-width: unset; }\",\".framer-5dmNC.framer-v-uqcsv .framer-g3cqt8, .framer-5dmNC.framer-v-uqcsv .framer-wgon8g { flex: none; gap: 20px; height: min-content; justify-content: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5dmNC.framer-v-uqcsv .framer-g3cqt8, .framer-5dmNC.framer-v-uqcsv .framer-wgon8g { gap: 0px; } .framer-5dmNC.framer-v-uqcsv .framer-g3cqt8 > *, .framer-5dmNC.framer-v-uqcsv .framer-wgon8g > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-5dmNC.framer-v-uqcsv .framer-g3cqt8 > :first-child, .framer-5dmNC.framer-v-uqcsv .framer-wgon8g > :first-child { margin-top: 0px; } .framer-5dmNC.framer-v-uqcsv .framer-g3cqt8 > :last-child, .framer-5dmNC.framer-v-uqcsv .framer-wgon8g > :last-child { margin-bottom: 0px; } }\",\".framer-5dmNC.framer-v-uqcsv.hover.framer-1371h0i { max-width: unset; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 371\n * @framerIntrinsicWidth 270\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"286px\",null,null]},\"mjV2lVWhZ\":{\"layout\":[\"fixed\",\"auto\"]},\"NlNA1bWGu\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"SmVnM1NhP\":\"link\",\"dZ3yCmzWv\":\"image\",\"Z0kZGyjZl\":\"background\",\"vbdAcBEtT\":\"textDark\",\"xkPkbNllA\":\"title\",\"sreOZYM0v\":\"tag\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraJqGuPb3Q=withCSS(Component,css,\"framer-5dmNC\");export default FrameraJqGuPb3Q;FrameraJqGuPb3Q.displayName=\"Y250/Voices Card\";FrameraJqGuPb3Q.defaultProps={height:371,width:270};addPropertyControls(FrameraJqGuPb3Q,{variant:{options:[\"b60lkmha1\",\"mjV2lVWhZ\"],optionTitles:[\"Fixed\",\"Fit\"],title:\"Variant\",type:ControlType.Enum},SmVnM1NhP:{title:\"Link\",type:ControlType.Link},dZ3yCmzWv:{__defaultAssetReference:\"data:framer/asset-reference,Sg1fC0dmtSsDh4Hws9thxQRADA.jpg?originalFilename=photo-1726231160459-308206afb13c%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfGFsbHw4fHx8fHx8Mnx8MTcyNzgxMTA1MHw%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},Z0kZGyjZl:{defaultValue:'var(--token-7d3d1aa4-1f92-45ce-bbee-8476ffb0f592, rgb(113, 153, 25)) /* {\"name\":\"Y250 Dark Lime\"} */',title:\"Background\",type:ControlType.Color},vbdAcBEtT:{defaultValue:false,title:\"Text Dark\",type:ControlType.Boolean},xkPkbNllA:{defaultValue:\"Q&A: How Gen Z Wants to Mark 250 Years\",displayTextArea:false,title:\"Title\",type:ControlType.String},sreOZYM0v:{defaultValue:\"Analysis\",displayTextArea:false,title:\"Tag\",type:ControlType.String}});addFonts(FrameraJqGuPb3Q,[{explicitInter:true,fonts:[{family:\"BC Mikser Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/zHojoho4TzVoMFbqRJDh2vj7j8.woff2\"},{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\"}]},...ImagesStandardizedImageFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraJqGuPb3Q\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"270\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"286px\\\",null,null]},\\\"mjV2lVWhZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NlNA1bWGu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"371\",\"framerVariables\":\"{\\\"SmVnM1NhP\\\":\\\"link\\\",\\\"dZ3yCmzWv\\\":\\\"image\\\",\\\"Z0kZGyjZl\\\":\\\"background\\\",\\\"vbdAcBEtT\\\":\\\"textDark\\\",\\\"xkPkbNllA\\\":\\\"title\\\",\\\"sreOZYM0v\\\":\\\"tag\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c499f43)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-XKE0L\";const variantClassNames={T2SjrxZyd:\"framer-v-e08ia3\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==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.create(React.Fragment);const getProps=({cite,height,id,image,text,width,...props})=>{var _ref,_ref1;return{...props,as3hW0q4h:(_ref=cite!==null&&cite!==void 0?cite:props.as3hW0q4h)!==null&&_ref!==void 0?_ref:\"Martin Luther King Jr.\",Hcaux10H1:(_ref1=text!==null&&text!==void 0?text:props.Hcaux10H1)!==null&&_ref1!==void 0?_ref1:\"Darkness cannot drive out darkness: only light can do that. Hate cannot drive out hate: only love can do that.\",VB62BB91A:image!==null&&image!==void 0?image:props.VB62BB91A};};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,Hcaux10H1,as3hW0q4h,VB62BB91A,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"T2SjrxZyd\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=isSet(VB62BB91A);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-e08ia3\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"T2SjrxZyd\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},children:[visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(VB62BB91A),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-vj105g\",layoutDependency:layoutDependency,layoutId:\"bpBY1YvTu\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qaxjxo\",layoutDependency:layoutDependency,layoutId:\"kPK4p5FoU\",style:{backgroundColor:\"var(--token-6f855ce2-8e62-4b49-9af4-f9fbd7db25bd, rgb(34, 94, 245))\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7tkri8\",layoutDependency:layoutDependency,layoutId:\"YCfmCnEQ9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0JDIE1pa3NlciBSZWd1bGFy\",\"--framer-font-family\":'\"BC Mikser Regular\", \"BC Mikser Regular Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255)))\"},children:\"Darkness cannot drive out darkness: only light can do that. Hate cannot drive out hate: only love can do that.\"})}),className:\"framer-1sajdqc\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;BC Mikser Regular\"],layoutDependency:layoutDependency,layoutId:\"KCnHdpNYq\",style:{\"--extracted-1eung3n\":\"var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Hcaux10H1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255)))\"},children:\"Martin Luther King Jr.\"})}),className:\"framer-c15ewm\",\"data-framer-name\":\"Cite\",fonts:[\"GF;Roboto-700\"],layoutDependency:layoutDependency,layoutId:\"OHq7pVtcb\",style:{\"--extracted-r6o4lv\":\"var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:as3hW0q4h,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17m9dgo\",\"data-framer-name\":\"Icon\",fill:\"rgba(255, 255, 255, 0.2)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"JvPG4ZWmF\",style:{rotate:180},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 16 16\"><path d=\"M12 12a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1h-1.388c0-.351.021-.703.062-1.054.062-.372.166-.703.31-.992.145-.29.331-.517.559-.683.227-.186.516-.279.868-.279V3c-.579 0-1.085.124-1.52.372a3.322 3.322 0 0 0-1.085.992 4.92 4.92 0 0 0-.62 1.458A7.712 7.712 0 0 0 9 7.558V11a1 1 0 0 0 1 1h2Zm-6 0a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1H4.612c0-.351.021-.703.062-1.054.062-.372.166-.703.31-.992.145-.29.331-.517.559-.683.227-.186.516-.279.868-.279V3c-.579 0-1.085.124-1.52.372a3.322 3.322 0 0 0-1.085.992 4.92 4.92 0 0 0-.62 1.458A7.712 7.712 0 0 0 3 7.558V11a1 1 0 0 0 1 1h2Z\"/></svg>',withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XKE0L.framer-1orup01, .framer-XKE0L .framer-1orup01 { display: block; }\",\".framer-XKE0L.framer-e08ia3 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XKE0L .framer-vj105g { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 100%; }\",\".framer-XKE0L .framer-qaxjxo { 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-start; overflow: hidden; padding: 30px; position: relative; width: 100%; }\",\".framer-XKE0L .framer-7tkri8 { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XKE0L .framer-1sajdqc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XKE0L .framer-c15ewm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-XKE0L .framer-17m9dgo { aspect-ratio: 1 / 1; bottom: 7px; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: absolute; right: 5px; width: 80px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XKE0L.framer-e08ia3, .framer-XKE0L .framer-qaxjxo, .framer-XKE0L .framer-7tkri8 { gap: 0px; } .framer-XKE0L.framer-e08ia3 > *, .framer-XKE0L .framer-qaxjxo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XKE0L.framer-e08ia3 > :first-child, .framer-XKE0L .framer-qaxjxo > :first-child, .framer-XKE0L .framer-7tkri8 > :first-child { margin-top: 0px; } .framer-XKE0L.framer-e08ia3 > :last-child, .framer-XKE0L .framer-qaxjxo > :last-child, .framer-XKE0L .framer-7tkri8 > :last-child { margin-bottom: 0px; } .framer-XKE0L .framer-7tkri8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 188\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Hcaux10H1\":\"text\",\"as3hW0q4h\":\"cite\",\"VB62BB91A\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBgvDaa0zy=withCSS(Component,css,\"framer-XKE0L\");export default FramerBgvDaa0zy;FramerBgvDaa0zy.displayName=\"Y250/Voices Quote\";FramerBgvDaa0zy.defaultProps={height:188,width:400};addPropertyControls(FramerBgvDaa0zy,{Hcaux10H1:{defaultValue:\"Darkness cannot drive out darkness: only light can do that. Hate cannot drive out hate: only love can do that.\",displayTextArea:false,title:\"Text\",type:ControlType.String},as3hW0q4h:{defaultValue:\"Martin Luther King Jr.\",displayTextArea:false,title:\"Cite\",type:ControlType.String},VB62BB91A:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerBgvDaa0zy,[{explicitInter:true,fonts:[{family:\"BC Mikser Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/zHojoho4TzVoMFbqRJDh2vj7j8.woff2\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOlCnqEu92Fr1MmWUlvBh05IsDqlA.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBgvDaa0zy\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"188\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"Hcaux10H1\\\":\\\"text\\\",\\\"as3hW0q4h\\\":\\\"cite\\\",\\\"VB62BB91A\\\":\\\"image\\\"}\",\"framerIntrinsicWidth\":\"400\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BgvDaa0zy.map", "// Generated by Framer (c499f43)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/XfZMCh1klp4aOP2okOyj/Y21pv9cEt2obO130OsUF/CktptDtHQ.js\";const enabledGestures={LPQk2lBEN:{hover:true}};const serializationHash=\"framer-gzwPg\";const variantClassNames={LPQk2lBEN:\"framer-v-oxx82u\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==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.create(React.Fragment);const getProps=({background,domain,height,id,image,link,text,width,...props})=>{var _ref,_ref1,_ref2;return{...props,eo8NAHO6V:image!==null&&image!==void 0?image:props.eo8NAHO6V,gkVOKHPyF:(_ref=background!==null&&background!==void 0?background:props.gkVOKHPyF)!==null&&_ref!==void 0?_ref:\"var(--token-7d3d1aa4-1f92-45ce-bbee-8476ffb0f592, rgb(113, 153, 25))\",IXyeLSp3f:link!==null&&link!==void 0?link:props.IXyeLSp3f,kz61N_uF2:(_ref1=domain!==null&&domain!==void 0?domain:props.kz61N_uF2)!==null&&_ref1!==void 0?_ref1:\"teenvogue.com\",NbUrgc2Ad:(_ref2=text!==null&&text!==void 0?text:props.NbUrgc2Ad)!==null&&_ref2!==void 0?_ref2:\"How I Got Over My Patriotism Ick\"};};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,NbUrgc2Ad,kz61N_uF2,IXyeLSp3f,gkVOKHPyF,eo8NAHO6V,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"LPQk2lBEN\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=isSet(eo8NAHO6V);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:IXyeLSp3f,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-oxx82u\",className,classNames)} framer-1m9op9c`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"LPQk2lBEN\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:gkVOKHPyF,borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"LPQk2lBEN-hover\":{backgroundColor:\"var(--token-020e04c6-0ba1-42f6-89b5-52f42228fb1e, rgb(4, 13, 25))\"}},...addPropertyOverrides({\"LPQk2lBEN-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(eo8NAHO6V),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-yyvhfs\",layoutDependency:layoutDependency,layoutId:\"ycRrfJ19G\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7pdom\",layoutDependency:layoutDependency,layoutId:\"RUmsru3G9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10ek8xl\",\"data-framer-name\":\"Text Light\",layoutDependency:layoutDependency,layoutId:\"lHAqRjH_o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-113zj22\",\"data-styles-preset\":\"CktptDtHQ\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255)))\"},children:\"How I Got Over My Patriotism Ick\"})}),className:\"framer-z1n3yl\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jMo0FejFT\",style:{\"--extracted-1eung3n\":\"var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:NbUrgc2Ad,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMGl0YWxpYw==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255)))\"},children:\"teenvogue.com\"})}),className:\"framer-neebr0\",\"data-framer-name\":\"Link\",fonts:[\"GF;Roboto-500italic\"],layoutDependency:layoutDependency,layoutId:\"emqaTQKAJ\",style:{\"--extracted-1w1cjl5\":\"var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.5},text:kz61N_uF2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-q3d7en\",\"data-framer-name\":\"External-link\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rrmVgADpk\",opacity:.5,style:{opacity:.5},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 16 8 L 8 8 C 6.527 8 5.333 9.194 5.333 10.667 L 5.333 24 C 5.333 25.473 6.527 26.667 8 26.667 L 21.333 26.667 C 22.806 26.667 24 25.473 24 24 L 24 16 M 14.667 17.333 L 26.667 5.333 M 20 5.333 L 26.667 5.333 L 26.667 12\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:8987426742,withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gzwPg.framer-1m9op9c, .framer-gzwPg .framer-1m9op9c { display: block; }\",\".framer-gzwPg.framer-oxx82u { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 479px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gzwPg .framer-yyvhfs { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 100%; }\",\".framer-gzwPg .framer-7pdom { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-gzwPg .framer-10ek8xl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-gzwPg .framer-z1n3yl, .framer-gzwPg .framer-neebr0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gzwPg .framer-q3d7en { flex: none; height: 32px; position: relative; width: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gzwPg.framer-oxx82u, .framer-gzwPg .framer-7pdom, .framer-gzwPg .framer-10ek8xl { gap: 0px; } .framer-gzwPg.framer-oxx82u > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gzwPg.framer-oxx82u > :first-child, .framer-gzwPg .framer-10ek8xl > :first-child { margin-top: 0px; } .framer-gzwPg.framer-oxx82u > :last-child, .framer-gzwPg .framer-10ek8xl > :last-child { margin-bottom: 0px; } .framer-gzwPg .framer-7pdom > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-gzwPg .framer-7pdom > :first-child { margin-left: 0px; } .framer-gzwPg .framer-7pdom > :last-child { margin-right: 0px; } .framer-gzwPg .framer-10ek8xl > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 89.5\n * @framerIntrinsicWidth 479\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IA_QeBreN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"NbUrgc2Ad\":\"text\",\"kz61N_uF2\":\"domain\",\"IXyeLSp3f\":\"link\",\"gkVOKHPyF\":\"background\",\"eo8NAHO6V\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerslv1lmPDj=withCSS(Component,css,\"framer-gzwPg\");export default Framerslv1lmPDj;Framerslv1lmPDj.displayName=\"Y250/Voices Link\";Framerslv1lmPDj.defaultProps={height:89.5,width:479};addPropertyControls(Framerslv1lmPDj,{NbUrgc2Ad:{defaultValue:\"How I Got Over My Patriotism Ick\",displayTextArea:false,title:\"Text\",type:ControlType.String},kz61N_uF2:{defaultValue:\"teenvogue.com\",displayTextArea:false,title:\"Domain\",type:ControlType.String},IXyeLSp3f:{title:\"Link\",type:ControlType.Link},gkVOKHPyF:{defaultValue:'var(--token-7d3d1aa4-1f92-45ce-bbee-8476ffb0f592, rgb(113, 153, 25)) /* {\"name\":\"Y250 Dark Lime\"} */',title:\"Background\",type:ControlType.Color},eo8NAHO6V:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(Framerslv1lmPDj,[{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:\"Roboto\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOjCnqEu92Fr1Mu51S7ABc4AMX6lJBP.woff2\",weight:\"500\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerslv1lmPDj\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"NbUrgc2Ad\\\":\\\"text\\\",\\\"kz61N_uF2\\\":\\\"domain\\\",\\\"IXyeLSp3f\\\":\\\"link\\\",\\\"gkVOKHPyF\\\":\\\"background\\\",\\\"eo8NAHO6V\\\":\\\"image\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IA_QeBreN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"89.5\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"479\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./slv1lmPDj.map", "// Generated by Framer (c499f43)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/KVguuDCslpICo4bHZOYz/DDhvWO5zAGCZpNcLl7NE/wsQ6j8DdZ.js\";const serializationHash=\"framer-h0wTK\";const variantClassNames={HQl6Xhmh4:\"framer-v-w0g8cw\"};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={bounce:.2,delay:0,duration:.4,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.create(React.Fragment);const getProps=({background,dataPoint,height,id,label,pointSize,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,I8NbiEDwX:(_ref=pointSize!==null&&pointSize!==void 0?pointSize:props.I8NbiEDwX)!==null&&_ref!==void 0?_ref:84,PuOJVHPtl:(_ref1=label!==null&&label!==void 0?label:props.PuOJVHPtl)!==null&&_ref1!==void 0?_ref1:\"Applicants Approved\",rlU1nmw5G:(_ref2=dataPoint!==null&&dataPoint!==void 0?dataPoint:props.rlU1nmw5G)!==null&&_ref2!==void 0?_ref2:\"380\",SsxaCyRU0:(_ref3=background!==null&&background!==void 0?background:props.SsxaCyRU0)!==null&&_ref3!==void 0?_ref3:\"var(--token-7d3d1aa4-1f92-45ce-bbee-8476ffb0f592, rgb(113, 153, 25))\"};};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,PuOJVHPtl,rlU1nmw5G,I8NbiEDwX,SsxaCyRU0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"HQl6Xhmh4\",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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-w0g8cw\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"HQl6Xhmh4\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:SsxaCyRU0,borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-kuccl1\",\"data-styles-preset\":\"wsQ6j8DdZ\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-4bbc7af5-1688-4411-ae49-ef9dd0571dbc, rgb(232, 239, 249)))\"},children:\"Applicants Approved\"})}),className:\"framer-4q77q3\",\"data-framer-name\":\"Tag\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EotRcQfB7\",style:{\"--extracted-1w1cjl5\":\"var(--token-4bbc7af5-1688-4411-ae49-ef9dd0571dbc, rgb(232, 239, 249))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:PuOJVHPtl,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0JDIE1pa3NlciBSZWd1bGFy\",\"--framer-font-family\":'\"BC Mikser Regular\", \"BC Mikser Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-I8NbiEDwX-UGC771HJl) * 1px)\",\"--framer-letter-spacing\":\"-0.08em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255)))\"},children:\"380\"})}),className:\"framer-1mxqvat\",\"data-framer-name\":\"Data\",fonts:[\"CUSTOM;BC Mikser Regular\"],layoutDependency:layoutDependency,layoutId:\"cYTpd2yzn\",style:{\"--extracted-1eung3n\":\"var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-I8NbiEDwX-UGC771HJl\":I8NbiEDwX},text:rlU1nmw5G,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-h0wTK.framer-1lel2e2, .framer-h0wTK .framer-1lel2e2 { display: block; }\",\".framer-h0wTK.framer-w0g8cw { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 190px; will-change: var(--framer-will-change-override, transform); }\",\".framer-h0wTK .framer-4q77q3, .framer-h0wTK .framer-1mxqvat { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-h0wTK.framer-w0g8cw { gap: 0px; } .framer-h0wTK.framer-w0g8cw > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-h0wTK.framer-w0g8cw > :first-child { margin-top: 0px; } .framer-h0wTK.framer-w0g8cw > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 174\n * @framerIntrinsicWidth 190\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"PuOJVHPtl\":\"label\",\"rlU1nmw5G\":\"dataPoint\",\"I8NbiEDwX\":\"pointSize\",\"SsxaCyRU0\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUGC771HJl=withCSS(Component,css,\"framer-h0wTK\");export default FramerUGC771HJl;FramerUGC771HJl.displayName=\"Y250/Data Card\";FramerUGC771HJl.defaultProps={height:174,width:190};addPropertyControls(FramerUGC771HJl,{PuOJVHPtl:{defaultValue:\"Applicants Approved\",displayTextArea:false,title:\"Label\",type:ControlType.String},rlU1nmw5G:{defaultValue:\"380\",displayTextArea:false,title:\"Data Point\",type:ControlType.String},I8NbiEDwX:{defaultValue:84,title:\"Point Size\",type:ControlType.Number},SsxaCyRU0:{defaultValue:'var(--token-7d3d1aa4-1f92-45ce-bbee-8476ffb0f592, rgb(113, 153, 25)) /* {\"name\":\"Y250 Dark Lime\"} */',title:\"Background\",type:ControlType.Color}});addFonts(FramerUGC771HJl,[{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:\"BC Mikser Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/zHojoho4TzVoMFbqRJDh2vj7j8.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUGC771HJl\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"PuOJVHPtl\\\":\\\"label\\\",\\\"rlU1nmw5G\\\":\\\"dataPoint\\\",\\\"I8NbiEDwX\\\":\\\"pointSize\\\",\\\"SsxaCyRU0\\\":\\\"background\\\"}\",\"framerIntrinsicWidth\":\"190\",\"framerIntrinsicHeight\":\"174\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (99f3353)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/P1XRxus9CQiWIYNrkBAa/Carousel.js\";import Y250VoicesCard from\"https://framerusercontent.com/modules/N1S5JucjZ0ZxytegjNrN/pi8sFIpCNZn1XlrVs78H/aJqGuPb3Q.js\";import Y250VoicesQuote from\"https://framerusercontent.com/modules/8OGIa7qGK6vMq1nxb9Ih/dQmFAYet1hXqBCVbqkTm/BgvDaa0zy.js\";import TextHeading from\"https://framerusercontent.com/modules/qnxA7EMyF8Z9i0WGlDDh/EBguSJWkTYw2TP9tgz7v/mbDFIPnAT.js\";import Y250VoicesLink from\"https://framerusercontent.com/modules/0cmSGMRxS15XVbsTcN7c/WyRAYepUW5RbelbuGHsG/slv1lmPDj.js\";import Y250DataCard from\"https://framerusercontent.com/modules/BuUWr0uOCCwctDGooefs/ZayQjyovJbDcvgAxEpOk/UGC771HJl.js\";const Y250VoicesCardFonts=getFonts(Y250VoicesCard);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const ImageWithFX=withFX(Image);const YouTubeFonts=getFonts(YouTube);const Y250VoicesQuoteFonts=getFonts(Y250VoicesQuote);const Y250DataCardFonts=getFonts(Y250DataCard);const Y250VoicesLinkFonts=getFonts(Y250VoicesLink);const TextHeadingFonts=getFonts(TextHeading);const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"rVsk8yZF7\",\"GY3ABYbGD\",\"JLf7yTSNG\"];const serializationHash=\"framer-AKGUX\";const variantClassNames={GY3ABYbGD:\"framer-v-asw2q8\",JLf7yTSNG:\"framer-v-45gkj3\",rVsk8yZF7:\"framer-v-ulzgmu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.3,delay:0,duration:.6,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,transition:transition2,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Sticky Wall\":\"rVsk8yZF7\",Cols:\"GY3ABYbGD\",Mobile:\"JLf7yTSNG\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"rVsk8yZF7\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rVsk8yZF7\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"JLf7yTSNG\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"GY3ABYbGD\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"GY3ABYbGD\")return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"JLf7yTSNG\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ulzgmu\",className,classNames),\"data-framer-name\":\"Sticky Wall\",layoutDependency:layoutDependency,layoutId:\"rVsk8yZF7\",ref:refBinding,style:{...style},...addPropertyOverrides({GY3ABYbGD:{\"data-framer-name\":\"Cols\"},JLf7yTSNG:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vplqd6\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"gu77ZuES4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ryo5i6\",layoutDependency:layoutDependency,layoutId:\"siskLYTYj\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({GY3ABYbGD:{height:361,width:\"256px\",y:(componentViewport?.y||0)+27+333+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-n2ov36-container\",layoutDependency:layoutDependency,layoutId:\"U7IZRhWW2-container\",nodeId:\"U7IZRhWW2\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesCard,{dZ3yCmzWv:addImageAlt({pixelHeight:332,pixelWidth:628,src:\"https://framerusercontent.com/images/SUYifFiKWUjLFrBTUpDoZjMw4g.png\",srcSet:\"https://framerusercontent.com/images/SUYifFiKWUjLFrBTUpDoZjMw4g.png?scale-down-to=512 512w,https://framerusercontent.com/images/SUYifFiKWUjLFrBTUpDoZjMw4g.png 628w\"},\"\"),height:\"100%\",id:\"U7IZRhWW2\",layoutId:\"U7IZRhWW2\",SmVnM1NhP:\"https://www.azfamily.com/2024/12/20/17-year-old-student-wins-arizonas-america250-logo-contest/\",sreOZYM0v:\"\",style:{height:\"100%\",width:\"100%\"},variant:\"mjV2lVWhZ\",vbdAcBEtT:false,width:\"100%\",xkPkbNllA:\"17-year-old student designs logo for Arizona's 250th\",Z0kZGyjZl:\"var(--token-d8c82359-f87c-4331-84c9-ef2dbb8d2b17, rgb(153, 37, 25))\"})})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2289,intrinsicWidth:3060,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+706),pixelHeight:1388,pixelWidth:1566,positionX:\"left\",positionY:\"top\",sizes:\"407px\",src:\"https://framerusercontent.com/images/yP8aVdd7R3rwN52UwOyVwAHhCnI.png\",srcSet:\"https://framerusercontent.com/images/yP8aVdd7R3rwN52UwOyVwAHhCnI.png?scale-down-to=512 512w,https://framerusercontent.com/images/yP8aVdd7R3rwN52UwOyVwAHhCnI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yP8aVdd7R3rwN52UwOyVwAHhCnI.png 1566w\"},className:\"framer-1xrg5lt\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"zaP0Hev8E\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({GY3ABYbGD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2289,intrinsicWidth:3060,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+27+333+0+0+373),pixelHeight:1388,pixelWidth:1566,positionX:\"left\",positionY:\"top\",sizes:`min(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px), 440px)`,src:\"https://framerusercontent.com/images/yP8aVdd7R3rwN52UwOyVwAHhCnI.png\",srcSet:\"https://framerusercontent.com/images/yP8aVdd7R3rwN52UwOyVwAHhCnI.png?scale-down-to=512 512w,https://framerusercontent.com/images/yP8aVdd7R3rwN52UwOyVwAHhCnI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yP8aVdd7R3rwN52UwOyVwAHhCnI.png 1566w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1553j8m-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JrD82LixI-container\",nodeId:\"JrD82LixI\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"JrD82LixI\",isMixedBorderRadius:false,isRed:true,layoutId:\"JrD82LixI\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/embed/7RW4AfOWXrE\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:2289,intrinsicWidth:3060,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1443-82),pixelHeight:420,pixelWidth:394,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/ykIGSZRbikMRdFw3UCrfN30ryFY.png\"},className:\"framer-rnuuqu\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"luLSsxmbh\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},transformTemplate:transformTemplate1}),isDisplayed2()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:2289,intrinsicWidth:3060,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1443- -831),pixelHeight:638,pixelWidth:946,positionX:\"left\",positionY:\"top\",sizes:\"322px\",src:\"https://framerusercontent.com/images/05PJpPJ13Ee1eEIaumv1JUR2fD8.png\",srcSet:\"https://framerusercontent.com/images/05PJpPJ13Ee1eEIaumv1JUR2fD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/05PJpPJ13Ee1eEIaumv1JUR2fD8.png 946w\"},className:\"framer-f17gx\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ybEaVe_sf\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:188,width:\"407px\",y:(componentViewport?.y||0)+0+0+0+573,...addPropertyOverrides({GY3ABYbGD:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+27+333+0+0+1021}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-rdrf6a-container\",layoutDependency:layoutDependency,layoutId:\"P6wQ0RfDA-container\",nodeId:\"P6wQ0RfDA\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesQuote,{as3hW0q4h:\"Atlanta Workshop Participant\",Hcaux10H1:\"For the U.S. 250th, at first I was like \u201Cmeh\u2026\u201D but now I feel a little spark, a catalyst to make it something a bit more impactful, not just about \u201Chistory\u201D but about the things we\u2019ve experienced and how we can improve upon them.\",height:\"100%\",id:\"P6wQ0RfDA\",layoutId:\"P6wQ0RfDA\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2289,intrinsicWidth:3060,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2349),pixelHeight:768,pixelWidth:1024,positionX:\"left\",positionY:\"top\",sizes:\"356px\",src:\"https://framerusercontent.com/images/MLZTUoyOLI3LrVRHvF2YzvzTKE.jpeg\",srcSet:\"https://framerusercontent.com/images/MLZTUoyOLI3LrVRHvF2YzvzTKE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/MLZTUoyOLI3LrVRHvF2YzvzTKE.jpeg 1024w\"},className:\"framer-1e7ujph\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"kzPXU2Em2\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({GY3ABYbGD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2289,intrinsicWidth:3060,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+27+333+0+0+1221),pixelHeight:768,pixelWidth:1024,positionX:\"left\",positionY:\"top\",sizes:`min(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px), 440px)`,src:\"https://framerusercontent.com/images/MLZTUoyOLI3LrVRHvF2YzvzTKE.jpeg\",srcSet:\"https://framerusercontent.com/images/MLZTUoyOLI3LrVRHvF2YzvzTKE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/MLZTUoyOLI3LrVRHvF2YzvzTKE.jpeg 1024w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:\"190px\",y:(componentViewport?.y||0)+0+0+0+87,...addPropertyOverrides({GY3ABYbGD:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+27+333+0+0+1494.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1mnsex6-container\",layoutDependency:layoutDependency,layoutId:\"fitTem6zX-container\",nodeId:\"fitTem6zX\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250DataCard,{height:\"100%\",I8NbiEDwX:84,id:\"fitTem6zX\",layoutId:\"fitTem6zX\",PuOJVHPtl:\"Youth Bureau Members\",rlU1nmw5G:\"100\",SsxaCyRU0:\"var(--token-60d80dd8-0a68-4f43-a923-dd0ad16e41f2, rgb(25, 74, 153))\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2289,intrinsicWidth:3060,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1070),pixelHeight:2289,pixelWidth:3060,positionX:\"left\",positionY:\"top\",sizes:\"332px\",src:\"https://framerusercontent.com/images/x8Ha7cMU7q5eOufYxFHCChqho0M.jpg\",srcSet:\"https://framerusercontent.com/images/x8Ha7cMU7q5eOufYxFHCChqho0M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/x8Ha7cMU7q5eOufYxFHCChqho0M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/x8Ha7cMU7q5eOufYxFHCChqho0M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/x8Ha7cMU7q5eOufYxFHCChqho0M.jpg 3060w\"},className:\"framer-1tlzx2v\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JfWVyotiK\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({GY3ABYbGD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2289,intrinsicWidth:3060,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+27+333+0+0+1680.5),pixelHeight:2289,pixelWidth:3060,positionX:\"left\",positionY:\"top\",sizes:`min(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px), 440px)`,src:\"https://framerusercontent.com/images/x8Ha7cMU7q5eOufYxFHCChqho0M.jpg\",srcSet:\"https://framerusercontent.com/images/x8Ha7cMU7q5eOufYxFHCChqho0M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/x8Ha7cMU7q5eOufYxFHCChqho0M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/x8Ha7cMU7q5eOufYxFHCChqho0M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/x8Ha7cMU7q5eOufYxFHCChqho0M.jpg 3060w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2289,intrinsicWidth:3060,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+-51),pixelHeight:3024,pixelWidth:4032,positionX:\"left\",positionY:\"top\",sizes:\"208px\",src:\"https://framerusercontent.com/images/MKpg6zBcRiBEtR6LB0F0ItpFVRg.jpg\",srcSet:\"https://framerusercontent.com/images/MKpg6zBcRiBEtR6LB0F0ItpFVRg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MKpg6zBcRiBEtR6LB0F0ItpFVRg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MKpg6zBcRiBEtR6LB0F0ItpFVRg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MKpg6zBcRiBEtR6LB0F0ItpFVRg.jpg 4032w\"},className:\"framer-2cr70h\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"M8vswh1VW\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({GY3ABYbGD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2289,intrinsicWidth:3060,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+27+333+0+0+1936),pixelHeight:3024,pixelWidth:4032,positionX:\"left\",positionY:\"top\",sizes:`min(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px), 440px)`,src:\"https://framerusercontent.com/images/MKpg6zBcRiBEtR6LB0F0ItpFVRg.jpg\",srcSet:\"https://framerusercontent.com/images/MKpg6zBcRiBEtR6LB0F0ItpFVRg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MKpg6zBcRiBEtR6LB0F0ItpFVRg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MKpg6zBcRiBEtR6LB0F0ItpFVRg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MKpg6zBcRiBEtR6LB0F0ItpFVRg.jpg 4032w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:371,width:\"284px\",y:(componentViewport?.y||0)+0+0+0+120,...addPropertyOverrides({GY3ABYbGD:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+27+333+0+0+2224}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-15gh412-container\",layoutDependency:layoutDependency,layoutId:\"CJSWAzIqt-container\",nodeId:\"CJSWAzIqt\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesCard,{dZ3yCmzWv:addImageAlt({pixelHeight:261,pixelWidth:300,src:\"https://framerusercontent.com/images/UJ3TZwR1FGeTpEIuKx5mDEsfQhQ.jpg\"},\"\"),height:\"100%\",id:\"CJSWAzIqt\",layoutId:\"CJSWAzIqt\",sreOZYM0v:\"Tufts CIRCLE\",style:{width:\"100%\"},variant:\"mjV2lVWhZ\",vbdAcBEtT:false,width:\"100%\",xkPkbNllA:\"Give Gen Z the Reins to Commemorate America\u2019s 250th Anniversary\",Z0kZGyjZl:\"var(--token-7d3d1aa4-1f92-45ce-bbee-8476ffb0f592, rgb(113, 153, 25))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,width:\"302px\",y:(componentViewport?.y||0)+0+0+0+324,...addPropertyOverrides({GY3ABYbGD:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+27+333+0+0+2607}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-17h4abf-container\",layoutDependency:layoutDependency,layoutId:\"sXbx8beqU-container\",nodeId:\"sXbx8beqU\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesLink,{eo8NAHO6V:addImageAlt({pixelHeight:2415,pixelWidth:1748,src:\"https://framerusercontent.com/images/OawJdqg2AVW57kCJidoBCpBOw.jpg\",srcSet:\"https://framerusercontent.com/images/OawJdqg2AVW57kCJidoBCpBOw.jpg?scale-down-to=1024 741w,https://framerusercontent.com/images/OawJdqg2AVW57kCJidoBCpBOw.jpg?scale-down-to=2048 1482w,https://framerusercontent.com/images/OawJdqg2AVW57kCJidoBCpBOw.jpg 1748w\"},\"\"),gkVOKHPyF:\"var(--token-7d3d1aa4-1f92-45ce-bbee-8476ffb0f592, rgb(113, 153, 25))\",height:\"100%\",id:\"sXbx8beqU\",IXyeLSp3f:\"https://www.teenvogue.com/story/fourth-of-july-redefining-patriotism\",kz61N_uF2:\"Teen Vogue\",layoutId:\"sXbx8beqU\",NbUrgc2Ad:\"How I Got Over My Patriotism Ick\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:\"169px\",y:(componentViewport?.y||0)+0+0+0+884,...addPropertyOverrides({GY3ABYbGD:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+27+333+0+0+2708}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1rbz2uq-container\",layoutDependency:layoutDependency,layoutId:\"bY0HIYRGs-container\",nodeId:\"bY0HIYRGs\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250DataCard,{height:\"100%\",I8NbiEDwX:84,id:\"bY0HIYRGs\",layoutId:\"bY0HIYRGs\",PuOJVHPtl:\"Inter-generational Workshops\",rlU1nmw5G:\"7\",SsxaCyRU0:\"var(--token-7d3d1aa4-1f92-45ce-bbee-8476ffb0f592, rgb(113, 153, 25))\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yjj7h5\",layoutDependency:layoutDependency,layoutId:\"GhYpjFlJr\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:188,width:\"391px\",y:(componentViewport?.y||0)+0+0+1443+554,...addPropertyOverrides({GY3ABYbGD:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+27+333+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1r766bz-container\",layoutDependency:layoutDependency,layoutId:\"DTq7lLUcW-container\",nodeId:\"DTq7lLUcW\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesQuote,{as3hW0q4h:\"Philadelphia Workshop Participant\",Hcaux10H1:\"Today we imagined the future in 2076, at America\u2019s 300th anniversary. And I realized, how could people in 1776 possibly envision where we would be today? We have even more options and information and power today\u2026 what are we going to do with it?\",height:\"100%\",id:\"DTq7lLUcW\",layoutId:\"DTq7lLUcW\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2289,intrinsicWidth:3060,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+1443+155),pixelHeight:840,pixelWidth:1072,positionX:\"left\",positionY:\"top\",sizes:\"391px\",src:\"https://framerusercontent.com/images/kbssNzlsTEwyMCHfhMFhftzons.png\",srcSet:\"https://framerusercontent.com/images/kbssNzlsTEwyMCHfhMFhftzons.png?scale-down-to=512 512w,https://framerusercontent.com/images/kbssNzlsTEwyMCHfhMFhftzons.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kbssNzlsTEwyMCHfhMFhftzons.png 1072w\"},className:\"framer-56w9u6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FD2gwjNtg\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({GY3ABYbGD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2289,intrinsicWidth:3060,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+27+333+0+0+200),pixelHeight:840,pixelWidth:1072,positionX:\"left\",positionY:\"top\",sizes:`min(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px), 440px)`,src:\"https://framerusercontent.com/images/kbssNzlsTEwyMCHfhMFhftzons.png\",srcSet:\"https://framerusercontent.com/images/kbssNzlsTEwyMCHfhMFhftzons.png?scale-down-to=512 512w,https://framerusercontent.com/images/kbssNzlsTEwyMCHfhMFhftzons.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kbssNzlsTEwyMCHfhMFhftzons.png 1072w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:371,width:\"270px\",y:(componentViewport?.y||0)+0+0+1443+552,...addPropertyOverrides({GY3ABYbGD:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+27+333+0+0+499}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1d6sx93-container\",layoutDependency:layoutDependency,layoutId:\"JSJEnzePI-container\",nodeId:\"JSJEnzePI\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesCard,{dZ3yCmzWv:addImageAlt({pixelHeight:1201,pixelWidth:1360,src:\"https://framerusercontent.com/images/zHnuMMgRj0OJ2QOOdos4848E81g.jpg\",srcSet:\"https://framerusercontent.com/images/zHnuMMgRj0OJ2QOOdos4848E81g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zHnuMMgRj0OJ2QOOdos4848E81g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zHnuMMgRj0OJ2QOOdos4848E81g.jpg 1360w\"},\"\"),height:\"100%\",id:\"JSJEnzePI\",layoutId:\"JSJEnzePI\",SmVnM1NhP:\"https://www.aaslh.org/how-gen-z-wants-to-celebrate-americas-250th/\",sreOZYM0v:\"American Association for State & Local History\",style:{width:\"100%\"},variant:\"mjV2lVWhZ\",vbdAcBEtT:false,width:\"100%\",xkPkbNllA:\"Q&A: How Gen Z Wants to Mark 250 Years\",Z0kZGyjZl:\"var(--token-d6fc285d-eb57-4583-adcb-4a468b970eec, rgb(49, 66, 102))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:371,width:\"332px\",y:(componentViewport?.y||0)+0+0+1443+37,...addPropertyOverrides({GY3ABYbGD:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+27+333+0+0+882}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ipf5e3-container\",layoutDependency:layoutDependency,layoutId:\"Ak77SI9ZL-container\",nodeId:\"Ak77SI9ZL\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesCard,{dZ3yCmzWv:addImageAlt({pixelHeight:592,pixelWidth:1100,src:\"https://framerusercontent.com/images/3Q9tvuZ2NMC53oN5NrYoUq1cqM.webp\",srcSet:\"https://framerusercontent.com/images/3Q9tvuZ2NMC53oN5NrYoUq1cqM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3Q9tvuZ2NMC53oN5NrYoUq1cqM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/3Q9tvuZ2NMC53oN5NrYoUq1cqM.webp 1100w\"},\"\"),height:\"100%\",id:\"Ak77SI9ZL\",layoutId:\"Ak77SI9ZL\",SmVnM1NhP:\"https://medium.com/history-made-by-us/announcing-youth250-the-next-generation-reimagining-americas-250-year-story-0ed8a6790c04\",sreOZYM0v:\"Announcement\",style:{width:\"100%\"},variant:\"mjV2lVWhZ\",vbdAcBEtT:false,width:\"100%\",xkPkbNllA:\"Youth250: The Next Generation Reimagining America\u2019s 250-Year Story\",Z0kZGyjZl:\"var(--token-8edffdfc-032f-4084-96b5-7c6d84eb2d23, rgb(12, 36, 75))\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:361,width:\"256px\",y:(componentViewport?.y||0)+0+0+1443+-1494,children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-500l2j-container\",layoutDependency:layoutDependency,layoutId:\"GCiQ8A3eJ-container\",nodeId:\"GCiQ8A3eJ\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesCard,{dZ3yCmzWv:addImageAlt({pixelHeight:332,pixelWidth:628,src:\"https://framerusercontent.com/images/SUYifFiKWUjLFrBTUpDoZjMw4g.png\",srcSet:\"https://framerusercontent.com/images/SUYifFiKWUjLFrBTUpDoZjMw4g.png?scale-down-to=512 512w,https://framerusercontent.com/images/SUYifFiKWUjLFrBTUpDoZjMw4g.png 628w\"},\"\"),height:\"100%\",id:\"GCiQ8A3eJ\",layoutId:\"GCiQ8A3eJ\",SmVnM1NhP:\"https://www.azfamily.com/2024/12/20/17-year-old-student-wins-arizonas-america250-logo-contest/\",sreOZYM0v:\"\",style:{height:\"100%\",width:\"100%\"},variant:\"mjV2lVWhZ\",vbdAcBEtT:false,width:\"100%\",xkPkbNllA:\"17-year-old student designs logo for Arizona's 250th\",Z0kZGyjZl:\"var(--token-d8c82359-f87c-4331-84c9-ef2dbb8d2b17, rgb(153, 37, 25))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,width:\"306px\",y:(componentViewport?.y||0)+0+0+1443+330,...addPropertyOverrides({GY3ABYbGD:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+27+333+0+0+1265}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1sn791b-container\",layoutDependency:layoutDependency,layoutId:\"BXxo0RabO-container\",nodeId:\"BXxo0RabO\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesLink,{eo8NAHO6V:addImageAlt({pixelHeight:281,pixelWidth:276,src:\"https://framerusercontent.com/images/w0dHpiBMdpHt7ZKHHGusNI3iW4U.png\"},\"\"),gkVOKHPyF:\"var(--token-7d3d1aa4-1f92-45ce-bbee-8476ffb0f592, rgb(113, 153, 25))\",height:\"100%\",id:\"BXxo0RabO\",IXyeLSp3f:\"https://mywishforus.com/\",kz61N_uF2:\"2,500 people chimed in at MyWishForUS.org\",layoutId:\"BXxo0RabO\",NbUrgc2Ad:\"What's your wish for America's Future?\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:371,width:\"256px\",y:(componentViewport?.y||0)+0+0+1443+-438.5,...addPropertyOverrides({GY3ABYbGD:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+27+333+0+0+1366}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1pakave-container\",layoutDependency:layoutDependency,layoutId:\"s3i8VivF9-container\",nodeId:\"s3i8VivF9\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesCard,{dZ3yCmzWv:addImageAlt({pixelHeight:563,pixelWidth:1e3,src:\"https://framerusercontent.com/images/LgSBXPjhdMtYbh2RkJnoumI3yE.jpeg\",srcSet:\"https://framerusercontent.com/images/LgSBXPjhdMtYbh2RkJnoumI3yE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/LgSBXPjhdMtYbh2RkJnoumI3yE.jpeg 1000w\"},\"\"),height:\"100%\",id:\"s3i8VivF9\",layoutId:\"s3i8VivF9\",SmVnM1NhP:\"https://blavity.com/the-first-step-to-a-better-future-having-difficult-conversations-about-the-past\",sreOZYM0v:\"The Blavity\",style:{width:\"100%\"},variant:\"mjV2lVWhZ\",vbdAcBEtT:false,width:\"100%\",xkPkbNllA:\"The first step to a better future? Having difficult conversations about our past\",Z0kZGyjZl:\"var(--token-d8c82359-f87c-4331-84c9-ef2dbb8d2b17, rgb(153, 37, 25))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:371,width:\"286px\",y:(componentViewport?.y||0)+0+0+1443+-373,...addPropertyOverrides({GY3ABYbGD:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+27+333+0+0+1749}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1sa9ugo-container\",layoutDependency:layoutDependency,layoutId:\"w4plEjsAs-container\",nodeId:\"w4plEjsAs\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesCard,{dZ3yCmzWv:addImageAlt({pixelHeight:510,pixelWidth:1100,src:\"https://framerusercontent.com/images/1Dawd50M7PU9CPVg4VlXYAQDCE.webp\",srcSet:\"https://framerusercontent.com/images/1Dawd50M7PU9CPVg4VlXYAQDCE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/1Dawd50M7PU9CPVg4VlXYAQDCE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/1Dawd50M7PU9CPVg4VlXYAQDCE.webp 1100w\"},\"\"),height:\"100%\",id:\"w4plEjsAs\",layoutId:\"w4plEjsAs\",SmVnM1NhP:\"https://medium.com/history-made-by-us/recap-imagine-incubate-workshops-in-iconic-historic-sites-kickstart-youth250-plans-88fc191b10fc\",sreOZYM0v:\"Blog\",style:{width:\"100%\"},variant:\"mjV2lVWhZ\",vbdAcBEtT:false,width:\"100%\",xkPkbNllA:\"RECAP: Imagine + Incubate Workshops in iconic historic sites kickstart Youth250 plans\",Z0kZGyjZl:\"var(--token-d8c82359-f87c-4331-84c9-ef2dbb8d2b17, rgb(153, 37, 25))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:371,width:\"256px\",y:(componentViewport?.y||0)+0+0+1443+-439,...addPropertyOverrides({GY3ABYbGD:{height:361,y:(componentViewport?.y||0)+27+333+0+-361}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-15pjq99-container\",layoutDependency:layoutDependency,layoutId:\"s7eDOpGrW-container\",nodeId:\"s7eDOpGrW\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesCard,{dZ3yCmzWv:addImageAlt({pixelHeight:563,pixelWidth:1e3,src:\"https://framerusercontent.com/images/LgSBXPjhdMtYbh2RkJnoumI3yE.jpeg\",srcSet:\"https://framerusercontent.com/images/LgSBXPjhdMtYbh2RkJnoumI3yE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/LgSBXPjhdMtYbh2RkJnoumI3yE.jpeg 1000w\"},\"\"),height:\"100%\",id:\"s7eDOpGrW\",layoutId:\"s7eDOpGrW\",SmVnM1NhP:\"https://blavity.com/the-first-step-to-a-better-future-having-difficult-conversations-about-the-past\",sreOZYM0v:\"The Blavity\",style:{width:\"100%\"},variant:\"mjV2lVWhZ\",vbdAcBEtT:false,width:\"100%\",xkPkbNllA:\"The first step to a better future? Having difficult conversations about our past\",Z0kZGyjZl:\"var(--token-d8c82359-f87c-4331-84c9-ef2dbb8d2b17, rgb(153, 37, 25))\",...addPropertyOverrides({GY3ABYbGD:{dZ3yCmzWv:addImageAlt({pixelHeight:332,pixelWidth:628,src:\"https://framerusercontent.com/images/SUYifFiKWUjLFrBTUpDoZjMw4g.png\",srcSet:\"https://framerusercontent.com/images/SUYifFiKWUjLFrBTUpDoZjMw4g.png?scale-down-to=512 512w,https://framerusercontent.com/images/SUYifFiKWUjLFrBTUpDoZjMw4g.png 628w\"},\"\"),SmVnM1NhP:\"https://www.azfamily.com/2024/12/20/17-year-old-student-wins-arizonas-america250-logo-contest/\",sreOZYM0v:\"\",style:{height:\"100%\",width:\"100%\"},xkPkbNllA:\"17-year-old student designs logo for Arizona's 250th\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f2qc1o\",\"data-framer-name\":\"Sticky Container\",layoutDependency:layoutDependency,layoutId:\"jHhLv3jUS\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17ahgh6\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"ZE_IZVALy\",style:{backgroundColor:\"var(--token-8edffdfc-032f-4084-96b5-7c6d84eb2d23, rgb(12, 36, 75))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:\"319px\",y:(componentViewport?.y||0)+0+0+345.5+40+0,...addPropertyOverrides({GY3ABYbGD:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 80px)`,y:(componentViewport?.y||0)+27+0+0+40+0},JLf7yTSNG:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 80px)`,y:(componentViewport?.y||0)+0+0+0+40+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lxk0o2-container\",layoutDependency:layoutDependency,layoutId:\"nELqlxiza-container\",nodeId:\"nELqlxiza\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(TextHeading,{agrnvRM9j:\"Y4zcbf7EU\",dwMEqrdWL:\"Voices of Gen Z\",ge23CFubl:\"var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255))\",GR7SRaqob:\"var(--token-768be345-660c-4c93-abd5-09d76bb5d155, rgb(162, 245, 34))\",height:\"100%\",id:\"nELqlxiza\",kQtG3ZRkq:\"\",layoutId:\"nELqlxiza\",style:{width:\"100%\"},variant:\"LhsteqZhL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255)))\"},children:\"We're capturing and amplifying young people's experience at this moment \u2013\\xa0our chapter in history.\"})}),className:\"framer-dmhzc7\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"izt2KowfQ\",style:{\"--extracted-r6o4lv\":\"var(--token-60e4d8b1-49fd-4ac5-94cb-0a2b3b89e119, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1umlq9r-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ma4CEwdw8-container\",nodeId:\"ma4CEwdw8\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"ma4CEwdw8\",layoutId:\"ma4CEwdw8\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:188,width:\"395px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q4fe4e-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"mOCWTaR3L-container\",nodeId:\"mOCWTaR3L\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesQuote,{as3hW0q4h:\"Philadelphia Workshop Participant\",Hcaux10H1:\"Today we imagined the future in 2076, at America\u2019s 300th anniversary. And I realized, how could people in 1776 possibly envision where we would be today? We have even more options and information and power today\u2026 what are we going to do with it?\",height:\"100%\",id:\"mOCWTaR3L\",layoutId:\"mOCWTaR3L\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2289,intrinsicWidth:3060,pixelHeight:1388,pixelWidth:1566,positionX:\"left\",positionY:\"top\",sizes:\"395.0464px\",src:\"https://framerusercontent.com/images/yP8aVdd7R3rwN52UwOyVwAHhCnI.png\",srcSet:\"https://framerusercontent.com/images/yP8aVdd7R3rwN52UwOyVwAHhCnI.png?scale-down-to=512 512w,https://framerusercontent.com/images/yP8aVdd7R3rwN52UwOyVwAHhCnI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yP8aVdd7R3rwN52UwOyVwAHhCnI.png 1566w\"},className:\"framer-1wp7vf4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tr5GEQD4S\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2289,intrinsicWidth:3060,pixelHeight:768,pixelWidth:1024,positionX:\"left\",positionY:\"top\",sizes:\"394.3653px\",src:\"https://framerusercontent.com/images/MLZTUoyOLI3LrVRHvF2YzvzTKE.jpeg\",srcSet:\"https://framerusercontent.com/images/MLZTUoyOLI3LrVRHvF2YzvzTKE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/MLZTUoyOLI3LrVRHvF2YzvzTKE.jpeg 1024w\"},className:\"framer-wspoti\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"VUjrFEu6W\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:\"395px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ujh18w-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"PSGsihODB-container\",nodeId:\"PSGsihODB\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250DataCard,{height:\"100%\",I8NbiEDwX:84,id:\"PSGsihODB\",layoutId:\"PSGsihODB\",PuOJVHPtl:\"Youth Bureau Members\",rlU1nmw5G:\"100\",SsxaCyRU0:\"var(--token-60d80dd8-0a68-4f43-a923-dd0ad16e41f2, rgb(25, 74, 153))\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2289,intrinsicWidth:3060,pixelHeight:2289,pixelWidth:3060,positionX:\"left\",positionY:\"top\",sizes:\"395.0464px\",src:\"https://framerusercontent.com/images/x8Ha7cMU7q5eOufYxFHCChqho0M.jpg\",srcSet:\"https://framerusercontent.com/images/x8Ha7cMU7q5eOufYxFHCChqho0M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/x8Ha7cMU7q5eOufYxFHCChqho0M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/x8Ha7cMU7q5eOufYxFHCChqho0M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/x8Ha7cMU7q5eOufYxFHCChqho0M.jpg 3060w\"},className:\"framer-tx83kx\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"McKzHaFBw\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:188,width:\"395px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x4kj2c-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZI9a4Hzm3-container\",nodeId:\"ZI9a4Hzm3\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesQuote,{as3hW0q4h:\"Atlanta Workshop Participant\",Hcaux10H1:\"For the U.S. 250th, at first I was like \u201Cmeh\u2026\u201D but now I feel a little spark, a catalyst to make it something a bit more impactful, not just about \u201Chistory\u201D but about the things we\u2019ve experienced and how we can improve upon them.\",height:\"100%\",id:\"ZI9a4Hzm3\",layoutId:\"ZI9a4Hzm3\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2289,intrinsicWidth:3060,pixelHeight:3024,pixelWidth:4032,positionX:\"left\",positionY:\"top\",sizes:\"395px\",src:\"https://framerusercontent.com/images/MKpg6zBcRiBEtR6LB0F0ItpFVRg.jpg\",srcSet:\"https://framerusercontent.com/images/MKpg6zBcRiBEtR6LB0F0ItpFVRg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MKpg6zBcRiBEtR6LB0F0ItpFVRg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MKpg6zBcRiBEtR6LB0F0ItpFVRg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MKpg6zBcRiBEtR6LB0F0ItpFVRg.jpg 4032w\"},className:\"framer-19w28w8\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tVkQ78yyy\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:371,width:\"395px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p760et-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"u895SAPcZ-container\",nodeId:\"u895SAPcZ\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesCard,{dZ3yCmzWv:addImageAlt({pixelHeight:261,pixelWidth:300,src:\"https://framerusercontent.com/images/UJ3TZwR1FGeTpEIuKx5mDEsfQhQ.jpg\"},\"\"),height:\"100%\",id:\"u895SAPcZ\",layoutId:\"u895SAPcZ\",sreOZYM0v:\"Tufts CIRCLE\",style:{width:\"100%\"},variant:\"mjV2lVWhZ\",vbdAcBEtT:false,width:\"100%\",xkPkbNllA:\"Give Gen Z the Reins to Commemorate America\u2019s 250th Anniversary\",Z0kZGyjZl:\"var(--token-7d3d1aa4-1f92-45ce-bbee-8476ffb0f592, rgb(113, 153, 25))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,width:\"395px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bqvnk7-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"J0EO9IXYZ-container\",nodeId:\"J0EO9IXYZ\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesLink,{eo8NAHO6V:addImageAlt({pixelHeight:4e3,pixelWidth:6e3,src:\"https://framerusercontent.com/images/TGOb54MR827DTGTEK3zS6i1ZkU4.jpg\",srcSet:\"https://framerusercontent.com/images/TGOb54MR827DTGTEK3zS6i1ZkU4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TGOb54MR827DTGTEK3zS6i1ZkU4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TGOb54MR827DTGTEK3zS6i1ZkU4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TGOb54MR827DTGTEK3zS6i1ZkU4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/TGOb54MR827DTGTEK3zS6i1ZkU4.jpg 6000w\"},\"\"),gkVOKHPyF:\"var(--token-7d3d1aa4-1f92-45ce-bbee-8476ffb0f592, rgb(113, 153, 25))\",height:\"100%\",id:\"J0EO9IXYZ\",IXyeLSp3f:\"https://www.teenvogue.com/story/fourth-of-july-redefining-patriotism\",kz61N_uF2:\"Teen Vogue\",layoutId:\"J0EO9IXYZ\",NbUrgc2Ad:\"How I Got Over My Patriotism Ick\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:\"395px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dfwyhw-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"HEOfHE2nx-container\",nodeId:\"HEOfHE2nx\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250DataCard,{height:\"100%\",I8NbiEDwX:84,id:\"HEOfHE2nx\",layoutId:\"HEOfHE2nx\",PuOJVHPtl:\"Inter-generational Workshops\",rlU1nmw5G:\"7\",SsxaCyRU0:\"var(--token-7d3d1aa4-1f92-45ce-bbee-8476ffb0f592, rgb(113, 153, 25))\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2289,intrinsicWidth:3060,pixelHeight:840,pixelWidth:1072,positionX:\"left\",positionY:\"top\",sizes:\"395.0464px\",src:\"https://framerusercontent.com/images/kbssNzlsTEwyMCHfhMFhftzons.png\",srcSet:\"https://framerusercontent.com/images/kbssNzlsTEwyMCHfhMFhftzons.png?scale-down-to=512 512w,https://framerusercontent.com/images/kbssNzlsTEwyMCHfhMFhftzons.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kbssNzlsTEwyMCHfhMFhftzons.png 1072w\"},className:\"framer-4rafwg\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"UNqYBnsS3\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:371,width:\"395px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i7tqfi-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"k_FrrlYxr-container\",nodeId:\"k_FrrlYxr\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesCard,{dZ3yCmzWv:addImageAlt({pixelHeight:1201,pixelWidth:1360,src:\"https://framerusercontent.com/images/zHnuMMgRj0OJ2QOOdos4848E81g.jpg\",srcSet:\"https://framerusercontent.com/images/zHnuMMgRj0OJ2QOOdos4848E81g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zHnuMMgRj0OJ2QOOdos4848E81g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zHnuMMgRj0OJ2QOOdos4848E81g.jpg 1360w\"},\"\"),height:\"100%\",id:\"k_FrrlYxr\",layoutId:\"k_FrrlYxr\",SmVnM1NhP:\"https://www.aaslh.org/how-gen-z-wants-to-celebrate-americas-250th/\",sreOZYM0v:\"American Association for State & Local History\",style:{width:\"100%\"},variant:\"mjV2lVWhZ\",vbdAcBEtT:false,width:\"100%\",xkPkbNllA:\"Q&A: How Gen Z Wants to Mark 250 Years\",Z0kZGyjZl:\"var(--token-d6fc285d-eb57-4583-adcb-4a468b970eec, rgb(49, 66, 102))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:371,width:\"395px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hh21zr-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"o7q2KOrBS-container\",nodeId:\"o7q2KOrBS\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesCard,{dZ3yCmzWv:addImageAlt({pixelHeight:592,pixelWidth:1100,src:\"https://framerusercontent.com/images/3Q9tvuZ2NMC53oN5NrYoUq1cqM.webp\",srcSet:\"https://framerusercontent.com/images/3Q9tvuZ2NMC53oN5NrYoUq1cqM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3Q9tvuZ2NMC53oN5NrYoUq1cqM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/3Q9tvuZ2NMC53oN5NrYoUq1cqM.webp 1100w\"},\"\"),height:\"100%\",id:\"o7q2KOrBS\",layoutId:\"o7q2KOrBS\",SmVnM1NhP:\"https://medium.com/history-made-by-us/announcing-youth250-the-next-generation-reimagining-americas-250-year-story-0ed8a6790c04\",sreOZYM0v:\"Announcement\",style:{width:\"100%\"},variant:\"mjV2lVWhZ\",vbdAcBEtT:false,width:\"100%\",xkPkbNllA:\"Youth250: The Next Generation Reimagining America\u2019s 250-Year Story\",Z0kZGyjZl:\"var(--token-8edffdfc-032f-4084-96b5-7c6d84eb2d23, rgb(12, 36, 75))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:371,width:\"395px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dw8jav-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"OrnDg4M6l-container\",nodeId:\"OrnDg4M6l\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesCard,{dZ3yCmzWv:addImageAlt({pixelHeight:563,pixelWidth:1e3,src:\"https://framerusercontent.com/images/LgSBXPjhdMtYbh2RkJnoumI3yE.jpeg\",srcSet:\"https://framerusercontent.com/images/LgSBXPjhdMtYbh2RkJnoumI3yE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/LgSBXPjhdMtYbh2RkJnoumI3yE.jpeg 1000w\"},\"\"),height:\"100%\",id:\"OrnDg4M6l\",layoutId:\"OrnDg4M6l\",SmVnM1NhP:\"https://blavity.com/the-first-step-to-a-better-future-having-difficult-conversations-about-the-past\",sreOZYM0v:\"The Blavity\",style:{width:\"100%\"},variant:\"mjV2lVWhZ\",vbdAcBEtT:false,width:\"100%\",xkPkbNllA:\"The first step to a better future? Having difficult conversations about our past\",Z0kZGyjZl:\"var(--token-d8c82359-f87c-4331-84c9-ef2dbb8d2b17, rgb(153, 37, 25))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,width:\"395px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pkgfls-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"PWhdoxycm-container\",nodeId:\"PWhdoxycm\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesLink,{eo8NAHO6V:addImageAlt({pixelHeight:956,pixelWidth:956,src:\"https://framerusercontent.com/images/0khIKBouUZXFaf6HDkGrwgeQ.png\",srcSet:\"https://framerusercontent.com/images/0khIKBouUZXFaf6HDkGrwgeQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/0khIKBouUZXFaf6HDkGrwgeQ.png 956w\"},\"\"),gkVOKHPyF:\"var(--token-7d3d1aa4-1f92-45ce-bbee-8476ffb0f592, rgb(113, 153, 25))\",height:\"100%\",id:\"PWhdoxycm\",IXyeLSp3f:\"https://mywishforus.com/\",kz61N_uF2:\"2,500 people chimed in at MyWishForUS.org\",layoutId:\"PWhdoxycm\",NbUrgc2Ad:\"What's your wish for America's Future?\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:371,width:\"395px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wl5f0z-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"TWxbnHjd0-container\",nodeId:\"TWxbnHjd0\",rendersWithMotion:true,scopeId:\"hSym6Majn\",children:/*#__PURE__*/_jsx(Y250VoicesCard,{dZ3yCmzWv:addImageAlt({pixelHeight:510,pixelWidth:1100,src:\"https://framerusercontent.com/images/1Dawd50M7PU9CPVg4VlXYAQDCE.webp\",srcSet:\"https://framerusercontent.com/images/1Dawd50M7PU9CPVg4VlXYAQDCE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/1Dawd50M7PU9CPVg4VlXYAQDCE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/1Dawd50M7PU9CPVg4VlXYAQDCE.webp 1100w\"},\"\"),height:\"100%\",id:\"TWxbnHjd0\",layoutId:\"TWxbnHjd0\",SmVnM1NhP:\"https://medium.com/history-made-by-us/recap-imagine-incubate-workshops-in-iconic-historic-sites-kickstart-youth250-plans-88fc191b10fc\",sreOZYM0v:\"Blog\",style:{width:\"100%\"},variant:\"mjV2lVWhZ\",vbdAcBEtT:false,width:\"100%\",xkPkbNllA:\"RECAP: Imagine + Incubate Workshops in iconic historic sites kickstart Youth250 plans\",Z0kZGyjZl:\"var(--token-d8c82359-f87c-4331-84c9-ef2dbb8d2b17, rgb(153, 37, 25))\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AKGUX.framer-yadgyb, .framer-AKGUX .framer-yadgyb { display: block; }\",\".framer-AKGUX.framer-ulzgmu { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 2746px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1080px; }\",\".framer-AKGUX .framer-vplqd6 { 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; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-AKGUX .framer-1ryo5i6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 1443px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AKGUX .framer-n2ov36-container { flex: none; height: 361px; position: relative; width: 256px; z-index: 1; }\",\".framer-AKGUX .framer-1xrg5lt { aspect-ratio: 1.3622291021671826 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 299px); max-width: 440px; overflow: hidden; position: absolute; right: 62px; top: 706px; width: 407px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-AKGUX .framer-1553j8m-container { aspect-ratio: 0.5639344262295082 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 325px); position: relative; width: 183px; }\",\".framer-AKGUX .framer-rnuuqu { aspect-ratio: 1.3622291021671826 / 1; bottom: -155px; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 237px); left: 53%; max-width: 440px; overflow: hidden; position: absolute; width: 322px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-AKGUX .framer-f17gx { aspect-ratio: 1.3622291021671826 / 1; bottom: -1068px; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 237px); left: 53%; max-width: 440px; overflow: hidden; position: absolute; width: 322px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-AKGUX .framer-rdrf6a-container { flex: none; height: auto; left: 0px; position: absolute; top: 573px; width: 407px; z-index: 1; }\",\".framer-AKGUX .framer-1e7ujph { aspect-ratio: 1.3622291021671826 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 261px); max-width: 440px; overflow: hidden; position: absolute; right: 698px; top: 2349px; width: 356px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-AKGUX .framer-1mnsex6-container { flex: none; height: auto; position: absolute; right: 350px; top: 87px; width: 190px; z-index: 1; }\",\".framer-AKGUX .framer-1tlzx2v { aspect-ratio: 1.3622291021671826 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 244px); max-width: 440px; overflow: hidden; position: absolute; right: 308px; top: 1070px; width: 332px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-AKGUX .framer-2cr70h { flex: none; gap: 10px; height: 276px; left: 340px; max-width: 440px; overflow: hidden; position: absolute; top: -51px; width: 208px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-AKGUX .framer-15gh412-container { flex: none; height: auto; left: 0px; position: absolute; top: 120px; width: 284px; z-index: 1; }\",\".framer-AKGUX .framer-17h4abf-container { flex: none; height: auto; position: absolute; right: 0px; top: 324px; width: 302px; z-index: 1; }\",\".framer-AKGUX .framer-1rbz2uq-container { flex: none; height: auto; left: 317px; position: absolute; top: 884px; width: 169px; z-index: 1; }\",\".framer-AKGUX .framer-1yjj7h5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 1103px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AKGUX .framer-1r766bz-container { flex: none; height: auto; left: 0px; position: absolute; top: 554px; width: 391px; z-index: 1; }\",\".framer-AKGUX .framer-56w9u6 { aspect-ratio: 1.3622291021671826 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 287px); max-width: 440px; overflow: hidden; position: absolute; right: 0px; top: 155px; width: 391px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-AKGUX .framer-1d6sx93-container { flex: none; height: auto; position: absolute; right: 38px; top: 552px; width: 270px; z-index: 1; }\",\".framer-AKGUX .framer-ipf5e3-container { flex: none; height: auto; left: 50px; position: absolute; top: 37px; width: 332px; z-index: 1; }\",\".framer-AKGUX .framer-500l2j-container { flex: none; height: 361px; position: absolute; right: 62px; top: -1494px; width: 256px; z-index: 1; }\",\".framer-AKGUX .framer-1sn791b-container { flex: none; height: auto; position: absolute; right: 360px; top: 330px; width: 306px; z-index: 1; }\",\".framer-AKGUX .framer-1pakave-container { flex: none; height: auto; left: 76px; position: absolute; top: -438px; width: 256px; z-index: 1; }\",\".framer-AKGUX .framer-1sa9ugo-container { flex: none; height: auto; position: absolute; right: 0px; top: -373px; width: 286px; z-index: 1; }\",\".framer-AKGUX .framer-15pjq99-container { flex: none; height: auto; left: 76px; position: absolute; top: -439px; width: 256px; z-index: 1; }\",\".framer-AKGUX .framer-1f2qc1o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: calc(var(--framer-viewport-height, 100vh) * 1); justify-content: center; overflow: hidden; padding: 0px; pointer-events: none; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-AKGUX .framer-17ahgh6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 399px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-AKGUX .framer-lxk0o2-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-AKGUX .framer-dmhzc7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AKGUX .framer-1umlq9r-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-AKGUX .framer-q4fe4e-container, .framer-AKGUX .framer-1ujh18w-container, .framer-AKGUX .framer-1x4kj2c-container, .framer-AKGUX .framer-p760et-container, .framer-AKGUX .framer-1bqvnk7-container, .framer-AKGUX .framer-1dfwyhw-container, .framer-AKGUX .framer-i7tqfi-container, .framer-AKGUX .framer-1hh21zr-container, .framer-AKGUX .framer-1dw8jav-container, .framer-AKGUX .framer-pkgfls-container, .framer-AKGUX .framer-wl5f0z-container { height: auto; position: relative; width: 395px; z-index: 0; }\",\".framer-AKGUX .framer-1wp7vf4, .framer-AKGUX .framer-wspoti, .framer-AKGUX .framer-tx83kx, .framer-AKGUX .framer-4rafwg { aspect-ratio: 1.3622291021671826 / 1; gap: 10px; height: var(--framer-aspect-ratio-supported, 290px); overflow: hidden; position: relative; width: 395px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-AKGUX .framer-19w28w8 { gap: 10px; height: 276px; overflow: hidden; position: relative; width: 395px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AKGUX.framer-ulzgmu, .framer-AKGUX .framer-vplqd6, .framer-AKGUX .framer-1ryo5i6, .framer-AKGUX .framer-1yjj7h5, .framer-AKGUX .framer-1f2qc1o, .framer-AKGUX .framer-17ahgh6 { gap: 0px; } .framer-AKGUX.framer-ulzgmu > *, .framer-AKGUX .framer-17ahgh6 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AKGUX.framer-ulzgmu > :first-child, .framer-AKGUX .framer-vplqd6 > :first-child, .framer-AKGUX .framer-1ryo5i6 > :first-child, .framer-AKGUX .framer-1yjj7h5 > :first-child, .framer-AKGUX .framer-17ahgh6 > :first-child { margin-top: 0px; } .framer-AKGUX.framer-ulzgmu > :last-child, .framer-AKGUX .framer-vplqd6 > :last-child, .framer-AKGUX .framer-1ryo5i6 > :last-child, .framer-AKGUX .framer-1yjj7h5 > :last-child, .framer-AKGUX .framer-17ahgh6 > :last-child { margin-bottom: 0px; } .framer-AKGUX .framer-vplqd6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AKGUX .framer-1ryo5i6 > *, .framer-AKGUX .framer-1yjj7h5 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-AKGUX .framer-1f2qc1o > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-AKGUX .framer-1f2qc1o > :first-child { margin-left: 0px; } .framer-AKGUX .framer-1f2qc1o > :last-child { margin-right: 0px; } }\",\".framer-AKGUX.framer-v-asw2q8.framer-ulzgmu { height: min-content; padding: 27px 0px 27px 0px; width: 810px; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-vplqd6 { align-content: flex-start; align-items: flex-start; flex-direction: row; gap: 20px; left: unset; order: 1; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-1ryo5i6, .framer-AKGUX.framer-v-asw2q8 .framer-1yjj7h5 { flex: 1 0 0px; height: min-content; width: 1px; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-n2ov36-container { order: 0; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-1xrg5lt { height: var(--framer-aspect-ratio-supported, 147px); order: 1; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-1553j8m-container, .framer-AKGUX.framer-v-45gkj3 .framer-1umlq9r-container { order: 2; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-rdrf6a-container { left: unset; order: 5; position: relative; top: unset; width: 100%; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-1e7ujph { height: var(--framer-aspect-ratio-supported, 147px); order: 6; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-1mnsex6-container { order: 7; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-1tlzx2v { height: var(--framer-aspect-ratio-supported, 147px); order: 8; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-2cr70h { left: unset; order: 9; position: relative; top: unset; width: 100%; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-15gh412-container { left: unset; order: 10; position: relative; top: unset; width: 100%; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-17h4abf-container { order: 11; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-1rbz2uq-container { left: unset; order: 12; position: relative; top: unset; width: 100%; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-1r766bz-container, .framer-AKGUX.framer-v-asw2q8 .framer-ipf5e3-container, .framer-AKGUX.framer-v-asw2q8 .framer-1pakave-container { left: unset; position: relative; top: unset; width: 100%; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-56w9u6 { height: var(--framer-aspect-ratio-supported, 147px); position: relative; right: unset; top: unset; width: 100%; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-1d6sx93-container, .framer-AKGUX.framer-v-asw2q8 .framer-1sn791b-container, .framer-AKGUX.framer-v-asw2q8 .framer-1sa9ugo-container { position: relative; right: unset; top: unset; width: 100%; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-15pjq99-container { height: 361px; left: -815px; top: -361px; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-1f2qc1o, .framer-AKGUX.framer-v-45gkj3 .framer-1f2qc1o { height: min-content; order: 0; position: relative; top: unset; }\",\".framer-AKGUX.framer-v-asw2q8 .framer-17ahgh6, .framer-AKGUX.framer-v-45gkj3 .framer-17ahgh6 { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AKGUX.framer-v-asw2q8 .framer-vplqd6 { gap: 0px; } .framer-AKGUX.framer-v-asw2q8 .framer-vplqd6 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-AKGUX.framer-v-asw2q8 .framer-vplqd6 > :first-child { margin-left: 0px; } .framer-AKGUX.framer-v-asw2q8 .framer-vplqd6 > :last-child { margin-right: 0px; } }\",\".framer-AKGUX.framer-v-45gkj3.framer-ulzgmu { height: min-content; width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2746\n * @framerIntrinsicWidth 1080\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"GY3ABYbGD\":{\"layout\":[\"fixed\",\"auto\"]},\"JLf7yTSNG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerhSym6Majn=withCSS(Component,css,\"framer-AKGUX\");export default FramerhSym6Majn;FramerhSym6Majn.displayName=\"Y250/Voices Wall\";FramerhSym6Majn.defaultProps={height:2746,width:1080};addPropertyControls(FramerhSym6Majn,{variant:{options:[\"rVsk8yZF7\",\"GY3ABYbGD\",\"JLf7yTSNG\"],optionTitles:[\"Sticky Wall\",\"Cols\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerhSym6Majn,[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\",weight:\"400\"}]},...Y250VoicesCardFonts,...YouTubeFonts,...Y250VoicesQuoteFonts,...Y250DataCardFonts,...Y250VoicesLinkFonts,...TextHeadingFonts,...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhSym6Majn\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GY3ABYbGD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JLf7yTSNG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"2746\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1080\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hSym6Majn.map"],
  "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", "originalSearchParams", "searchParams", "param", "value", "iframeProps", "u", "wrapperStyle", "l", "getThumbnailURL", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "page", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "ImagesStandardizedImageFonts", "getFonts", "GM9ZRpLhS_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "toResponsiveImage", "value", "negate", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "image", "link", "tag", "textDark", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "SmVnM1NhP", "dZ3yCmzWv", "Z0kZGyjZl", "vbdAcBEtT", "xkPkbNllA", "sreOZYM0v", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FrameraJqGuPb3Q", "withCSS", "aJqGuPb3Q_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "isSet", "value", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "cite", "height", "id", "image", "text", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "Hcaux10H1", "as3hW0q4h", "VB62BB91A", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText2", "SVG", "css", "FramerBgvDaa0zy", "withCSS", "BgvDaa0zy_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "background", "domain", "height", "id", "image", "link", "text", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "NbUrgc2Ad", "kz61N_uF2", "IXyeLSp3f", "gkVOKHPyF", "eo8NAHO6V", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "SVG", "css", "Framerslv1lmPDj", "withCSS", "slv1lmPDj_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "background", "dataPoint", "height", "id", "label", "pointSize", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "PuOJVHPtl", "rlU1nmw5G", "I8NbiEDwX", "SsxaCyRU0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "RichText2", "css", "FramerUGC771HJl", "withCSS", "UGC771HJl_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Y250VoicesCardFonts", "getFonts", "aJqGuPb3Q_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "ImageWithFX", "Image2", "YouTubeFonts", "Youtube", "Y250VoicesQuoteFonts", "BgvDaa0zy_default", "Y250DataCardFonts", "UGC771HJl_default", "Y250VoicesLinkFonts", "slv1lmPDj_default", "TextHeadingFonts", "mbDFIPnAT_default", "CarouselFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "addImageAlt", "image", "alt", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerhSym6Majn", "withCSS", "hSym6Majn_default", "addPropertyControls", "ControlType", "addFonts"]
}
