{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/y8ckmFmPFgZ5Nzn1PrR2/kCwwLCD5BuqTvWStvj0s/SocialShare.js", "ssg:https://framerusercontent.com/modules/naegMyqWwSpgJRMhxPoF/v8ijI2lGITM7amW4dbJq/FullWidthCMSImages.js", "ssg:https://framerusercontent.com/modules/I3r6cVX5dx8Jcr1TrPY2/jsADkZOvvMVv9APzSYCd/IpzLjGVRm.js", "ssg:https://framerusercontent.com/modules/kMwiBaKCSDHRIoamPb5f/jgAZKNDYIb8yIYrtvtgm/AuRDoiNaX.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType,Color}from\"framer\";const BRAND_COLORS={facebook:\"#0866FF\",twitter:\"#000\",linkedIn:\"#0A66C2\",reddit:\"#FF4500\",pinterest:\"#BD081C\",whatsApp:\"#25D366\",email:\"#000\",copyUrl:\"#000\"};const PLATFORM_NAMES=[\"Facebook\",\"Twitter / X\",\"LinkedIn\",\"Reddit\",\"Pinterest\",\"WhatsApp\",\"Email\",\"Copy URL\"];/**\n * @framerDisableUnlink\n */export default function SocialShare(props){const{type,colors,iconSize,border}=props;const[shareUrl,setShareUrl]=useState(props.shareLink==\"url\"?props.shareUrl:\"\");const encodedUrl=encodeURIComponent(shareUrl);const borderRadius=props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`;useEffect(()=>{if(props.shareLink==\"currentPage\"){setShareUrl(window.location.href);}},[]);let linkUrl=\"\";switch(type){case\"facebook\":linkUrl=`https://www.facebook.com/sharer/sharer.php?u=${encodedUrl}`;break;case\"twitter\":linkUrl=`https://twitter.com/share?url=${encodedUrl}`;break;case\"linkedIn\":linkUrl=`https://www.linkedin.com/sharing/share-offsite/?url=${encodedUrl}`;break;case\"reddit\":linkUrl=`https://www.reddit.com/submit?url=${encodedUrl}`;break;case\"pinterest\":linkUrl=`https://pinterest.com/pin/create/link/?url=${encodedUrl}`;break;case\"whatsApp\":linkUrl=`https://wa.me/?text=${encodedUrl}`;break;case\"email\":linkUrl=`mailto:?body=${encodedUrl}`;break;}const copyToClipboard=()=>{navigator.clipboard.writeText(shareUrl).then(()=>{alert(\"URL copied to clipboard!\");}).catch(err=>{alert(\"Failed to copy URL\");});};return /*#__PURE__*/_jsxs(\"a\",{\"data-superfields\":true,href:linkUrl.length?linkUrl:undefined,target:props.newTab?\"_blank\":\"_self\",rel:props.newTab?\"noopener noreferrer\":undefined,\"aria-label\":PLATFORM_NAMES[type],onClick:type==\"copyUrl\"&&copyToClipboard,style:{display:\"flex\",alignItems:\"center\",justifyContent:\"center\",backgroundColor:colors.fillColorType==\"custom\"?colors.fillColor:Color.toString(Color.alpha(Color(BRAND_COLORS[type]),colors.fillOpacity)),borderRadius:borderRadius,padding:props.paddingIsMixed?`${props.paddingTop}px ${props.paddingRight}px ${props.paddingBottom}px ${props.paddingLeft}px`:`${props.padding}px`,cursor:\"pointer\",...props.style},children:[/*#__PURE__*/_jsx(SocialIcon,{type:type,size:iconSize,color:colors.iconColorType==\"custom\"?colors.iconColor:BRAND_COLORS[type],customIcon:props.customIcon}),border&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,borderWidth:border.widthIsMixed?`${border.widthTop}px ${border.widthRight}px ${border.widthBottom}px ${border.widthLeft}px`:`${border.width}px`,borderStyle:border.style,borderColor:border.colorType==\"custom\"?border.color:BRAND_COLORS[type],borderRadius:borderRadius,pointerEvents:\"none\"}})]});}SocialShare.displayName=\"Social Share\";addPropertyControls(SocialShare,{shareLink:{type:ControlType.Enum,defaultValue:\"currentPage\",options:[\"currentPage\",\"url\"],optionTitles:[\"Current Page\",\"Custom URL\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},shareUrl:{type:ControlType.String,defaultValue:\"\",placeholder:\"https://example.com\",title:\"URL\",preventLocalization:true,hidden:props=>props.shareLink!=\"url\"},type:{type:ControlType.Enum,defaultValue:\"facebook\",options:[\"facebook\",\"twitter\",\"linkedIn\",\"reddit\",\"pinterest\",\"whatsApp\",\"email\",\"copyUrl\"],optionTitles:PLATFORM_NAMES,title:\"Platform\"},newTab:{type:ControlType.Boolean,defaultValue:true},colors:{type:ControlType.Object,buttonTitle:\"Icon & Fill\",controls:{iconColorType:{type:ControlType.Enum,defaultValue:\"custom\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Icon Color\"},iconColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.iconColorType!=\"custom\",title:\" \"},fillColorType:{type:ControlType.Enum,defaultValue:\"brand\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Fill\"},fillColor:{type:ControlType.Color,defaultValue:\"#000\",optional:true,hidden:props=>props.fillColorType!=\"custom\",title:\" \"},fillOpacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01,hidden:props=>props.fillColorType!=\"brand\"}}},iconSize:{type:ControlType.Number,defaultValue:24,min:1,step:1},radius:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},padding:{type:ControlType.FusedNumber,defaultValue:12,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},border:{type:ControlType.Object,optional:true,controls:{colorType:{type:ControlType.Enum,defaultValue:\"brand\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Color\"},color:{type:ControlType.Color,defaultValue:\"#FFF\",title:\" \",hidden:props=>props.colorType!=\"custom\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},customIcon:{type:ControlType.Object,optional:true,buttonTitle:\"Icon\",controls:{type:{type:ControlType.Enum,defaultValue:\"svg\",options:[\"svg\",\"image\"],optionTitles:[\"SVG\",\"Image\"],displaySegmentedControl:true},svg:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"SVG\",preventLocalization:true,hidden:props=>props.type!=\"svg\"},image:{type:ControlType.ResponsiveImage,hidden:props=>props.type!=\"image\"},sizing:{type:ControlType.Enum,defaultValue:\"cover\",options:[\"cover\",\"contain\",\"fill\"],optionTitles:[\"Fill\",\"Fit\",\"Stretch\"],hidden:props=>props.type!=\"image\"},opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01}}}});function SocialIcon(props){const{size,color,customIcon}=props;const contents=[];let fill=true;let stroke=false;if(customIcon){if(customIcon.type==\"svg\"){return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"superfields-social-share-icon\",style:{width:size,height:size,opacity:customIcon.opacity,color:color,pointerEvents:\"none\"},dangerouslySetInnerHTML:customIcon.type==\"svg\"?{__html:customIcon.svg.replace(/width=\"(\\d+)\"/,`width=\"${size}\"`).replace(/height=\"(\\d+)\"/,`width=\"${size}\"`)}:undefined}),(customIcon===null||customIcon===void 0?void 0:customIcon.type)==\"svg\"&&/*#__PURE__*/_jsx(\"style\",{children:`.superfields-social-share-icon svg { display: block; }`})]});}else if(customIcon.type==\"image\"){var _customIcon_image,_customIcon_image1;return /*#__PURE__*/_jsx(\"img\",{src:(_customIcon_image=customIcon.image)===null||_customIcon_image===void 0?void 0:_customIcon_image.src,alt:(_customIcon_image1=customIcon.image)===null||_customIcon_image1===void 0?void 0:_customIcon_image1.alt,style:{display:\"block\",width:size,height:size,opacity:customIcon.opacity,color:color,objectFit:customIcon.sizing,objectPosition:\"center\",pointerEvents:\"none\"}});}}switch(props.type){case\"facebook\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M9.101 23.691v-7.98H6.627v-3.667h2.474v-1.58c0-4.085 1.848-5.978 5.858-5.978.401 0 .955.042 1.468.103a8.68 8.68 0 0 1 1.141.195v3.325a8.623 8.623 0 0 0-.653-.036 26.805 26.805 0 0 0-.733-.009c-.707 0-1.259.096-1.675.309a1.686 1.686 0 0 0-.679.622c-.258.42-.374.995-.374 1.752v1.297h3.919l-.386 2.103-.287 1.564h-3.246v8.245C19.396 23.238 24 18.179 24 12.044c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.628 3.874 10.35 9.101 11.647Z\"}));break;case\"twitter\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z\"}));break;case\"linkedIn\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z\"}));break;case\"reddit\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm5.01 4.744c.688 0 1.25.561 1.25 1.249a1.25 1.25 0 0 1-2.498.056l-2.597-.547-.8 3.747c1.824.07 3.48.632 4.674 1.488.308-.309.73-.491 1.207-.491.968 0 1.754.786 1.754 1.754 0 .716-.435 1.333-1.01 1.614a3.111 3.111 0 0 1 .042.52c0 2.694-3.13 4.87-7.004 4.87-3.874 0-7.004-2.176-7.004-4.87 0-.183.015-.366.043-.534A1.748 1.748 0 0 1 4.028 12c0-.968.786-1.754 1.754-1.754.463 0 .898.196 1.207.49 1.207-.883 2.878-1.43 4.744-1.487l.885-4.182a.342.342 0 0 1 .14-.197.35.35 0 0 1 .238-.042l2.906.617a1.214 1.214 0 0 1 1.108-.701zM9.25 12C8.561 12 8 12.562 8 13.25c0 .687.561 1.248 1.25 1.248.687 0 1.248-.561 1.248-1.249 0-.688-.561-1.249-1.249-1.249zm5.5 0c-.687 0-1.248.561-1.248 1.25 0 .687.561 1.248 1.249 1.248.688 0 1.249-.561 1.249-1.249 0-.687-.562-1.249-1.25-1.249zm-5.466 3.99a.327.327 0 0 0-.231.094.33.33 0 0 0 0 .463c.842.842 2.484.913 2.961.913.477 0 2.105-.056 2.961-.913a.361.361 0 0 0 .029-.463.33.33 0 0 0-.464 0c-.547.533-1.684.73-2.512.73-.828 0-1.979-.196-2.512-.73a.326.326 0 0 0-.232-.095z\"}));break;case\"pinterest\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z\"}));break;case\"whatsApp\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z\"}));break;case\"email\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M3 7l9 6l9 -6\"}));fill=false;stroke=true;break;case\"copyUrl\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M7 7m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h8.666a2.667 2.667 0 0 1 2.667 2.667v8.666a2.667 2.667 0 0 1 -2.667 2.667h-8.666a2.667 2.667 0 0 1 -2.667 -2.667z\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M4.012 16.737a2.005 2.005 0 0 1 -1.012 -1.737v-10c0 -1.1 .9 -2 2 -2h10c.75 0 1.158 .385 1.5 1\"}));fill=false;stroke=true;break;}return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:size,height:size,viewBox:\"0 0 24 24\",color:color,\"stroke-width\":stroke?\"2\":undefined,stroke:stroke?\"currentColor\":undefined,fill:fill?\"currentColor\":\"none\",\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\",style:{display:\"block\"},children:contents});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SocialShare\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SocialShare.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";export function withFullWidthFramerImage(Component){return props=>{const ref=useRef(null);useEffect(()=>{if(ref.current){const images=ref.current.querySelectorAll(\".framer-image\");images.forEach(img=>{img.style.display=\"block\";img.style.marginLeft=\"auto\";img.style.marginRight=\"auto\";img.style.width=\"100%\";img.style.height=\"auto\"// Maintains aspect ratio\n;});}},[]);return /*#__PURE__*/_jsx(Component,{...props,ref:ref});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withFullWidthFramerImage\":{\"type\":\"reactHoc\",\"name\":\"withFullWidthFramerImage\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FullWidthCMSImages.map", "// Generated by Framer (af3ebb8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Museo Slab 300\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Museo Slab 300\",source:\"custom\",url:\"https://framerusercontent.com/assets/SDif6GkV855Y5MUnoLyxufpFfrs.woff2\"}]}];export const css=[\".framer-DgOyx .framer-styles-preset-rjj7gg:not(.rich-text-wrapper), .framer-DgOyx .framer-styles-preset-rjj7gg.rich-text-wrapper h4 { --framer-font-family: \\\"Museo Slab 300\\\", \\\"Museo Slab 300 Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 30px; --framer-text-alignment: start; --framer-text-color: var(--token-2c8d6f1e-08fa-4262-99f0-fd966169b51b, #940966); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-DgOyx\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,useSiteRefs,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import SocialShare from\"https://framerusercontent.com/modules/y8ckmFmPFgZ5Nzn1PrR2/kCwwLCD5BuqTvWStvj0s/SocialShare.js\";import NavLinks from\"#framer/local/canvasComponent/DnEy5Dl9B/DnEy5Dl9B.js\";import OverlayButtonAnimatedHighlightNOlink from\"#framer/local/canvasComponent/pkCg7pwNx/pkCg7pwNx.js\";import FormModal from\"#framer/local/canvasComponent/y6vdvHUU_/y6vdvHUU_.js\";import{withFullWidthFramerImage}from\"#framer/local/codeFile/cKUpoqW/FullWidthCMSImages.js\";import Blog from\"#framer/local/collection/ldRQr7jA1/ldRQr7jA1.js\";import Profiles from\"#framer/local/collection/PwoPvWgHi/PwoPvWgHi.js\";import Category from\"#framer/local/collection/ueDPjsMXG/ueDPjsMXG.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle11 from\"#framer/local/css/e_9PMp3Ey/e_9PMp3Ey.js\";import*as sharedStyle5 from\"#framer/local/css/IpzLjGVRm/IpzLjGVRm.js\";import*as sharedStyle from\"#framer/local/css/kovjwTNKW/kovjwTNKW.js\";import*as sharedStyle1 from\"#framer/local/css/LOmutaOko/LOmutaOko.js\";import*as sharedStyle12 from\"#framer/local/css/myGvYEFSV/myGvYEFSV.js\";import*as sharedStyle8 from\"#framer/local/css/nRiQ_LNJf/nRiQ_LNJf.js\";import*as sharedStyle7 from\"#framer/local/css/pZPgrC3sE/pZPgrC3sE.js\";import*as sharedStyle9 from\"#framer/local/css/qPfiHGqvh/qPfiHGqvh.js\";import*as sharedStyle6 from\"#framer/local/css/UjMFR_IsN/UjMFR_IsN.js\";import*as sharedStyle3 from\"#framer/local/css/VW5Psg4qH/VW5Psg4qH.js\";import*as sharedStyle10 from\"#framer/local/css/Vz79K7WAi/Vz79K7WAi.js\";import*as sharedStyle2 from\"#framer/local/css/wFkWOVdWp/wFkWOVdWp.js\";import*as sharedStyle4 from\"#framer/local/css/YGlDbYG2m/YGlDbYG2m.js\";import metadataProvider from\"#framer/local/webPageMetadata/AuRDoiNaX/AuRDoiNaX.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithFX=withFX(RichText);const MotionDivWithFullWidthFramerImage184li91=withCodeBoundaryForOverrides(motion.div,{nodeId:\"jLqlRNe70\",override:withFullWidthFramerImage,scopeId:\"AuRDoiNaX\"});const OverlayButtonAnimatedHighlightNOlinkFonts=getFonts(OverlayButtonAnimatedHighlightNOlink);const FormModalFonts=getFonts(FormModal);const SocialShareFonts=getFonts(SocialShare);const NavLinksFonts=getFonts(NavLinks);const breakpoints={EDegpvwM_:\"(min-width: 1200px)\",MfRInqI2_:\"(max-width: 699px)\",x7kWgoMoZ:\"(min-width: 700px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-t9knl\";const variantClassNames={EDegpvwM_:\"framer-v-1uvtq1r\",MfRInqI2_:\"framer-v-1q0ej7z\",x7kWgoMoZ:\"framer-v-r9j5xr\"};const transition1={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={damping:100,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={damping:30,delay:.5,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const transition4={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:-15};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:15};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"EDegpvwM_\",Phone:\"MfRInqI2_\",Tablet:\"x7kWgoMoZ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"EDegpvwM_\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"AuRDoiNaX\",name:\"nextItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nextItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"AuRDoiNaX\",name:\"previousItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"AuRDoiNaX\",name:\"bMMDuhm8k\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bMMDuhm8k\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"AuRDoiNaX\",data:Blog,type:\"Collection\"},right:{alias:\"bMMDuhm8k\",data:Category,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"previousItemId\",data:Blog,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"nextItemId\",data:Blog,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"AuRDoiNaX\",name:\"aZQw1x3LZ\",type:\"Identifier\"},{collection:\"AuRDoiNaX\",name:\"AP_wmR1yE\",type:\"Identifier\"},{collection:\"AuRDoiNaX\",name:\"KzVTY5Tlx\",type:\"Identifier\"},{collection:\"AuRDoiNaX\",name:\"gc_QuK_15\",type:\"Identifier\"},{collection:\"AuRDoiNaX\",name:\"wwIVA3bdb\",type:\"Identifier\"},{alias:\"bMMDuhm8k.hS3Rc8pqr\",collection:\"bMMDuhm8k\",name:\"hS3Rc8pqr\",type:\"Identifier\"},{alias:\"bMMDuhm8k.qyxKsWLWB\",collection:\"bMMDuhm8k\",name:\"qyxKsWLWB\",type:\"Identifier\"},{collection:\"AuRDoiNaX\",name:\"UJDGXHF4E\",type:\"Identifier\"},{collection:\"AuRDoiNaX\",name:\"ZUvCMZpP_\",type:\"Identifier\"},{collection:\"AuRDoiNaX\",name:\"cfLqkRqNd\",type:\"Identifier\"},{alias:\"previousItemId.aZQw1x3LZ\",collection:\"previousItemId\",name:\"aZQw1x3LZ\",type:\"Identifier\"},{alias:\"previousItemId.AykUzI3dP\",collection:\"previousItemId\",name:\"AykUzI3dP\",type:\"Identifier\"},{alias:\"previousItemId\",collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},{alias:\"nextItemId.aZQw1x3LZ\",collection:\"nextItemId\",name:\"aZQw1x3LZ\",type:\"Identifier\"},{alias:\"nextItemId.AykUzI3dP\",collection:\"nextItemId\",name:\"AykUzI3dP\",type:\"Identifier\"},{alias:\"nextItemId\",collection:\"nextItemId\",name:\"id\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"AuRDoiNaX\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,gc_QuK_15=getFromCurrentRouteData(\"gc_QuK_15\"),AP_wmR1yE=getFromCurrentRouteData(\"AP_wmR1yE\"),bMMDuhm8k_qyxKsWLWB=getFromCurrentRouteData(\"bMMDuhm8k.qyxKsWLWB\")??\"\",bMMDuhm8k_hS3Rc8pqr=getFromCurrentRouteData(\"bMMDuhm8k.hS3Rc8pqr\")??\"\",aZQw1x3LZ=getFromCurrentRouteData(\"aZQw1x3LZ\")??\"\",wwIVA3bdb=getFromCurrentRouteData(\"wwIVA3bdb\")??\"\",hNqaK76TSDbXsVxXlZ,XkaonfRGsDbXsVxXlZ,G_qNxohx3DbXsVxXlZ,idDbXsVxXlZ,KzVTY5Tlx=getFromCurrentRouteData(\"KzVTY5Tlx\")??\"\",nextItemId=getFromCurrentRouteData(\"nextItemId\"),nextItemId_AykUzI3dP=getFromCurrentRouteData(\"nextItemId.AykUzI3dP\")??\"\",nextItemId_aZQw1x3LZ=getFromCurrentRouteData(\"nextItemId.aZQw1x3LZ\")??\"\",previousItemId=getFromCurrentRouteData(\"previousItemId\"),previousItemId_AykUzI3dP=getFromCurrentRouteData(\"previousItemId.AykUzI3dP\")??\"\",previousItemId_aZQw1x3LZ=getFromCurrentRouteData(\"previousItemId.aZQw1x3LZ\")??\"\",AykUzI3dPYjju5E_Ne,AP_wmR1yEYjju5E_Ne,gc_QuK_15Yjju5E_Ne,bMMDuhm8k_hS3Rc8pqrYjju5E_Ne,aZQw1x3LZYjju5E_Ne,idYjju5E_Ne,UJDGXHF4E=getFromCurrentRouteData(\"UJDGXHF4E\"),...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const uPs138D_b3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const TEB84Zo731wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"y_rdT0K7Q\");const dynamicRef=useSiteRefs();const elementId1=useRouteElementId(\"cS5CLoaTI\");const activeLocaleCode=useLocaleCode();const textContent=toDateString(AP_wmR1yE,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const router=useRouter();const visible=isSet(nextItemId);const visible1=isSet(previousItemId);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"EDegpvwM_\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-ef6cd50d-5694-4038-bbc5-f95c86d98f43, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1uvtq1r\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rbxac2\",\"data-framer-name\":\"Nav Triggers\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gcijd6\",\"data-framer-name\":\"Reset Default\",id:elementId,ref:dynamicRef(elementId)}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ay6rxl\",\"data-framer-name\":\"Nav Varient\",id:elementId1,ref:dynamicRef(elementId1)})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dkhv96\",\"data-framer-name\":\"Post Image\",children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,animate:animation,className:\"framer-17j0p6k\",\"data-framer-appear-id\":\"17j0p6k\",\"data-framer-name\":\"Image\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MfRInqI2_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+78+0+8526512829121202e-29),sizes:`min(${componentViewport?.width||\"100vw\"}, 1000px)`,...toResponsiveImage(gc_QuK_15)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+8526512829121202e-29),sizes:`min(${componentViewport?.width||\"100vw\"} - 100px, 1000px)`,...toResponsiveImage(gc_QuK_15)},className:\"framer-1msve50\",\"data-framer-name\":\"50% Transparent image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MfRInqI2_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+78+0+8526512829121202e-29),sizes:`min(${componentViewport?.width||\"100vw\"}, 1000px)`,...toResponsiveImage(gc_QuK_15)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+8526512829121202e-29),sizes:`min(${componentViewport?.width||\"100vw\"} - 100px, 1000px)`,...toResponsiveImage(gc_QuK_15)},className:\"framer-uipr1q\",\"data-framer-name\":\"Image\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iml96p\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h1dact\",\"data-framer-name\":\"Post Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1kin52s\",\"data-framer-appear-id\":\"1kin52s\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x6oqxs\",\"data-framer-name\":\"Date / Topic\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-56ujys\",\"data-styles-preset\":\"kovjwTNKW\",style:{\"--framer-text-color\":\"var(--token-d3e64aee-e1b0-4e66-8bb7-88daf139fd83, rgb(0, 41, 48))\"},children:\"Feb 19, 2025\"})}),className:\"framer-1ymgzpe\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-22b068f2-f6c4-404b-ba81-2697875e0e5c, rgb(166, 210, 0))\"},children:\"|\"})}),className:\"framer-11ly74o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{qyxKsWLWB:bMMDuhm8k_qyxKsWLWB},webPageId:\"pYMk0a0ia\"},motionChild:true,nodeId:\"MMOWY30Fa\",scopeId:\"AuRDoiNaX\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-surb0d framer-xobyuf\",\"data-framer-name\":\"Category Link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-i1n36r\",\"data-styles-preset\":\"LOmutaOko\",style:{\"--framer-text-color\":\"var(--token-d3e64aee-e1b0-4e66-8bb7-88daf139fd83, rgb(0, 41, 48))\"},children:\"Branding\"})}),className:\"framer-4k7b9y\",\"data-framer-name\":\"Topic\",fonts:[\"Inter\"],text:bMMDuhm8k_hS3Rc8pqr,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-dthy51\",\"data-styles-preset\":\"wFkWOVdWp\",children:\"Packaging Trends: How to Make Your Brand Stand Out\"})}),className:\"framer-19d89eb\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:aZQw1x3LZ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFullWidthFramerImage184li91,{className:\"framer-184li91\",\"data-framer-name\":\"Full Width Images Code Override\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/VTIRgCtWbPApsTjNtLlL/YouTube.js:Youtube\":componentPresets.props[\"FNVJeZaQY\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"OMIQdZbuV\"]},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:wwIVA3bdb,className:\"framer-1diwfjw\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],style:{transformPerspective:1200},stylesPresetsClassNames:{a:\"framer-styles-preset-1s11ifn\",blockquote:\"framer-styles-preset-1er3u0s\",h1:\"framer-styles-preset-dthy51\",h2:\"framer-styles-preset-mas5hx\",h3:\"framer-styles-preset-7v04uj\",h4:\"framer-styles-preset-rjj7gg\",h5:\"framer-styles-preset-x5mq8\",h6:\"framer-styles-preset-8ruisd\",img:\"framer-styles-preset-1lnkcbl\",p:\"framer-styles-preset-js5dih\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17tslpn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d1y3xa\",\"data-framer-name\":\"Author Subscribe\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kadrno\",\"data-framer-name\":\"Author\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"DbXsVxXlZ\",data:Profiles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"DbXsVxXlZ\",name:\"hNqaK76TS\",type:\"Identifier\"},{collection:\"DbXsVxXlZ\",name:\"XkaonfRGs\",type:\"Identifier\"},{collection:\"DbXsVxXlZ\",name:\"G_qNxohx3\",type:\"Identifier\"},{collection:\"DbXsVxXlZ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"DbXsVxXlZ\",name:\"G_qNxohx3\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:KzVTY5Tlx},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({G_qNxohx3:G_qNxohx3DbXsVxXlZ,hNqaK76TS:hNqaK76TSDbXsVxXlZ,id:idDbXsVxXlZ,XkaonfRGs:XkaonfRGsDbXsVxXlZ},index)=>{hNqaK76TSDbXsVxXlZ??=\"\";G_qNxohx3DbXsVxXlZ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`DbXsVxXlZ-${idDbXsVxXlZ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{hNqaK76TS:hNqaK76TSDbXsVxXlZ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{hNqaK76TS:hNqaK76TSDbXsVxXlZ},webPageId:\"b3LJSHX2K\"},motionChild:true,nodeId:\"lgZ9yaabr\",openInNewTab:false,scopeId:\"AuRDoiNaX\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-16lc399 framer-xobyuf\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MfRInqI2_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+478+0+30+257.8+0+0+25+0+0+49.5),sizes:\"60px\",...toResponsiveImage(XkaonfRGsDbXsVxXlZ),...{positionX:\"center\",positionY:\"top\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+600+0+30+257.8+0+0+25+0+0+49.5),sizes:\"60px\",...toResponsiveImage(XkaonfRGsDbXsVxXlZ),...{positionX:\"center\",positionY:\"top\"}},className:\"framer-z5r3dl\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p5vd2q\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-56ujys\",\"data-styles-preset\":\"kovjwTNKW\",children:\"Written By\"})}),className:\"framer-qxhrz1\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(186, 204, 122)\",\"--framer-text-transform\":\"uppercase\"},children:\"Ellen Moriarty\"})}),className:\"framer-1nmm6m3\",\"data-framer-name\":\"Title\",fonts:[\"GF;Montserrat-700\"],text:G_qNxohx3DbXsVxXlZ,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idDbXsVxXlZ);})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MfRInqI2_:{y:(componentViewport?.y||0)+0+478+0+30+257.8+0+0+80.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+600+0+30+257.8+0+0+80.5,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1l26spt-container\",id:\"1l26spt\",nodeId:\"dsn3_BgV_\",scopeId:\"AuRDoiNaX\",children:[/*#__PURE__*/_jsx(OverlayButtonAnimatedHighlightNOlink,{BrUi5h7tU:\"var(--token-2ff930d9-5070-4f23-bf99-73b9817894b3, rgb(255, 255, 255))\",cDpvFaLqr:\"var(--token-bb742677-bd3f-466d-896d-18d87c5cc1db, rgb(0, 0, 0))\",e2fo0YiSE:\"\uF055\",FBSCGr2rd:\"var(--token-61c6fe3b-b320-491b-a8cb-dc8a366ee3ef, rgb(0, 196, 209))\",height:\"100%\",id:\"dsn3_BgV_\",layoutId:\"dsn3_BgV_\",ofLqZhEO8:\"Subscribe\",ozfd1haqi:false,PPM8eZNfR:\"var(--token-bb742677-bd3f-466d-896d-18d87c5cc1db, rgb(0, 0, 0))\",uPs138D_b:uPs138D_b3bnx0g({overlay}),variant:\"xKV74Nx3T\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1m7rsmu\"),\"data-framer-portal-id\":\"1l26spt\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"EstCyJDcP\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(90vw, 400px)\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1w8tlmo-container\"),\"data-framer-portal-id\":\"1l26spt\",inComponentSlot:true,nodeId:\"p3qvFgq9Z\",rendersWithMotion:true,scopeId:\"AuRDoiNaX\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MfRInqI2_:{ZhKd3ASF5:\"35px 25px 0px 25px\"}},children:/*#__PURE__*/_jsx(FormModal,{GSDhquOLt:\"efde2fc1-93b6-458b-9a1f-6af3e3f4837c\",height:\"100%\",id:\"p3qvFgq9Z\",layoutId:\"p3qvFgq9Z\",Rf0oz4FYU:\"Subscribe\",style:{maxWidth:\"100%\",width:\"100%\"},TEB84Zo73:TEB84Zo731wnntms({overlay}),variant:\"rM8tG1iLA\",VFwiof0Qy:\"\",width:\"100%\",ZhKd3ASF5:\"30px 30px 0px 30px\"})})})})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cilu7l\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ewqz0i\",\"data-framer-name\":\"Share Back links\",children:[/*#__PURE__*/_jsxs(\"div\",{\"aria-label\":\"Social Sharing Icons\",className:\"framer-77xdlh\",\"data-framer-name\":\"Share\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-i1n36r\",\"data-styles-preset\":\"LOmutaOko\",style:{\"--framer-text-color\":\"var(--token-a71c1aa4-7d7b-4329-8f4c-890ef8132d0f, rgb(0, 78, 90))\"},children:\"Share Post: \"})}),className:\"framer-18wyo6r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8p8sif-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YRxJHwYQ2\",scopeId:\"AuRDoiNaX\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColorType:\"custom\",fillOpacity:1,iconColor:\"var(--token-530efddf-eb62-4e42-ada9-cb8dcd683a9a, rgb(112, 101, 92))\",iconColorType:\"custom\"},height:\"100%\",iconSize:24,id:\"YRxJHwYQ2\",layoutId:\"YRxJHwYQ2\",newTab:true,padding:7,paddingBottom:7,paddingIsMixed:false,paddingLeft:7,paddingRight:7,paddingTop:7,radius:25,radiusBottomLeft:25,radiusBottomRight:25,radiusIsMixed:false,radiusTopLeft:25,radiusTopRight:25,shareLink:\"currentPage\",shareUrl:\"\",type:\"facebook\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bmv8mg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZhqUqNyxu\",scopeId:\"AuRDoiNaX\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColorType:\"custom\",fillOpacity:1,iconColor:\"var(--token-530efddf-eb62-4e42-ada9-cb8dcd683a9a, rgb(112, 101, 92))\",iconColorType:\"custom\"},height:\"100%\",iconSize:24,id:\"ZhqUqNyxu\",layoutId:\"ZhqUqNyxu\",newTab:true,padding:7,paddingBottom:7,paddingIsMixed:false,paddingLeft:7,paddingRight:7,paddingTop:7,radius:25,radiusBottomLeft:25,radiusBottomRight:25,radiusIsMixed:false,radiusTopLeft:25,radiusTopRight:25,shareLink:\"currentPage\",shareUrl:\"\",type:\"twitter\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kerqd4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QXYUMGCfH\",scopeId:\"AuRDoiNaX\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColorType:\"custom\",fillOpacity:1,iconColor:\"var(--token-530efddf-eb62-4e42-ada9-cb8dcd683a9a, rgb(112, 101, 92))\",iconColorType:\"custom\"},height:\"100%\",iconSize:24,id:\"QXYUMGCfH\",layoutId:\"QXYUMGCfH\",newTab:true,padding:7,paddingBottom:7,paddingIsMixed:false,paddingLeft:7,paddingRight:7,paddingTop:7,radius:25,radiusBottomLeft:25,radiusBottomRight:25,radiusIsMixed:false,radiusTopLeft:25,radiusTopRight:25,shareLink:\"currentPage\",shareUrl:\"\",type:\"linkedIn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u0wlbp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Sh8CbJ0LA\",scopeId:\"AuRDoiNaX\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColorType:\"custom\",fillOpacity:1,iconColor:\"var(--token-530efddf-eb62-4e42-ada9-cb8dcd683a9a, rgb(112, 101, 92))\",iconColorType:\"custom\"},height:\"100%\",iconSize:29,id:\"Sh8CbJ0LA\",layoutId:\"Sh8CbJ0LA\",newTab:true,padding:5,paddingBottom:5,paddingIsMixed:false,paddingLeft:5,paddingRight:5,paddingTop:5,radius:25,radiusBottomLeft:25,radiusBottomRight:25,radiusIsMixed:false,radiusTopLeft:25,radiusTopRight:25,shareLink:\"currentPage\",shareUrl:\"\",type:\"email\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12w07k4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mz9OqrYNz\",scopeId:\"AuRDoiNaX\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColorType:\"custom\",fillOpacity:1,iconColor:\"var(--token-530efddf-eb62-4e42-ada9-cb8dcd683a9a, rgb(112, 101, 92))\",iconColorType:\"custom\"},height:\"100%\",iconSize:27,id:\"mz9OqrYNz\",layoutId:\"mz9OqrYNz\",newTab:true,padding:5,paddingBottom:5,paddingIsMixed:false,paddingLeft:5,paddingRight:5,paddingTop:5,radius:25,radiusBottomLeft:25,radiusBottomRight:25,radiusIsMixed:false,radiusTopLeft:25,radiusTopRight:25,shareLink:\"currentPage\",shareUrl:\"\",type:\"copyUrl\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"K69bmZZuz\"},implicitPathVariables:undefined},{href:{webPageId:\"K69bmZZuz\"},implicitPathVariables:undefined},{href:{webPageId:\"K69bmZZuz\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MfRInqI2_:{y:(componentViewport?.y||0)+0+478+0+30+257.8+0+231+0+218}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,width:\"147px\",y:(componentViewport?.y||0)+0+600+0+30+257.8+0+231+91.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m9zww4-container\",nodeId:\"shGO5ICZM\",scopeId:\"AuRDoiNaX\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MfRInqI2_:{tDe4fiUbw:resolvedLinks[2]},x7kWgoMoZ:{tDe4fiUbw:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(NavLinks,{asL8R91Ro:\"uw6_ECEUp\",height:\"100%\",i_2VrUVeO:false,id:\"shGO5ICZM\",jRHunGpPk:true,jZmilEKTA:\"var(--token-2c8d6f1e-08fa-4262-99f0-fd966169b51b, rgb(148, 9, 102))\",layoutId:\"shGO5ICZM\",Obyfpg79A:\"var(--token-2c8d6f1e-08fa-4262-99f0-fd966169b51b, rgb(148, 9, 102))\",style:{width:\"100%\"},tDe4fiUbw:resolvedLinks[0],tqDDzuWdf:\"Back to All Posts\",variant:\"RPjqacyZf\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12rx6o5\",\"data-framer-name\":\"Divider\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d59os7\",children:[visible&&/*#__PURE__*/_jsx(Link,{href:{pathVariables:{AykUzI3dP:nextItemId_AykUzI3dP},webPageId:\"AuRDoiNaX\"},motionChild:true,nodeId:\"sGCS6YkPf\",openInNewTab:false,scopeId:\"AuRDoiNaX\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1eevpau framer-xobyuf\",\"data-framer-name\":\"Next\",whileHover:animation5,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MfRInqI2_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvbnQgQXdlc29tZSA2IFBybyBTb2xpZA==\",\"--framer-font-family\":'\"Font Awesome 6 Pro Solid\", \"Font Awesome 6 Pro Solid Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-a71c1aa4-7d7b-4329-8f4c-890ef8132d0f, rgb(0, 78, 90))\"},children:\"\uF137\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvbnQgQXdlc29tZSA2IFBybyBTb2xpZA==\",\"--framer-font-family\":'\"Font Awesome 6 Pro Solid\", \"Font Awesome 6 Pro Solid Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"2.2em\",\"--framer-text-color\":\"var(--token-a71c1aa4-7d7b-4329-8f4c-890ef8132d0f, rgb(0, 78, 90))\"},children:\"\uF137\"})}),className:\"framer-1yi2q1x\",\"data-framer-name\":\"Previous Icon\",fonts:[\"CUSTOM;Font Awesome 6 Pro Solid\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-exjad3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-i1n36r\",\"data-styles-preset\":\"LOmutaOko\",style:{\"--framer-text-color\":\"var(--token-6f7b0df8-b14e-4547-b93b-259709081e09, rgb(0, 125, 140))\"},children:\"Previous\"})}),className:\"framer-1x3fka2\",\"data-framer-name\":\"Next\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-js5dih\",\"data-styles-preset\":\"nRiQ_LNJf\",children:\"Content\"})}),className:\"framer-1pwuhad\",fonts:[\"Inter\"],text:nextItemId_aZQw1x3LZ,verticalAlignment:\"top\",withExternalLayout:true})]})]})}),visible1&&/*#__PURE__*/_jsx(Link,{href:{pathVariables:{AykUzI3dP:previousItemId_AykUzI3dP},webPageId:\"AuRDoiNaX\"},motionChild:true,nodeId:\"WuHExaNE9\",openInNewTab:false,scopeId:\"AuRDoiNaX\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-u0qimq framer-xobyuf\",\"data-framer-name\":\"Previous\",whileHover:animation6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v66doz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-i1n36r\",\"data-styles-preset\":\"LOmutaOko\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-6f7b0df8-b14e-4547-b93b-259709081e09, rgb(0, 125, 140))\"},children:\"Next\"})}),className:\"framer-1m1fmsn\",\"data-framer-name\":\"Previous\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-js5dih\",\"data-styles-preset\":\"nRiQ_LNJf\",style:{\"--framer-text-alignment\":\"right\"},children:\"Revolutionize Your Marketing with Print-On-Demand Solutions\"})}),className:\"framer-pe4cx8\",\"data-framer-name\":\"Next\",fonts:[\"Inter\"],text:previousItemId_aZQw1x3LZ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MfRInqI2_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvbnQgQXdlc29tZSA2IFBybyBTb2xpZA==\",\"--framer-font-family\":'\"Font Awesome 6 Pro Solid\", \"Font Awesome 6 Pro Solid Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-a71c1aa4-7d7b-4329-8f4c-890ef8132d0f, rgb(0, 78, 90))\"},children:\"\uF138\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvbnQgQXdlc29tZSA2IFBybyBTb2xpZA==\",\"--framer-font-family\":'\"Font Awesome 6 Pro Solid\", \"Font Awesome 6 Pro Solid Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"2.2em\",\"--framer-text-color\":\"var(--token-a71c1aa4-7d7b-4329-8f4c-890ef8132d0f, rgb(0, 78, 90))\"},children:\"\uF138\"})}),className:\"framer-9p3aom\",\"data-framer-name\":\"Next Icon\",fonts:[\"CUSTOM;Font Awesome 6 Pro Solid\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1br24xy\",\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y80zi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10a9fil\",\"data-styles-preset\":\"myGvYEFSV\",style:{\"--framer-text-color\":\"var(--token-ef6cd50d-5694-4038-bbc5-f95c86d98f43, rgb(255, 255, 255))\"},children:\"You may also be interested in\"})}),className:\"framer-vyfqv7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aqew5k\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vfs1bs\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MfRInqI2_:{query:{from:{constraint:{left:{collection:\"Yjju5E_Ne\",name:\"bMMDuhm8k\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bMMDuhm8k\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"Yjju5E_Ne\",data:Blog,type:\"Collection\"},right:{alias:\"bMMDuhm8k\",data:Category,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"Yjju5E_Ne\",name:\"AykUzI3dP\",type:\"Identifier\"},{collection:\"Yjju5E_Ne\",name:\"AP_wmR1yE\",type:\"Identifier\"},{collection:\"Yjju5E_Ne\",name:\"gc_QuK_15\",type:\"Identifier\"},{alias:\"bMMDuhm8k.hS3Rc8pqr\",collection:\"bMMDuhm8k\",name:\"hS3Rc8pqr\",type:\"Identifier\"},{collection:\"Yjju5E_Ne\",name:\"aZQw1x3LZ\",type:\"Identifier\"},{collection:\"Yjju5E_Ne\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"Yjju5E_Ne\",name:\"aZQw1x3LZ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:aZQw1x3LZ},type:\"BinaryOperation\"}},operator:\"and\",right:{left:{collection:\"Yjju5E_Ne\",name:\"UJDGXHF4E\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:UJDGXHF4E},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}},x7kWgoMoZ:{query:{from:{constraint:{left:{collection:\"Yjju5E_Ne\",name:\"bMMDuhm8k\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bMMDuhm8k\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"Yjju5E_Ne\",data:Blog,type:\"Collection\"},right:{alias:\"bMMDuhm8k\",data:Category,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"Yjju5E_Ne\",name:\"AykUzI3dP\",type:\"Identifier\"},{collection:\"Yjju5E_Ne\",name:\"AP_wmR1yE\",type:\"Identifier\"},{collection:\"Yjju5E_Ne\",name:\"gc_QuK_15\",type:\"Identifier\"},{alias:\"bMMDuhm8k.hS3Rc8pqr\",collection:\"bMMDuhm8k\",name:\"hS3Rc8pqr\",type:\"Identifier\"},{collection:\"Yjju5E_Ne\",name:\"aZQw1x3LZ\",type:\"Identifier\"},{collection:\"Yjju5E_Ne\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"Yjju5E_Ne\",name:\"aZQw1x3LZ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:aZQw1x3LZ},type:\"BinaryOperation\"}},operator:\"and\",right:{left:{collection:\"Yjju5E_Ne\",name:\"UJDGXHF4E\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:UJDGXHF4E},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{constraint:{left:{collection:\"Yjju5E_Ne\",name:\"bMMDuhm8k\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bMMDuhm8k\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"Yjju5E_Ne\",data:Blog,type:\"Collection\"},right:{alias:\"bMMDuhm8k\",data:Category,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"Yjju5E_Ne\",name:\"AykUzI3dP\",type:\"Identifier\"},{collection:\"Yjju5E_Ne\",name:\"AP_wmR1yE\",type:\"Identifier\"},{collection:\"Yjju5E_Ne\",name:\"gc_QuK_15\",type:\"Identifier\"},{alias:\"bMMDuhm8k.hS3Rc8pqr\",collection:\"bMMDuhm8k\",name:\"hS3Rc8pqr\",type:\"Identifier\"},{collection:\"Yjju5E_Ne\",name:\"aZQw1x3LZ\",type:\"Identifier\"},{collection:\"Yjju5E_Ne\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"Yjju5E_Ne\",name:\"aZQw1x3LZ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:aZQw1x3LZ},type:\"BinaryOperation\"}},operator:\"and\",right:{left:{collection:\"Yjju5E_Ne\",name:\"UJDGXHF4E\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:UJDGXHF4E},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({\"bMMDuhm8k.hS3Rc8pqr\":bMMDuhm8k_hS3Rc8pqrYjju5E_Ne,AP_wmR1yE:AP_wmR1yEYjju5E_Ne,AykUzI3dP:AykUzI3dPYjju5E_Ne,aZQw1x3LZ:aZQw1x3LZYjju5E_Ne,gc_QuK_15:gc_QuK_15Yjju5E_Ne,id:idYjju5E_Ne},index1)=>{AykUzI3dPYjju5E_Ne??=\"\";bMMDuhm8k_hS3Rc8pqrYjju5E_Ne??=\"\";aZQw1x3LZYjju5E_Ne??=\"\";const textContent1=toDateString(AP_wmR1yEYjju5E_Ne,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`Yjju5E_Ne-${idYjju5E_Ne}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{AykUzI3dP:AykUzI3dPYjju5E_Ne},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{AykUzI3dP:AykUzI3dPYjju5E_Ne},webPageId:\"AuRDoiNaX\"},motionChild:true,nodeId:\"CSOJoMx7w\",scopeId:\"AuRDoiNaX\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-11ma6gl framer-xobyuf\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jtomml\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1051snr\",\"data-framer-name\":\"Date Banner\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MfRInqI2_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9d23c4e0-67fd-4618-8aef-a0beb6cff0b0, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Featured Post\"})})},x7kWgoMoZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9d23c4e0-67fd-4618-8aef-a0beb6cff0b0, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Featured Post\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9d23c4e0-67fd-4618-8aef-a0beb6cff0b0, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Jul 10, 2024\"})}),className:\"framer-z9617l\",\"data-framer-name\":\"Featured Post\",fonts:[\"GF;Montserrat-700\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MfRInqI2_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1587+35+0+0+53.400000000000006+0+30+0+0+0+0),sizes:`calc(max(max(min(min(${componentViewport?.width||\"100vw\"} - 70px, 1385px), 1485px), 1px) - 60px, 200px) * 1.0024)`,...toResponsiveImage(gc_QuK_15Yjju5E_Ne)}},x7kWgoMoZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1658.8+50+5684341886080802e-29+0+53.400000000000006+0+30+0+0+0+0),sizes:`calc(max((max(min(min(${componentViewport?.width||\"100vw\"} - 100px, 1385px), 1485px), 1px) - 90px) / 2, 200px) * 1.0024)`,...toResponsiveImage(gc_QuK_15Yjju5E_Ne)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1658.8+75+5684341886080802e-29+0+53.400000000000006+0+30+0+0+0+0),sizes:`calc(max((max(min(min(${componentViewport?.width||\"100vw\"} - 200px, 1385px), 1485px), 1px) - 120px) / 3, 200px) * 1.0024)`,...toResponsiveImage(gc_QuK_15Yjju5E_Ne)},className:\"framer-1ilglmo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MfRInqI2_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1587+35+0+0+53.400000000000006+0+30+0+0+0+0),sizes:`calc(max(max(min(min(${componentViewport?.width||\"100vw\"} - 70px, 1385px), 1485px), 1px) - 60px, 200px) * 1.0024)`,...toResponsiveImage(gc_QuK_15Yjju5E_Ne)}},x7kWgoMoZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1658.8+50+5684341886080802e-29+0+53.400000000000006+0+30+0+0+0+0),sizes:`calc(max((max(min(min(${componentViewport?.width||\"100vw\"} - 100px, 1385px), 1485px), 1px) - 90px) / 2, 200px) * 1.0024)`,...toResponsiveImage(gc_QuK_15Yjju5E_Ne)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1658.8+75+5684341886080802e-29+0+53.400000000000006+0+30+0+0+0+0),sizes:`calc(max((max(min(min(${componentViewport?.width||\"100vw\"} - 200px, 1385px), 1485px), 1px) - 120px) / 3, 200px) * 1.0024)`,...toResponsiveImage(gc_QuK_15Yjju5E_Ne)},className:\"framer-1kk47gj\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-110ax4u\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-i1n36r\",\"data-styles-preset\":\"LOmutaOko\",style:{\"--framer-text-color\":\"var(--token-a71c1aa4-7d7b-4329-8f4c-890ef8132d0f, rgb(0, 78, 90))\"},children:\"Branding\"})}),className:\"framer-1dvio73\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],text:bMMDuhm8k_hS3Rc8pqrYjju5E_Ne,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10a9fil\",\"data-styles-preset\":\"myGvYEFSV\",children:\"Unboxing Sales Success: How Marketized Product Samples Boost Your Brand\"})}),className:\"framer-1wmigcn\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:aZQw1x3LZYjju5E_Ne,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idYjju5E_Ne);})})})})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t9knl.framer-xobyuf, .framer-t9knl .framer-xobyuf { display: block; }\",\".framer-t9knl.framer-1uvtq1r { align-content: center; align-items: center; background-color: var(--token-ef6cd50d-5694-4038-bbc5-f95c86d98f43, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-t9knl .framer-rbxac2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; left: 50%; min-height: 160px; overflow: hidden; padding: 0px; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-t9knl .framer-1gcijd6 { flex: none; height: 80px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(25.00000000000002% - 80px / 2); width: 100%; z-index: 1; }\",\".framer-t9knl .framer-ay6rxl { flex: none; height: 80px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(75.00000000000003% - 80px / 2); width: 100%; z-index: 1; }\",\".framer-t9knl .framer-1dkhv96 { align-content: flex-start; align-items: flex-start; background-color: var(--token-ef6cd50d-5694-4038-bbc5-f95c86d98f43, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 150px 50px 50px 50px; position: relative; width: 100%; }\",\".framer-t9knl .framer-17j0p6k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-t9knl .framer-1msve50 { border-bottom-left-radius: 200px; border-bottom-right-radius: 20px; border-top-left-radius: 100px; border-top-right-radius: 200px; flex: none; height: 400px; left: calc(49.94219653179193% - 100% / 2); opacity: 0.5; position: absolute; top: calc(50.00000000000002% - 400px / 2); width: 100%; z-index: 1; }\",\".framer-t9knl .framer-uipr1q { border-bottom-left-radius: 500px; border-bottom-right-radius: 20px; border-top-left-radius: 100px; border-top-right-radius: 500px; flex: none; height: 400px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 400px / 2); width: 100%; z-index: 1; }\",\".framer-t9knl .framer-1iml96p { align-content: center; align-items: center; background-color: var(--token-ef6cd50d-5694-4038-bbc5-f95c86d98f43, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t9knl .framer-h1dact { align-content: center; align-items: center; background-color: var(--token-ef6cd50d-5694-4038-bbc5-f95c86d98f43, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 30px 50px 50px 50px; position: relative; width: 100%; }\",\".framer-t9knl .framer-1kin52s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-t9knl .framer-1x6oqxs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t9knl .framer-1ymgzpe, .framer-t9knl .framer-4k7b9y, .framer-t9knl .framer-1yi2q1x, .framer-t9knl .framer-9p3aom, .framer-t9knl .framer-z9617l { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-t9knl .framer-11ly74o, .framer-t9knl .framer-18wyo6r, .framer-t9knl .framer-vyfqv7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-t9knl .framer-surb0d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 5px 5px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-t9knl .framer-19d89eb, .framer-t9knl .framer-qxhrz1, .framer-t9knl .framer-1nmm6m3, .framer-t9knl .framer-1x3fka2, .framer-t9knl .framer-1m1fmsn, .framer-t9knl .framer-1dvio73, .framer-t9knl .framer-1wmigcn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-t9knl .framer-184li91 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t9knl .framer-1diwfjw { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-t9knl .framer-17tslpn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t9knl .framer-1d1y3xa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 25px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-t9knl .framer-1kadrno { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-t9knl .framer-16lc399 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-t9knl .framer-z5r3dl { border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-t9knl .framer-p5vd2q { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 1px; }\",\".framer-t9knl .framer-1l26spt-container, .framer-t9knl .framer-8p8sif-container, .framer-t9knl .framer-1bmv8mg-container, .framer-t9knl .framer-1kerqd4-container, .framer-t9knl .framer-1u0wlbp-container, .framer-t9knl .framer-12w07k4-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-t9knl.framer-1m7rsmu { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-t9knl.framer-1w8tlmo-container { flex: none; height: auto; left: 50%; max-width: 400px; min-height: 500px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 90%; z-index: 10; }\",\".framer-t9knl .framer-cilu7l, .framer-t9knl .framer-12rx6o5 { background-color: var(--token-9ce35a31-5849-4c17-b62c-01b6ae530a54, #86786d); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-t9knl .framer-ewqz0i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t9knl .framer-77xdlh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-t9knl .framer-m9zww4-container { flex: none; height: auto; position: relative; width: 147px; }\",\".framer-t9knl .framer-d59os7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 25px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-t9knl .framer-1eevpau { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 50%; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-t9knl .framer-exjad3, .framer-t9knl .framer-v66doz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-t9knl .framer-1pwuhad, .framer-t9knl .framer-pe4cx8 { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-t9knl .framer-u0qimq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; max-width: 50%; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",'.framer-t9knl .framer-1br24xy { align-content: center; align-items: center; background: linear-gradient(180deg, #06293c 0%, var(--token-6f7b0df8-b14e-4547-b93b-259709081e09, rgb(0, 125, 140)) /* {\"name\":\"#007D8C\"} */ 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: center; overflow: hidden; padding: 75px 100px 100px 100px; position: relative; width: 100%; }',\".framer-t9knl .framer-1y80zi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1385px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t9knl .framer-1aqew5k { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 65px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1485px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t9knl .framer-1vfs1bs { display: grid; flex: 1 0 0px; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 30px; position: relative; width: 1px; }\",\".framer-t9knl .framer-11ma6gl { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-t9knl .framer-1jtomml { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 175px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t9knl .framer-1051snr { align-content: center; align-items: center; background-color: var(--token-530efddf-eb62-4e42-ada9-cb8dcd683a9a, #70655c); bottom: 7px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 8px 15px 7px 15px; position: absolute; width: min-content; z-index: 2; }\",\".framer-t9knl .framer-1ilglmo { border-bottom-left-radius: 50px; border-bottom-right-radius: 150px; border-top-left-radius: 150px; border-top-right-radius: 50px; flex: none; height: 175px; left: calc(49.76525821596247% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-t9knl .framer-1kk47gj { border-bottom-right-radius: 66px; border-top-left-radius: 66px; border-top-right-radius: 50px; flex: none; height: 175px; left: calc(49.76525821596247% - 100% / 2); opacity: 0.5; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-t9knl .framer-110ax4u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-t9knl.framer-1uvtq1r, .framer-t9knl .framer-rbxac2, .framer-t9knl .framer-1dkhv96, .framer-t9knl .framer-17j0p6k, .framer-t9knl .framer-1iml96p, .framer-t9knl .framer-h1dact, .framer-t9knl .framer-1kin52s, .framer-t9knl .framer-1x6oqxs, .framer-t9knl .framer-surb0d, .framer-t9knl .framer-184li91, .framer-t9knl .framer-17tslpn, .framer-t9knl .framer-1d1y3xa, .framer-t9knl .framer-1kadrno, .framer-t9knl .framer-16lc399, .framer-t9knl .framer-p5vd2q, .framer-t9knl .framer-77xdlh, .framer-t9knl .framer-d59os7, .framer-t9knl .framer-1eevpau, .framer-t9knl .framer-exjad3, .framer-t9knl .framer-u0qimq, .framer-t9knl .framer-v66doz, .framer-t9knl .framer-1br24xy, .framer-t9knl .framer-1y80zi, .framer-t9knl .framer-1aqew5k, .framer-t9knl .framer-11ma6gl, .framer-t9knl .framer-1jtomml, .framer-t9knl .framer-1051snr, .framer-t9knl .framer-110ax4u { gap: 0px; } .framer-t9knl.framer-1uvtq1r > *, .framer-t9knl .framer-184li91 > *, .framer-t9knl .framer-1051snr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-t9knl.framer-1uvtq1r > :first-child, .framer-t9knl .framer-rbxac2 > :first-child, .framer-t9knl .framer-17j0p6k > :first-child, .framer-t9knl .framer-h1dact > :first-child, .framer-t9knl .framer-1kin52s > :first-child, .framer-t9knl .framer-surb0d > :first-child, .framer-t9knl .framer-184li91 > :first-child, .framer-t9knl .framer-17tslpn > :first-child, .framer-t9knl .framer-1kadrno > :first-child, .framer-t9knl .framer-p5vd2q > :first-child, .framer-t9knl .framer-exjad3 > :first-child, .framer-t9knl .framer-v66doz > :first-child, .framer-t9knl .framer-1br24xy > :first-child, .framer-t9knl .framer-1y80zi > :first-child, .framer-t9knl .framer-11ma6gl > :first-child, .framer-t9knl .framer-1jtomml > :first-child, .framer-t9knl .framer-1051snr > :first-child, .framer-t9knl .framer-110ax4u > :first-child { margin-top: 0px; } .framer-t9knl.framer-1uvtq1r > :last-child, .framer-t9knl .framer-rbxac2 > :last-child, .framer-t9knl .framer-17j0p6k > :last-child, .framer-t9knl .framer-h1dact > :last-child, .framer-t9knl .framer-1kin52s > :last-child, .framer-t9knl .framer-surb0d > :last-child, .framer-t9knl .framer-184li91 > :last-child, .framer-t9knl .framer-17tslpn > :last-child, .framer-t9knl .framer-1kadrno > :last-child, .framer-t9knl .framer-p5vd2q > :last-child, .framer-t9knl .framer-exjad3 > :last-child, .framer-t9knl .framer-v66doz > :last-child, .framer-t9knl .framer-1br24xy > :last-child, .framer-t9knl .framer-1y80zi > :last-child, .framer-t9knl .framer-11ma6gl > :last-child, .framer-t9knl .framer-1jtomml > :last-child, .framer-t9knl .framer-1051snr > :last-child, .framer-t9knl .framer-110ax4u > :last-child { margin-bottom: 0px; } .framer-t9knl .framer-rbxac2 > *, .framer-t9knl .framer-surb0d > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-t9knl .framer-1dkhv96 > *, .framer-t9knl .framer-1d1y3xa > *, .framer-t9knl .framer-77xdlh > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-t9knl .framer-1dkhv96 > :first-child, .framer-t9knl .framer-1iml96p > :first-child, .framer-t9knl .framer-1x6oqxs > :first-child, .framer-t9knl .framer-1d1y3xa > :first-child, .framer-t9knl .framer-16lc399 > :first-child, .framer-t9knl .framer-77xdlh > :first-child, .framer-t9knl .framer-d59os7 > :first-child, .framer-t9knl .framer-1eevpau > :first-child, .framer-t9knl .framer-u0qimq > :first-child, .framer-t9knl .framer-1aqew5k > :first-child { margin-left: 0px; } .framer-t9knl .framer-1dkhv96 > :last-child, .framer-t9knl .framer-1iml96p > :last-child, .framer-t9knl .framer-1x6oqxs > :last-child, .framer-t9knl .framer-1d1y3xa > :last-child, .framer-t9knl .framer-16lc399 > :last-child, .framer-t9knl .framer-77xdlh > :last-child, .framer-t9knl .framer-d59os7 > :last-child, .framer-t9knl .framer-1eevpau > :last-child, .framer-t9knl .framer-u0qimq > :last-child, .framer-t9knl .framer-1aqew5k > :last-child { margin-right: 0px; } .framer-t9knl .framer-17j0p6k > *, .framer-t9knl .framer-1kin52s > *, .framer-t9knl .framer-11ma6gl > *, .framer-t9knl .framer-1jtomml > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-t9knl .framer-1iml96p > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-t9knl .framer-h1dact > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-t9knl .framer-1x6oqxs > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-t9knl .framer-17tslpn > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-t9knl .framer-1kadrno > *, .framer-t9knl .framer-p5vd2q > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-t9knl .framer-16lc399 > *, .framer-t9knl .framer-1eevpau > *, .framer-t9knl .framer-u0qimq > *, .framer-t9knl .framer-1aqew5k > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-t9knl .framer-d59os7 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-t9knl .framer-exjad3 > *, .framer-t9knl .framer-v66doz > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-t9knl .framer-1br24xy > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-t9knl .framer-1y80zi > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-t9knl .framer-110ax4u > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,\"@media (min-width: 700px) and (max-width: 1199px) { .framer-t9knl.framer-1uvtq1r { width: 700px; } .framer-t9knl .framer-1br24xy { padding: 50px; } .framer-t9knl .framer-1vfs1bs { grid-template-columns: repeat(2, minmax(200px, 1fr)); }}\",\"@media (max-width: 699px) { .framer-t9knl.framer-1uvtq1r { width: 390px; } .framer-t9knl .framer-1dkhv96 { flex-direction: column; padding: 78px 0px 0px 0px; } .framer-t9knl .framer-1msve50 { border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; } .framer-t9knl .framer-uipr1q { border-bottom-left-radius: 350px; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; } .framer-t9knl .framer-h1dact { padding: 30px 25px 50px 25px; } .framer-t9knl .framer-ewqz0i { flex-direction: column; gap: 18px; justify-content: center; } .framer-t9knl .framer-77xdlh { flex: none; justify-content: center; width: 100%; } .framer-t9knl .framer-d59os7 { padding: 0px; } .framer-t9knl .framer-1eevpau { flex-direction: column; gap: 5px; } .framer-t9knl .framer-exjad3 { flex: none; width: 100%; } .framer-t9knl .framer-u0qimq { align-content: flex-end; align-items: flex-end; flex-direction: column; gap: 5px; } .framer-t9knl .framer-v66doz { flex: none; order: 1; width: 100%; } .framer-t9knl .framer-9p3aom { order: 0; } .framer-t9knl .framer-1br24xy { padding: 35px 35px 50px 35px; } .framer-t9knl .framer-1vfs1bs { grid-template-columns: repeat(1, minmax(200px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-t9knl .framer-1dkhv96, .framer-t9knl .framer-ewqz0i, .framer-t9knl .framer-1eevpau, .framer-t9knl .framer-u0qimq { gap: 0px; } .framer-t9knl .framer-1dkhv96 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-t9knl .framer-1dkhv96 > :first-child, .framer-t9knl .framer-ewqz0i > :first-child, .framer-t9knl .framer-1eevpau > :first-child, .framer-t9knl .framer-u0qimq > :first-child { margin-top: 0px; } .framer-t9knl .framer-1dkhv96 > :last-child, .framer-t9knl .framer-ewqz0i > :last-child, .framer-t9knl .framer-1eevpau > :last-child, .framer-t9knl .framer-u0qimq > :last-child { margin-bottom: 0px; } .framer-t9knl .framer-ewqz0i > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-t9knl .framer-1eevpau > *, .framer-t9knl .framer-u0qimq > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3839\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"x7kWgoMoZ\":{\"layout\":[\"fixed\",\"auto\"]},\"MfRInqI2_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"y_rdT0K7Q\":{\"pattern\":\":y_rdT0K7Q\",\"name\":\"reset\"},\"cS5CLoaTI\":{\"pattern\":\":cS5CLoaTI\",\"name\":\"hide\"}}\n * @framerResponsiveScreen\n */const FramerAuRDoiNaX=withCSS(Component,css,\"framer-t9knl\");export default FramerAuRDoiNaX;FramerAuRDoiNaX.displayName=\"Blog Detail\";FramerAuRDoiNaX.defaultProps={height:3839,width:1200};addFonts(FramerAuRDoiNaX,[{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:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2\",weight:\"700\"},{family:\"Font Awesome 6 Pro Solid\",source:\"custom\",url:\"https://framerusercontent.com/assets/JQt8VWrGmEo2Tn86yITvFPNhufQ.woff2\"}]},...OverlayButtonAnimatedHighlightNOlinkFonts,...FormModalFonts,...SocialShareFonts,...NavLinksFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...componentPresets.fonts?.[\"OMIQdZbuV\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"OMIQdZbuV\"]):[],...componentPresets.fonts?.[\"FNVJeZaQY\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"FNVJeZaQY\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAuRDoiNaX\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x7kWgoMoZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MfRInqI2_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"y_rdT0K7Q\\\":{\\\"pattern\\\":\\\":y_rdT0K7Q\\\",\\\"name\\\":\\\"reset\\\"},\\\"cS5CLoaTI\\\":{\\\"pattern\\\":\\\":cS5CLoaTI\\\",\\\"name\\\":\\\"hide\\\"}}\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"3839\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["BRAND_COLORS", "PLATFORM_NAMES", "SocialShare", "props", "type", "colors", "iconSize", "border", "shareUrl", "setShareUrl", "ye", "encodedUrl", "borderRadius", "ue", "window", "linkUrl", "copyToClipboard", "navigator", "err", "u", "Color", "p", "SocialIcon", "addPropertyControls", "ControlType", "size", "color", "customIcon", "contents", "fill", "stroke", "l", "_customIcon_image", "_customIcon_image1", "withFullWidthFramerImage", "Component", "props", "ref", "pe", "ue", "img", "p", "fontStore", "fonts", "css", "className", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "MotionDivWithOptimizedAppearEffect", "RichTextWithFX", "RichText2", "MotionDivWithFullWidthFramerImage184li91", "withCodeBoundaryForOverrides", "withFullWidthFramerImage", "OverlayButtonAnimatedHighlightNOlinkFonts", "getFonts", "pkCg7pwNx_default", "FormModalFonts", "y6vdvHUU_default", "SocialShareFonts", "SocialShare", "NavLinksFonts", "DnEy5Dl9B_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "toResponsiveImage", "value", "transition2", "animation2", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "animation3", "transition3", "animation4", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transformTemplate1", "_", "t", "getContainer", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "isSet", "transition4", "animation5", "animation6", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "ldRQr7jA1_default", "ueDPjsMXG_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "gc_QuK_15", "AP_wmR1yE", "bMMDuhm8k_qyxKsWLWB", "bMMDuhm8k_hS3Rc8pqr", "aZQw1x3LZ", "wwIVA3bdb", "hNqaK76TSDbXsVxXlZ", "XkaonfRGsDbXsVxXlZ", "G_qNxohx3DbXsVxXlZ", "idDbXsVxXlZ", "KzVTY5Tlx", "nextItemId", "nextItemId_AykUzI3dP", "nextItemId_aZQw1x3LZ", "previousItemId", "previousItemId_AykUzI3dP", "previousItemId_aZQw1x3LZ", "AykUzI3dPYjju5E_Ne", "AP_wmR1yEYjju5E_Ne", "gc_QuK_15Yjju5E_Ne", "bMMDuhm8k_hS3Rc8pqrYjju5E_Ne", "aZQw1x3LZYjju5E_Ne", "idYjju5E_Ne", "UJDGXHF4E", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "uPs138D_b3bnx0g", "overlay", "loadMore", "args", "TEB84Zo731wnntms", "scopingClassNames", "cx", "elementId", "useRouteElementId", "dynamicRef", "useSiteRefs", "elementId1", "activeLocaleCode", "useLocaleCode", "textContent", "router", "useRouter", "visible1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "MotionDivWithFXWithOptimizedAppearEffect", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "MotionDivWithOptimizedAppearEffect", "RichText2", "x", "Link", "MotionDivWithFullWidthFramerImage184li91", "ComponentPresetsProvider", "RichTextWithFX", "ChildrenCanSuspend", "PwoPvWgHi_default", "collection", "paginationInfo", "l", "index", "PathVariablesContext", "ComponentViewportProvider", "Container", "pkCg7pwNx_default", "AnimatePresence", "Ga", "y6vdvHUU_default", "SocialShare", "ResolveLinks", "resolvedLinks", "DnEy5Dl9B_default", "collection1", "paginationInfo1", "loadMore1", "index1", "textContent1", "css", "FramerAuRDoiNaX", "withCSS", "AuRDoiNaX_default", "addFonts", "OverlayButtonAnimatedHighlightNOlinkFonts", "FormModalFonts", "SocialShareFonts", "NavLinksFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
