{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/XqXzvxE86S7aqr8ZltVq/LAYch3DHqoUxRhVeqcO4/ArtikelMitHinweis.js", "ssg:https://framerusercontent.com/modules/rnks3L2FF5s5RRcyPSd4/fuWCWS3aNgxJV1UIzdZ9/ImageAlt.js", "ssg:https://framerusercontent.com/modules/IKVd9cgTYZF10XdSJ8CQ/ymwcBJJDcfMdNbOeQn9O/B990kqmRk.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight auto\n */export default function RichTextWithHint(props){const{content,textColor,h1Font,h1Size,h1LineHeight,h2Font,h2Size,h2LineHeight,h3Font,h3Size,h3LineHeight,paragraphFont,paragraphSize,paragraphLineHeight,linkColor,showCTA,ctaTextColor,ctaTitleText,ctaBodyText,ctaButtonText,ctaButtonLink,componentWidth}=props;// Element styles\nconst styles={h1:{fontFamily:h1Font,fontSize:h1Size,lineHeight:h1LineHeight,fontWeight:\"normal\",fontStyle:\"italic\",color:textColor,marginTop:\"40px\",marginBottom:\"0px\"},h2:{fontFamily:h2Font,fontSize:h2Size,lineHeight:h2LineHeight,fontWeight:\"normal\",color:textColor,marginTop:\"40px\",marginBottom:\"0px\"},h3:{fontFamily:h3Font,fontSize:h3Size,lineHeight:h3LineHeight,fontWeight:\"normal\",color:textColor,marginTop:\"40px\",marginBottom:\"0px\"},paragraph:{fontFamily:paragraphFont,fontSize:paragraphSize,lineHeight:paragraphLineHeight,fontWeight:\"normal\",color:textColor,marginTop:\"20px\",marginBottom:\"0px\"},link:{color:linkColor,textDecoration:\"underline\"},ctaContainer:{padding:\"21px 42px 36px\",margin:\"32px auto 9px\",textAlign:\"center\",background:\"rgb(231, 251, 211)\",borderRadius:\"18px\"},ctaHeading:{fontFamily:h2Font,fontSize:h2Size,lineHeight:h2LineHeight,fontWeight:\"normal\",color:ctaTextColor,marginBottom:\"8px\"},ctaText:{fontFamily:paragraphFont,fontSize:paragraphSize,lineHeight:paragraphLineHeight,fontWeight:\"normal\",color:ctaTextColor,marginBottom:\"16px\"},ctaButton:{backgroundColor:\"#228876\",color:\"white\",padding:\"12px 20px\",borderRadius:\"999px\",textDecoration:\"none\",display:\"inline-block\",fontWeight:500,fontFamily:\"IBM Plex Sans, sans-serif\",fontSize:\"16px\",lineHeight:1.5},mainContainer:{maxWidth:componentWidth+\"px\",margin:\"0 auto\"}};// Function to count words in a string or React element\nconst countWords=element=>{if(!element)return 0;if(typeof element===\"string\"){return element.trim().split(/\\s+/).length;}if(Array.isArray(element)){return element.reduce((sum,item)=>sum+countWords(item),0);}if(element.type&&element.props&&element.props.children){return countWords(element.props.children);}return 0;};// Function to extract just the text content from an element (for checking emptiness)\nconst extractTextContent=element=>{if(!element)return\"\";if(typeof element===\"string\"){return element;}if(Array.isArray(element)){return element.map(extractTextContent).join(\"\");}if(element.type&&element.props&&element.props.children){return extractTextContent(element.props.children);}return\"\";};// Function to split content at an H2 heading after ~100 words\nconst splitContentAroundH2=(element,wordCountTarget=100)=>{// Handle case where there's no content\nif(!element){return{before:[],after:[],foundSplitPoint:false};}let beforeContent=[];let afterContent=[];let currentWordCount=0;let foundSplitPoint=false;// Helper function to traverse and split content\nconst traverseAndSplit=(el,isAfterSplit=false)=>{if(!el)return;// If we've already found our split point\nif(isAfterSplit){if(Array.isArray(el)){el.forEach(item=>traverseAndSplit(item,true));}else if(typeof el===\"string\"){afterContent.push(el);}else if(el.type&&el.props){afterContent.push(el);}return;}// Process string element\nif(typeof el===\"string\"){currentWordCount+=el.trim().split(/\\s+/).length;beforeContent.push(el);return;}// Process array\nif(Array.isArray(el)){for(const item of el){if(foundSplitPoint){traverseAndSplit(item,true);}else{traverseAndSplit(item,false);}}return;}// Process React element\nif(el.type&&el.props){// If we've reached the word threshold and found an H2, split here\nif(currentWordCount>=wordCountTarget&&el.type===\"h2\"){foundSplitPoint=true;afterContent.push(el);return;}// Otherwise, process children\nif(el.props.children){const origChildren=el.props.children;if(!foundSplitPoint){const clonedElement={...el};const newChildren=[];if(Array.isArray(origChildren)){for(const child of origChildren){if(foundSplitPoint){traverseAndSplit(child,true);}else{if(typeof child!==\"string\"&&child.type===\"h2\"&&currentWordCount>=wordCountTarget){foundSplitPoint=true;afterContent.push(child);}else{newChildren.push(child);currentWordCount+=countWords(child);}}}if(newChildren.length>0){// Only add the element if it's not an empty paragraph\nif(clonedElement.type!==\"p\"||extractTextContent(newChildren).trim()!==\"\"){beforeContent.push({...clonedElement,props:{...clonedElement.props,children:newChildren}});}}}else{if(typeof origChildren!==\"string\"&&origChildren.type===\"h2\"&&currentWordCount>=wordCountTarget){foundSplitPoint=true;afterContent.push(origChildren);}else{// Only add the element if it's not an empty paragraph\nif(el.type!==\"p\"||extractTextContent(el).trim()!==\"\"){beforeContent.push(el);currentWordCount+=countWords(el);}}}}else{// Only add the element if it's not an empty paragraph\nif(el.type!==\"p\"||extractTextContent(el).trim()!==\"\"){afterContent.push(el);}}}else{if(foundSplitPoint){// Only add the element if it's not an empty paragraph\nif(el.type!==\"p\"||extractTextContent(el).trim()!==\"\"){afterContent.push(el);}}else{// Only add the element if it's not an empty paragraph\nif(el.type!==\"p\"||extractTextContent(el).trim()!==\"\"){beforeContent.push(el);currentWordCount+=countWords(el);}}}}};// Start traversal\nif(content&&content.props&&content.props.children){traverseAndSplit(content.props.children);}else{traverseAndSplit(content);}return{before:beforeContent,after:afterContent,foundSplitPoint};};// Function to render elements but ignore bold/strong tags in headings\nconst renderElementWithoutBold=element=>{if(!element)return null;if(typeof element===\"string\")return element;if(Array.isArray(element)){return element.map((item,index)=>/*#__PURE__*/_jsx(React.Fragment,{children:renderElementWithoutBold(item)},index));}if(element.type&&element.props){const{type,props}=element;// If this is a bold/strong element, render its children directly\nif(type===\"strong\"||type===\"b\"){return renderElementWithoutBold(props.children);}// For all other elements, keep them but process their children\nif(props.children){return /*#__PURE__*/React.cloneElement(element,{...props,key:props.key||Math.random()},renderElementWithoutBold(props.children));}}return element;};// Recursive function to render React elements\nconst renderElement=element=>{if(!element)return null;if(typeof element===\"string\"){// Skip rendering completely empty strings\nif(element.trim()===\"\")return null;return element;}if(Array.isArray(element)){// Filter out null elements after rendering\nconst renderedItems=element.map((item,index)=>{const rendered=renderElement(item);return rendered?/*#__PURE__*/_jsx(React.Fragment,{children:rendered},index):null;}).filter(Boolean)// Remove null/undefined items\n;// If all items were filtered out, return null\nif(renderedItems.length===0)return null;return renderedItems;}if(element.type&&element.props){const{type,props}=element;const key=props.key||Math.random();// Skip empty paragraphs\nif(type===\"p\"){// Extract all text content to check if paragraph is empty\nconst textContent=extractTextContent(props.children);if(!textContent||textContent.trim()===\"\"){return null;}const renderedChildren=renderElement(props.children);if(!renderedChildren)return null;return /*#__PURE__*/_jsx(\"p\",{style:styles.paragraph,children:renderedChildren},key);}// Common HTML elements\nswitch(type){case\"h1\":return /*#__PURE__*/_jsx(\"h1\",{style:styles.h1,children:renderElementWithoutBold(props.children)},key);case\"h2\":return /*#__PURE__*/_jsx(\"h2\",{style:styles.h2,children:renderElementWithoutBold(props.children)},key);case\"h3\":return /*#__PURE__*/_jsx(\"h3\",{style:styles.h3,children:renderElementWithoutBold(props.children)},key);case\"h4\":return /*#__PURE__*/_jsx(\"h4\",{style:{fontWeight:\"normal\"},children:renderElementWithoutBold(props.children)},key);case\"h5\":return /*#__PURE__*/_jsx(\"h5\",{style:{fontWeight:\"normal\"},children:renderElementWithoutBold(props.children)},key);case\"h6\":return /*#__PURE__*/_jsx(\"h6\",{style:{fontWeight:\"normal\"},children:renderElementWithoutBold(props.children)},key);case\"strong\":case\"b\":return /*#__PURE__*/_jsx(\"strong\",{children:renderElement(props.children)},key);case\"em\":case\"i\":return /*#__PURE__*/_jsx(\"em\",{children:renderElement(props.children)},key);case\"u\":return /*#__PURE__*/_jsx(\"u\",{children:renderElement(props.children)},key);case\"a\":return /*#__PURE__*/_jsx(\"a\",{href:props.href,style:styles.link,children:renderElement(props.children)},key);case\"ul\":return /*#__PURE__*/_jsx(\"ul\",{children:renderElement(props.children)},key);case\"ol\":return /*#__PURE__*/_jsx(\"ol\",{children:renderElement(props.children)},key);case\"li\":return /*#__PURE__*/_jsx(\"li\",{children:renderElement(props.children)},key);case\"br\":return /*#__PURE__*/_jsx(\"br\",{},key);default:if(props&&props.children){const renderedChildren=renderElement(props.children);if(!renderedChildren)return null;return /*#__PURE__*/_jsx(\"div\",{children:renderedChildren},key);}}}return null;};// Split content and parse CTA body text\nconst{before,after}=splitContentAroundH2(content);const ctaBodyParagraphs=ctaBodyText.split(\"\\n\").map((paragraph,index)=>/*#__PURE__*/_jsxs(React.Fragment,{children:[paragraph,index<ctaBodyText.split(\"\\n\").length-1&&/*#__PURE__*/_jsx(\"br\",{})]},index));// Render the content\nreturn /*#__PURE__*/_jsxs(\"div\",{style:styles.mainContainer,children:[/*#__PURE__*/_jsx(\"div\",{className:\"rich-text-content-before\",children:renderElement(before)}),showCTA&&/*#__PURE__*/_jsxs(\"div\",{style:styles.ctaContainer,children:[/*#__PURE__*/_jsx(\"h2\",{style:styles.ctaHeading,children:ctaTitleText}),/*#__PURE__*/_jsx(\"p\",{style:styles.ctaText,children:ctaBodyParagraphs}),/*#__PURE__*/_jsx(\"a\",{href:ctaButtonLink,style:styles.ctaButton,className:\"plausible-event-name=CTA+Content-Page\",children:ctaButtonText})]}),/*#__PURE__*/_jsx(\"div\",{className:\"rich-text-content-after\",children:renderElement(after)})]});}// Default props\nRichTextWithHint.defaultProps={textColor:\"#020C26\",h1Font:\"RB Quarla Display, sans-serif\",h1Size:\"32px\",h1LineHeight:1.3,h2Font:\"RB Quarla Display, sans-serif\",h2Size:\"28px\",h2LineHeight:1.4,h3Font:\"Inter, sans-serif\",h3Size:\"1.75em\",h3LineHeight:1.3,paragraphFont:\"IBM Plex Sans, sans-serif\",paragraphSize:\"18px\",paragraphLineHeight:1.6,linkColor:\"#0066CC\",showCTA:true,ctaTextColor:\"#16444F\",ctaTitleText:\"Befund erkl\\xe4ren lassen?\",ctaBodyText:\"Du hast einen Arztbericht oder Befund den du nicht verstehst? Dann nutze Simply Onno, um dir diesen in einfache Sprache \\xfcbersetzen und erkl\\xe4ren zu lassen.\",ctaButtonText:\"Mehr Infos\",ctaButtonLink:\"https://www.simply-onno.com\",componentWidth:700};// Property controls\naddPropertyControls(RichTextWithHint,{content:{title:\"Content\",type:ControlType.RichText},// Component width\ncomponentWidth:{title:\"Width\",type:ControlType.Number,defaultValue:700,min:300,max:1200,step:10},// Global text color\ntextColor:{title:\"Text Color\",type:ControlType.Color,defaultValue:\"#020C26\"},// CTA controls\nshowCTA:{title:\"Show CTA\",type:ControlType.Boolean,defaultValue:true},ctaTextColor:{title:\"CTA Text Color\",type:ControlType.Color,defaultValue:\"#16444F\"},ctaTitleText:{title:\"CTA Title\",type:ControlType.String,defaultValue:\"Ganzen Befund \\xfcbersetzen?\",placeholder:\"Enter title text\",hidden:props=>!props.showCTA},ctaBodyText:{title:\"CTA Body Text\",type:ControlType.Text,defaultValue:\"Du hast einen Arztbericht oder Befund den du nicht verstehst? Dann nutze Simply Onno, um alle deine medizinischen Dokumente zu verstehen.\",placeholder:\"Enter body text\",displayTextArea:true,hidden:props=>!props.showCTA},ctaButtonText:{title:\"CTA Button Text\",type:ControlType.String,defaultValue:\"Mehr Infos\",placeholder:\"Enter button text\",hidden:props=>!props.showCTA},ctaButtonLink:{title:\"CTA Button Link\",type:ControlType.String,defaultValue:\"https://www.simply-onno.com\",placeholder:\"Enter link URL or page path\",hidden:props=>!props.showCTA},// H1 styling\nh1Font:{title:\"H1 Font\",type:ControlType.String,defaultValue:\"RB Quarla Display, sans-serif\",placeholder:\"Font family\"},h1Size:{title:\"H1 Size\",type:ControlType.String,defaultValue:\"32px\"},h1LineHeight:{title:\"H1 Line Height\",type:ControlType.Number,defaultValue:1.3,min:1,max:2,step:.1},// H2 styling\nh2Font:{title:\"H2 Font\",type:ControlType.String,defaultValue:\"RB Quarla Display, sans-serif\",placeholder:\"Font family\"},h2Size:{title:\"H2 Size\",type:ControlType.String,defaultValue:\"28px\"},h2LineHeight:{title:\"H2 Line Height\",type:ControlType.Number,defaultValue:1.4,min:1,max:2,step:.1},// H3 styling\nh3Font:{title:\"H3 Font\",type:ControlType.String,defaultValue:\"Inter, sans-serif\",placeholder:\"Font family\"},h3Size:{title:\"H3 Size\",type:ControlType.String,defaultValue:\"1.75em\"},h3LineHeight:{title:\"H3 Line Height\",type:ControlType.Number,defaultValue:1.3,min:1,max:2,step:.1},// Paragraph styling\nparagraphFont:{title:\"Paragraph Font\",type:ControlType.String,defaultValue:\"IBM Plex Sans, sans-serif\",placeholder:\"Font family\"},paragraphSize:{title:\"Paragraph Size\",type:ControlType.String,defaultValue:\"18px\"},paragraphLineHeight:{title:\"Paragraph Line Height\",type:ControlType.Number,defaultValue:1.6,min:1,max:2,step:.1},// Link styling\nlinkColor:{title:\"Link Color\",type:ControlType.Color,defaultValue:\"#0066CC\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RichTextWithHint\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ArtikelMitHinweis.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{addPropertyControls,ControlType}from\"framer\";// Learn more: https://www.framer.com/developers/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withDynamicAlt(Component){return addPropertyControls(props=>{const{altText=\"Article Illustration\",...rest}=props;return /*#__PURE__*/_jsx(Component,{...rest,alt:altText});},{altText:{type:ControlType.String,title:\"Alt Text\",defaultValue:\"Article Illustration\",placeholder:\"Enter image alt text\"}});}export function ImageWithAlt(props){const{image,altText}=props;return /*#__PURE__*/_jsx(\"img\",{src:image?.src,srcSet:image?.srcSet,alt:altText,style:{width:\"100%\",height:\"100%\",objectFit:\"cover\"}});}ImageWithAlt.defaultProps={altText:\"Article Illustration\"};addPropertyControls(ImageWithAlt,{image:{type:ControlType.ResponsiveImage,title:\"Image\"},altText:{type:ControlType.String,title:\"Alt Text\",defaultValue:\"Article Illustration\",placeholder:\"Enter image alt text\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"ImageWithAlt\":{\"type\":\"reactComponent\",\"name\":\"ImageWithAlt\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"withDynamicAlt\":{\"type\":\"reactHoc\",\"name\":\"withDynamicAlt\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ImageAlt.map", "// Generated by Framer (b0cf16c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Link,NotFoundError,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Footer from\"#framer/local/canvasComponent/H9p8VEfdy/H9p8VEfdy.js\";import HeaderFixed from\"#framer/local/canvasComponent/vKVvi3jNb/vKVvi3jNb.js\";import RichTextWithHint from\"#framer/local/codeFile/Xf7xbjT/ArtikelMitHinweis.js\";import{add_CTA_Event}from\"#framer/local/codeFile/Gpj17Sn/Events.js\";import{ImageWithAlt}from\"#framer/local/codeFile/YE5zWLL/ImageAlt.js\";import SEOContentGlossar from\"#framer/local/collection/Iowh0wPe0/Iowh0wPe0.js\";import*as sharedStyle from\"#framer/local/css/oOB2gFDMf/oOB2gFDMf.js\";import*as sharedStyle1 from\"#framer/local/css/WCj6RX85d/WCj6RX85d.js\";import metadataProvider from\"#framer/local/webPageMetadata/B990kqmRk/B990kqmRk.js\";const HeaderFixedFonts=getFonts(HeaderFixed);const ImageWithAltFonts=getFonts(ImageWithAlt);const RichTextWithHintFonts=getFonts(RichTextWithHint);const MotionAAdd_CTA_Event1fgoull=withCodeBoundaryForOverrides(motion.a,{nodeId:\"HPcO8vCY7\",override:add_CTA_Event,scopeId:\"B990kqmRk\"});const FooterFonts=getFonts(Footer);const breakpoints={C_6K4HWip:\"(min-width: 1018px)\",qqqhp_XBT:\"(max-width: 1017px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-tcurm\";const variantClassNames={C_6K4HWip:\"framer-v-wyczcv\",qqqhp_XBT:\"framer-v-1w9gcse\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={backgroundColor:\"var(--token-a914c170-35d5-4fe4-b10e-dc39bdd5850c, rgb(22, 68, 79))\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"C_6K4HWip\",Phone:\"qqqhp_XBT\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"C_6K4HWip\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"B990kqmRk\",data:SEOContentGlossar,type:\"Collection\"},select:[{collection:\"B990kqmRk\",name:\"w2FZFrPYd\",type:\"Identifier\"},{collection:\"B990kqmRk\",name:\"rffCcaAo3\",type:\"Identifier\"},{collection:\"B990kqmRk\",name:\"G2GGIUHP1\",type:\"Identifier\"},{collection:\"B990kqmRk\",name:\"fZj7aRKkM\",type:\"Identifier\"},{collection:\"B990kqmRk\",name:\"puBFduTVZ\",type:\"Identifier\"},{collection:\"B990kqmRk\",name:\"jUiBbWQ1E\",type:\"Identifier\"},{collection:\"B990kqmRk\",name:\"SSciHPzI9\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"B990kqmRk\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,fZj7aRKkM=getFromCurrentRouteData(\"fZj7aRKkM\")??\"\",G2GGIUHP1=getFromCurrentRouteData(\"G2GGIUHP1\"),SSciHPzI9=getFromCurrentRouteData(\"SSciHPzI9\"),jUiBbWQ1E=getFromCurrentRouteData(\"jUiBbWQ1E\")??\"\",w2FZFrPYd=getFromCurrentRouteData(\"w2FZFrPYd\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const activeLocaleCode=useLocaleCode();const textContent=toDateString(G2GGIUHP1,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"C_6K4HWip\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-d22e8090-383e-439f-8a6b-b9d242649d1f, rgb(248, 246, 245)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-wyczcv\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xmvgfy-container\",layoutScroll:true,nodeId:\"QmEVvFb6y\",scopeId:\"B990kqmRk\",children:/*#__PURE__*/_jsx(HeaderFixed,{height:\"100%\",id:\"QmEVvFb6y\",layoutId:\"QmEVvFb6y\",style:{width:\"100%\"},variant:\"aj_4V012J\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16ti5yq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ufz5xj\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v59hms\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kbofkj\",\"data-border\":true,\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qqqhp_XBT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"Analgesie: Was ist das? Definition und Beispiele\"})}),fonts:[\"CUSTOM;RB Quaria Display Regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-173e11l\",\"data-styles-preset\":\"oOB2gFDMf\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"Analgesie: Was ist das? Definition und Beispiele\"})}),className:\"framer-1skfi40\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:fZj7aRKkM,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-180r59f\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",style:{\"--framer-text-color\":\"var(--token-eeceb38a-b0ab-4c9e-beab-fbe15d03d1d2, rgb(34, 136, 118))\"},children:\"Apr 26, 2024\"})}),className:\"framer-xxrrn1\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",style:{\"--framer-text-color\":\"var(--token-868135b5-c80c-42b9-979b-7cc66fec15f9, rgb(195, 193, 199))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"\u2022\"})})}),className:\"framer-na7vgi\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",style:{\"--framer-text-color\":\"var(--token-eeceb38a-b0ab-4c9e-beab-fbe15d03d1d2, rgb(34, 136, 118))\"},children:\"PD Dr. med. Witold Polanski\"})}),className:\"framer-182p2ja\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-awvgei-container\",isAuthoredByUser:true,nodeId:\"ql4xnGdtM\",scopeId:\"B990kqmRk\",children:/*#__PURE__*/_jsx(ImageWithAlt,{altText:jUiBbWQ1E,height:\"100%\",id:\"ql4xnGdtM\",image:toResponsiveImage(SSciHPzI9),layoutId:\"ql4xnGdtM\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sfk3un\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cylt17-container\",isAuthoredByUser:true,nodeId:\"BxboO9btR\",scopeId:\"B990kqmRk\",children:/*#__PURE__*/_jsx(RichTextWithHint,{componentWidth:700,content:w2FZFrPYd,ctaButtonLink:\"https://www.simply-onno.com\",ctaButtonText:\"Mehr Infos\",ctaTextColor:\"rgb(22, 68, 79)\",ctaTitleText:\"Ganzen Befund \\xfcbersetzen?\",h1Font:\"RB Quaria Display\",h1LineHeight:1.3,h1Size:\"32px\",h2Font:\"RB Quaria Display Regular\",h2LineHeight:1.4,h2Size:\"28px\",h3Font:\"RB Quaria Display Regular\",h3LineHeight:1.3,h3Size:\"28px\",height:\"100%\",id:\"BxboO9btR\",layoutId:\"BxboO9btR\",linkColor:\"rgb(0, 102, 204)\",paragraphFont:\"IBM Plex Sans, sans-serif\",paragraphLineHeight:1.6,paragraphSize:\"18px\",showCTA:true,style:{maxWidth:\"100%\",width:\"100%\"},textColor:\"rgb(2, 12, 38)\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18q7avw\",\"data-border\":true,\"data-framer-name\":\"Disclaimer\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(22, 68, 79)\"},children:\"BITTE BEACHTEN\"})}),className:\"framer-1yi5z54\",\"data-framer-name\":\"BITTE BEACHTEN\",fonts:[\"GF;IBM Plex Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",children:\"Dieser Artikel dient ausschlie\\xdflich der allgemeinen Information und kann nicht das pers\\xf6nliche Gespr\\xe4ch mit einer \\xc4rztin oder einem Arzt ersetzen. F\\xfcr eine individuelle Diagnose, Therapieempfehlung und Behandlung konsultieren Sie bitte immer medizinisches Fachpersonal.\"})}),className:\"framer-ykmpqg\",\"data-framer-name\":\"Es ist immer eine gute Idee, bei einer Verletzung oder wenn du dir nicht sicher bist, was zu tun ist, einen Arzt aufzusuchen. Der Arzt kann genau sagen, was los ist und wie du am besten behandelt wirst.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TtbrpX20t\"},motionChild:true,nodeId:\"HPcO8vCY7\",openInNewTab:false,scopeId:\"B990kqmRk\",children:/*#__PURE__*/_jsx(MotionAAdd_CTA_Event1fgoull,{className:\"framer-1fgoull framer-166agpu\",\"data-framer-name\":\"Primary/Default\",whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(230, 251, 210)\"},children:\"Jetzt ganzen Befund \\xfcbersetzen\"})}),className:\"framer-1lm670k\",\"data-framer-name\":\"Button text\",fonts:[\"GF;IBM Plex Sans-500\"],verticalAlignment:\"center\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qqqhp_XBT:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+210+1194.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pcnpdf-container\",nodeId:\"uzZssAnTF\",scopeId:\"B990kqmRk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qqqhp_XBT:{style:{width:\"100%\"},variant:\"SDUrmxFrG\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"uzZssAnTF\",layoutId:\"uzZssAnTF\",style:{height:\"100%\",width:\"100%\"},variant:\"wLyMXbHV0\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tcurm.framer-166agpu, .framer-tcurm .framer-166agpu { display: block; }\",\".framer-tcurm.framer-wyczcv { align-content: center; align-items: center; background-color: var(--token-d22e8090-383e-439f-8a6b-b9d242649d1f, #f8f6f5); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 190px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 210px 0px 0px 0px; position: relative; width: 1018px; }\",\".framer-tcurm .framer-xmvgfy-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",\".framer-tcurm .framer-16ti5yq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 18px 0px 18px; position: relative; width: 100%; }\",\".framer-tcurm .framer-ufz5xj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 83px; height: min-content; justify-content: flex-start; max-width: 740px; padding: 0px 20px 0px 20px; position: relative; width: 1px; }\",\".framer-tcurm .framer-1v59hms { 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-tcurm .framer-1kbofkj { --border-bottom-width: 1px; --border-color: var(--token-eeceb38a-b0ab-4c9e-beab-fbe15d03d1d2, #228876); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 21px 0px; position: relative; width: 100%; }\",\".framer-tcurm .framer-1skfi40 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tcurm .framer-180r59f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tcurm .framer-xxrrn1, .framer-tcurm .framer-na7vgi, .framer-tcurm .framer-182p2ja { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tcurm .framer-awvgei-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-tcurm .framer-sfk3un { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tcurm .framer-cylt17-container { flex: none; height: auto; max-width: 740px; position: relative; width: 700px; }\",\".framer-tcurm .framer-18q7avw { --border-bottom-width: 1px; --border-color: #228876; --border-left-width: 1px; --border-right-width: 1px; --border-style: dashed; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-d22e8090-383e-439f-8a6b-b9d242649d1f, #f8f6f5); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-tcurm .framer-1yi5z54 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 321px; word-break: break-word; word-wrap: break-word; }\",\".framer-tcurm .framer-ykmpqg { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tcurm .framer-1fgoull { align-content: center; align-items: center; background-color: #228876; border-bottom-left-radius: 831px; border-bottom-right-radius: 831px; border-top-left-radius: 831px; border-top-right-radius: 831px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 54px; justify-content: center; overflow: hidden; padding: 14px 20px 14px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-tcurm .framer-1lm670k { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tcurm .framer-pcnpdf-container { flex: none; height: 64px; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tcurm.framer-wyczcv, .framer-tcurm .framer-16ti5yq, .framer-tcurm .framer-ufz5xj, .framer-tcurm .framer-1v59hms, .framer-tcurm .framer-1kbofkj, .framer-tcurm .framer-180r59f, .framer-tcurm .framer-sfk3un, .framer-tcurm .framer-18q7avw, .framer-tcurm .framer-1fgoull { gap: 0px; } .framer-tcurm.framer-wyczcv > * { margin: 0px; margin-bottom: calc(190px / 2); margin-top: calc(190px / 2); } .framer-tcurm.framer-wyczcv > :first-child, .framer-tcurm .framer-ufz5xj > :first-child, .framer-tcurm .framer-1v59hms > :first-child, .framer-tcurm .framer-1kbofkj > :first-child, .framer-tcurm .framer-sfk3un > :first-child, .framer-tcurm .framer-18q7avw > :first-child { margin-top: 0px; } .framer-tcurm.framer-wyczcv > :last-child, .framer-tcurm .framer-ufz5xj > :last-child, .framer-tcurm .framer-1v59hms > :last-child, .framer-tcurm .framer-1kbofkj > :last-child, .framer-tcurm .framer-sfk3un > :last-child, .framer-tcurm .framer-18q7avw > :last-child { margin-bottom: 0px; } .framer-tcurm .framer-16ti5yq > *, .framer-tcurm .framer-180r59f > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tcurm .framer-16ti5yq > :first-child, .framer-tcurm .framer-180r59f > :first-child, .framer-tcurm .framer-1fgoull > :first-child { margin-left: 0px; } .framer-tcurm .framer-16ti5yq > :last-child, .framer-tcurm .framer-180r59f > :last-child, .framer-tcurm .framer-1fgoull > :last-child { margin-right: 0px; } .framer-tcurm .framer-ufz5xj > * { margin: 0px; margin-bottom: calc(83px / 2); margin-top: calc(83px / 2); } .framer-tcurm .framer-1v59hms > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tcurm .framer-1kbofkj > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-tcurm .framer-sfk3un > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-tcurm .framer-18q7avw > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-tcurm .framer-1fgoull > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-tcurm[data-border=\"true\"]::after, .framer-tcurm [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (max-width: 1017px) { .framer-tcurm.framer-wyczcv { padding: 140px 0px 0px 0px; width: 390px; } .framer-tcurm .framer-16ti5yq { flex-direction: column; padding: 0px 16px 0px 16px; } .framer-tcurm .framer-ufz5xj { flex: none; gap: 24px; width: 100%; } .framer-tcurm .framer-180r59f { align-content: flex-start; align-items: flex-start; flex-wrap: wrap; } .framer-tcurm .framer-xxrrn1 { order: 0; } .framer-tcurm .framer-na7vgi { order: 1; } .framer-tcurm .framer-182p2ja { order: 2; } .framer-tcurm .framer-cylt17-container { width: 100%; } .framer-tcurm .framer-pcnpdf-container { height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tcurm .framer-16ti5yq, .framer-tcurm .framer-ufz5xj { gap: 0px; } .framer-tcurm .framer-16ti5yq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-tcurm .framer-16ti5yq > :first-child, .framer-tcurm .framer-ufz5xj > :first-child { margin-top: 0px; } .framer-tcurm .framer-16ti5yq > :last-child, .framer-tcurm .framer-ufz5xj > :last-child { margin-bottom: 0px; } .framer-tcurm .framer-ufz5xj > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3592\n * @framerIntrinsicWidth 1018\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qqqhp_XBT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerB990kqmRk=withCSS(Component,css,\"framer-tcurm\");export default FramerB990kqmRk;FramerB990kqmRk.displayName=\"SEO Content - Glossar\";FramerB990kqmRk.defaultProps={height:3592,width:1018};addFonts(FramerB990kqmRk,[{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:\"RB Quaria Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/04WR54Ayk0cPz4Derk8o4NpUw.woff2\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXGKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1swZSAXcomDVmadSD2FlzBaI5loa26g.woff2\",weight:\"500\"}]},...HeaderFixedFonts,...ImageWithAltFonts,...RichTextWithHintFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerB990kqmRk\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qqqhp_XBT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"3592\",\"framerIntrinsicWidth\":\"1018\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["RichTextWithHint", "props", "content", "textColor", "h1Font", "h1Size", "h1LineHeight", "h2Font", "h2Size", "h2LineHeight", "h3Font", "h3Size", "h3LineHeight", "paragraphFont", "paragraphSize", "paragraphLineHeight", "linkColor", "showCTA", "ctaTextColor", "ctaTitleText", "ctaBodyText", "ctaButtonText", "ctaButtonLink", "componentWidth", "styles", "countWords", "element", "sum", "item", "extractTextContent", "splitContentAroundH2", "wordCountTarget", "beforeContent", "afterContent", "currentWordCount", "foundSplitPoint", "traverseAndSplit", "el", "isAfterSplit", "origChildren", "clonedElement", "newChildren", "child", "renderElementWithoutBold", "index", "p", "x", "type", "q", "renderElement", "renderedItems", "rendered", "key", "textContent", "renderedChildren", "before", "after", "ctaBodyParagraphs", "paragraph", "u", "addPropertyControls", "ControlType", "useStore", "createStore", "ImageWithAlt", "props", "image", "altText", "p", "addPropertyControls", "ControlType", "HeaderFixedFonts", "getFonts", "vKVvi3jNb_default", "ImageWithAltFonts", "ImageWithAlt", "RichTextWithHintFonts", "RichTextWithHint", "MotionAAdd_CTA_Event1fgoull", "withCodeBoundaryForOverrides", "motion", "add_CTA_Event", "FooterFonts", "H9p8VEfdy_default", "breakpoints", "serializationHash", "variantClassNames", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "toResponsiveImage", "transition1", "animation", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "Iowh0wPe0_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "fZj7aRKkM", "G2GGIUHP1", "SSciHPzI9", "jUiBbWQ1E", "w2FZFrPYd", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "activeLocaleCode", "useLocaleCode", "textContent", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "vKVvi3jNb_default", "PropertyOverrides2", "x", "RichText2", "ImageWithAlt", "RichTextWithHint", "Link", "MotionAAdd_CTA_Event1fgoull", "H9p8VEfdy_default", "css", "FramerB990kqmRk", "withCSS", "B990kqmRk_default", "addFonts", "HeaderFixedFonts", "ImageWithAltFonts", "RichTextWithHintFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
