{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/VTIRgCtWbPApsTjNtLlL/YouTube.js", "ssg:https://framerusercontent.com/modules/9Zkn5vJAKmiek9bPcFOT/xl2bzc09HEMy0UFlNKSc/sKg1pM28E-2.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail)}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as r}from\"react/jsx-runtime\";import{ComponentPresetsConsumer as t,Link as i}from\"framer\";import{motion as n}from\"framer-motion\";import*as a from\"react\";import{Youtube as l}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/VTIRgCtWbPApsTjNtLlL/YouTube.js\";export const richText=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"About Service:\"})}),/*#__PURE__*/e(\"p\",{children:\"Pathway Surgery can revitalize your painful life with its private hammertoe correction surgery. You can get rid of foot pain in Ontario, Quebec, and throughout Canada with our skilled orthopaedic surgeons.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Symptoms Of Hammer Toe Deformity At Pathway Surgery\"})}),/*#__PURE__*/e(\"p\",{children:\"Living with hammer toes can be more than just a cosmetic concern. It's a source of daily:\"}),/*#__PURE__*/e(\"img\",{alt:\"Symptoms Of Hammer Toe Deformity At Pathway Surgery\",className:\"framer-image\",height:\"400\",src:\"https://framerusercontent.com/images/s5mYRLYlwUdHFvdP1AyACzzpKk.webp\",srcSet:\"https://framerusercontent.com/images/s5mYRLYlwUdHFvdP1AyACzzpKk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/s5mYRLYlwUdHFvdP1AyACzzpKk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/s5mYRLYlwUdHFvdP1AyACzzpKk.webp 1920w\",style:{aspectRatio:\"1920 / 800\"},width:\"960\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Foot discomfort\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Toe muscle balance problems\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Toe joint or middle joint pain\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reduced foot mobility\\xa0\"})})]}),/*#__PURE__*/e(\"p\",{children:\"We understand the challenges you may face because of a hammer toe. Our experts help you tackle those problems with a patient-centric approach when they treat hammertoes.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Private Hammertoe Correction Surgery Diagnosis At Pathway\"})}),/*#__PURE__*/e(\"p\",{children:\"You can enjoy accurate diagnosis of hammertoe surgery with our advanced techniques, including:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Comprehensive physical examination of your foot and ankle\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Assessment of your past and present medical history\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Diagnostic imaging tests such as x-rays and MRIs for determining the extent of hammer toe damage\"})})]}),/*#__PURE__*/e(\"p\",{children:\"We recognize that every patient's condition is different, which is why we approach all foot problems with personalized care.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Private Hammertoe Correction At Pathway: What Happens During The Outpatient Procedure\"})}),/*#__PURE__*/e(\"p\",{children:\"The surgical procedure itself is performed under precise medical conditions, typically involving:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Administration of local, general, or spinal anesthesia, depending on your specific case\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Careful realignment of the affected toe's bones and joints\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Potential tendon and ligament adjustments to restore affected toe's alignment\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Minimally invasive techniques to reduce recovery time and scar tissue\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Our orthopaedic surgeons conduct your hammertoe surgery with extra caution to ensure no complications arise.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Benefits Of Private Hammertoe Correction At Pathway Surgery\"})}),/*#__PURE__*/e(\"p\",{children:\"Choosing private hammertoe correction with Pathway Surgery offers numerous advantages:\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Reduced Wait Times\"}),\": Unlike public healthcare systems, our private service ensures you receive timely treatment without lengthy waiting periods.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Personalized Care\"}),\": Each patient receives individualized attention from consultation through post-operative recovery.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Advanced Surgical Techniques\"}),\": We employ the latest surgical methods to ensure optimal outcomes and minimal invasiveness when healing your affected foot.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Comprehensive Recovery Support\"}),\": Our team provides detailed post-surgical guidance, including rehabilitation recommendations such as keeping your foot elevated and wearing shoe inserts.\"]})})]})]});export const richText1=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Rest with your foot elevated above the heart level\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Manage pain with prescribed medications\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Keep surgical site clean and dry\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Non-weight bearing with assistive devices\"})})]})});export const richText2=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Begin physical therapy exercises as directed\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Transition to partial weight-bearing\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Progressive monitoring for signs of infection\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Gradual increase in mobility with walking devices\"})})]})});export const richText3=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Progress to full weight-bearing with support\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strengthening and range-of-motion exercises increase\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Scar tissue management begins\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Return to modified daily activities\"})})]})});export const richText4=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Full rehabilitation of strength and flexibility\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Return to normal footwear gradually\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Resume most regular activities and exercise\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Final healing and restoration of function\"})})]})});export const richText5=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is the Lateral Ligament?\"}),/*#__PURE__*/r(\"p\",{children:[\"The lateral ligament complex in the ankle\u2014mainly the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"anterior talofibular ligament (ATFL)\"}),\"\\xa0and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"calcaneofibular ligament (CFL)\"}),\"\u2014is crucial for stabilizing the outer part of your ankle. It prevents the ankle from rolling outward and keeps you steady during walking, running, and pivoting.\"]}),/*#__PURE__*/e(\"p\",{children:\"When these ligaments are stretched or torn (commonly from ankle sprains), patients may experience pain, swelling, and long-term instability. If left untreated, this can lead to chronic ankle problems.\"}),/*#__PURE__*/e(\"h2\",{children:\"Why Lateral Ligament Repair is Important\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Restores ankle stability\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reduces the risk of future sprains or injuries\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Helps patients return to sports, work, and daily life\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Prevents chronic ankle instability and arthritis over time\"})})]}),/*#__PURE__*/e(\"h2\",{children:\"How the Procedure is Performed\"}),/*#__PURE__*/r(\"p\",{children:[\"Modern lateral ligament repair is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive outpatient procedure\"}),\"\\xa0designed to restore the normal function of the ankle.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Key Steps:\"})}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A small incision is made on the outside of the ankle.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Torn or stretched ligaments are repaired or reattached to the bone.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The ankle is reinforced for long-term strength and stability.\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"Advanced Arthrex Technologies\"}),/*#__PURE__*/r(\"p\",{children:[\"We use\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Arthrex\\xae Brostr\\xf6m Repair System\"}),\", which includes:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Knotless FiberTape\\xae anchors\"}),\"\\xa0for strong, secure fixation\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Minimally invasive tools\"}),\"\\xa0that reduce incision size and recovery time\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"All-Inside Brostr\\xf6m technique\"}),\", allowing for internal ankle reinforcement without large incisions\"]})})]}),/*#__PURE__*/e(\"h3\",{children:\"These technologies help:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Minimize scarring\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Speed up recovery\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Improve surgical precision\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reduce post-operative pain\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"Is This Procedure Right for You?\"}),/*#__PURE__*/e(\"p\",{children:\"If you\u2019ve had repeated ankle sprains or feel your ankle \u201Cgives out,\u201D lateral ligament repair may be the solution. Our team can assess your condition and guide you through a personalized treatment plan.\"})]});export const richText6=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Why Is the Achilles Tendon Important?\"}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Achilles tendon\"}),\"\\xa0is the strongest and largest tendon in the body. It connects your calf muscles to your heel bone and plays a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"crucial role in walking, running, and jumping\"}),\".\",/*#__PURE__*/e(\"br\",{}),\"When torn or ruptured, simple movements like pushing off the ground or climbing stairs become difficult or impossible.\"]}),/*#__PURE__*/e(\"h2\",{children:\"When Is Achilles Tendon Repair Needed?\"}),/*#__PURE__*/e(\"p\",{children:\"Achilles tendon repair is typically recommended when:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"You have a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"complete tear or rupture\"})]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Non-surgical treatments (like bracing or rehab) are not effective\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"You\u2019re an active individual or athlete looking for a faster return to function\"})})]}),/*#__PURE__*/e(\"h2\",{children:\"How the Procedure Is Done\"}),/*#__PURE__*/r(\"p\",{children:[\"Modern Achilles tendon repair uses\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive techniques\"}),\"\\xa0to reduce tissue damage and speed up recovery. Surgeons make a small incision near the back of the ankle to access the torn tendon.\"]}),/*#__PURE__*/e(\"h3\",{children:\"Advanced Arthrex Technology\"}),/*#__PURE__*/r(\"p\",{children:[\"We use\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Arthrex\\xae PARS (Percutaneous Achilles Repair System)\"}),\"\\xa0\u2013 a cutting-edge solution designed to:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Minimize incision size.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reduce scar tissue and infection risk.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Precisely align and secure the tendon using strong, biocompatible sutures.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Promote faster healing and quicker return to activity.\"})})]})]});export const richText7=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"About Service:\"})}),/*#__PURE__*/e(\"p\",{children:\"Are you looking for relief from foot and ankle problems? Pathway Surgery helps you get rid of pain and improve your foot stability with private subtalar joint fusion in Toronto, Montreal, and more.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"When Do We Perform Private Subtalar Joint Fusion?\"})}),/*#__PURE__*/e(\"p\",{children:\"We perform subtalar joint fusion when patients have ongoing pain, instability, or major wear and tear in the subtalar joint. Our surgeons usually recommend subtalar fusion surgery for people with:\"}),/*#__PURE__*/e(\"img\",{alt:\"When Do We Perform Private Subtalar Joint Fusion?\",className:\"framer-image\",height:\"400\",src:\"https://framerusercontent.com/images/xP2U5kjlmHT7n40I5uAFlCndAVM.webp\",srcSet:\"https://framerusercontent.com/images/xP2U5kjlmHT7n40I5uAFlCndAVM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/xP2U5kjlmHT7n40I5uAFlCndAVM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/xP2U5kjlmHT7n40I5uAFlCndAVM.webp 1920w\",style:{aspectRatio:\"1920 / 800\"},width:\"960\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Chronic arthritis in the subtalar joint\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Long-term ankle instability\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Subtalar joint damage after an injury\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Complex flat foot (pes planus) problems\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Painful foot arthritis that other treatments haven't helped\"})})]}),/*#__PURE__*/e(\"p\",{children:\"We take a close look at each patient's medical background scan results, and how the condition limits their activities to decide if subtalar joint fusion is the best surgery option.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"How Is Private Subtalar Joint Fusion Performed At Pathway Surgery\"})}),/*#__PURE__*/e(\"p\",{children:\"Our cutting-edge subtalar joint fusion surgery uses careful, exact methods and up-to-date surgical skills. The process includes:\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Planning surgery using advanced diagnostic images\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"We put you under anesthesia and remove damaged cartilage from the subtalar joint\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Our surgeon positions the joint for best alignment and stability\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lastly, we fix your joint and bones using special orthopedic hardware like screws or plates\"})})]}),/*#__PURE__*/e(\"p\",{children:\"The private subtalar fusion surgery at Pathway will help you walk and run again without any pain.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Private Subtalar Joint Fusion Recovery Tips By Our Experts\"})}),/*#__PURE__*/e(\"p\",{children:\"To recover well from subtalar joint fusion, you need to participate diligently in physical therapy sessions. We also give personal advice to help you heal:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Stick to the weight-bearing limits our surgeon sets\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Use the walking aids as prescribed by our doctor\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Do the recommended physical therapy and rehab exercises\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Keep up with all your follow-up appointments to check how you're healing\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Take good care of your wound to prevent infections\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Our devoted after-surgery care team stays focused on helping you recover. They provide skilled advice and kind support throughout your healing process.\"})]});export const richText8=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"About Service:\"})}),/*#__PURE__*/e(\"p\",{children:\"Enjoy relief from painful foot and ankle problems with Pathway Surgery. We help you recover from private Tibio-talo-calcaneal fusion (TTC fusion) in Toronto, Montreal, and throughout Canada.\"}),/*#__PURE__*/e(\"p\",{children:\"Chronic foot and ankle pain can make your life harder, and Tibio-Talo-Calcaneal (TTC) fusion might help you feel better. TTC fusion benefits people who have these symptoms:\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"400\",src:\"https://framerusercontent.com/images/cCw9HLKynaEzmJa1axshype2Sk.webp\",srcSet:\"https://framerusercontent.com/images/cCw9HLKynaEzmJa1axshype2Sk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/cCw9HLKynaEzmJa1axshype2Sk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/cCw9HLKynaEzmJa1axshype2Sk.webp 1920w\",style:{aspectRatio:\"1920 / 800\"},width:\"960\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Joint pain in the ankle and hindfoot that doesn't get better with regular treatments\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Unstable joints that make it hard to walk, stand, or do everyday tasks\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Severe arthritis in the tibial, talus, and calcaneus bones\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Foot and ankle issues that change their shape and make it tough to move around\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Injuries that keep coming back or surgeries that didn't work\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Long-term problems like arthritis from injuries, rheumatoid arthritis, or congenital foot issues\"})})]}),/*#__PURE__*/e(\"p\",{children:\"We will schedule your TTC fusion surgery immediately after confirming your medical history of the earlier symptoms.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Key Benefits Of Private TTC Fusion At Pathway Surgery\"})}),/*#__PURE__*/e(\"p\",{children:\"When you pick Pathway Surgery for your TTC fusion, you get top-notch surgical care across Canada. Our private surgery approach gives you many perks:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Quick surgery times with short waits compared to public healthcare\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Treatment plans made just for your body and health needs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Cutting-edge surgery methods done by foot and ankle surgery experts\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Full pre-surgery talks and after-surgery care\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Faster healing through advanced surgery that's less invasive\"})})]}),/*#__PURE__*/e(\"p\",{children:\"We offer flexible hours for patients in Toronto and Montreal. Whether you require a day or night surgery, we\u2019ll be happy to help you.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Our Private TTC Fusion Surgery Process\"})}),/*#__PURE__*/e(\"p\",{children:\"Pathway Surgery has a well-planned surgical process that leads to positive results and happy patients:\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Initial Consultation\"}),\": Full medical check-up and imaging tests to evaluate your condition and decide if surgery is right for you.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Personalized Treatment Planning\"}),\": Creating a detailed surgery plan taking into account your health history, daily life, and recovery aims.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Advanced Surgical Intervention\"}),\": Exact TTC fusion procedure using the latest methods to steady and rebuild the foot and ankle joint.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Specialized Recovery Support\"}),\": Focused rehab plans and ongoing health checks to help healing and bring back movement.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Long-Term Follow-Up\"}),\": Continued care and help to make sure the surgery stays successful and improves your life quality.\"]})})]})]});export const richText9=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is the First MTP Joint?\"}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"first metatarsophalangeal (MTP) joint\"}),\"\\xa0is located at the base of your big toe. It plays a vital role in walking, running, and balance by allowing your big toe to bend as you push off the ground.\"]}),/*#__PURE__*/r(\"p\",{children:[\"When this joint becomes severely damaged from\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"arthritis\"}),\", injury, or deformities like\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"hallux rigidus\"}),\"\\xa0(stiff big toe), it can cause significant pain and limit mobility.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Why is the First MTP Joint Important?\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Enables\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"toe-off motion\"}),\"\\xa0during walking\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Supports\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"weight distribution\"}),\"\\xa0across the foot\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Plays a key role in\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"balance and propulsion\"})]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Damage to this joint can lead to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"chronic pain\"}),\", limp, and reduced mobility\"]})})]}),/*#__PURE__*/e(\"h2\",{children:\"What is First MTP Joint Fusion?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Fusion surgery\"}),\"\\xa0(also called arthrodesis) involves removing the damaged cartilage from the joint and permanently joining the bones so they grow together as one solid unit. This relieves pain and stabilizes the toe.\"]}),/*#__PURE__*/e(\"h3\",{children:\"How is the Procedure Done?\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Minimally invasive incision\"}),\"\\xa0is made on the top of the toe\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Damaged cartilage is removed from the joint surfaces\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Bones are aligned for optimal toe position (usually slightly upward)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Bones are fixed in place using\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"advanced low-profile plates and screws\"})]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Bone healing occurs over time, creating a permanent fusion\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"Advanced Technologies Used\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Low-profile, titanium plates and screws\"}),\"\\xa0for secure fixation\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Fluoroscopy guidance\"}),\"\\xa0during surgery for precision\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Minimally invasive techniques\"}),\"\\xa0to reduce scarring and speed up recovery\"]})})]}),/*#__PURE__*/e(\"h3\",{children:\"Key Benefits\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Long-term\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"pain relief\"})]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Improved\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"foot alignment\"})]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Restored\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"walking function\"})]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Durable and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"low-complication\"}),\"\\xa0procedure\"]})})]})]});export const richText10=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Why the Ankle Joint Matters\"}),/*#__PURE__*/r(\"p\",{children:[\"Your ankle joint plays a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"crucial role in walking, balance, and mobility\"}),\". It connects the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"shinbone (tibia)\"}),\"\\xa0to the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"foot bones (talus)\"}),\"\\xa0and is stabilized by ligaments that help support your weight and absorb shock with each step.\"]}),/*#__PURE__*/r(\"p\",{children:[\"When this joint becomes\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"damaged by arthritis, injury, or wear and tear\"}),\", it can lead to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"chronic pain, stiffness, and loss of movement\"}),\". That\u2019s where\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"ankle replacement\"}),\"\\xa0comes in.\"]}),/*#__PURE__*/e(\"h2\",{children:\"What is Ankle Replacement?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Ankle Replacement\"}),\"\\xa0(also called\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"total ankle arthroplasty\"}),\") is a surgical procedure where a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"damaged ankle joint is replaced with an artificial implant\"}),\". The goal is to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"relieve pain\"}),\"\\xa0and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"restore normal ankle function\"}),\", so you can return to your daily activities without discomfort.\"]}),/*#__PURE__*/e(\"h2\",{children:\"How the Procedure Works\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Damaged bone and cartilage\"}),\"\\xa0in the ankle joint are carefully removed.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"A\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"metal and plastic prosthetic joint\"}),\"\\xa0is implanted to mimic the natural motion of the ankle.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The new joint allows for\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"smooth movement\"}),\"\\xa0and helps restore flexibility and balance.\"]})})]}),/*#__PURE__*/e(\"h3\",{children:\"Is Ankle Replacement Right for You?\"}),/*#__PURE__*/e(\"p\",{children:\"This surgery is ideal for people who have:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Advanced ankle arthritis\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Chronic pain that limits walking or daily activities\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Not improved with non-surgical treatments (bracing, medications, injections)\"})})]})]});export const richText11=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What Is the First MTP Joint?\"}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"First Metatarsophalangeal (MTP) Joint\"}),\"\\xa0is where your big toe meets your foot. It plays a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"critical role in walking, balance, and push-off strength.\"}),\"\\xa0When this joint becomes stiff, painful, or arthritic\u2014a condition called\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"hallux rigidus\"}),\"\u2014it can limit mobility and affect daily activities.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Why Is This Joint So Important?\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Supports 40-60% of body weight during walking\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Enables the push-off motion\"}),\"\\xa0needed for steps, running, and balance\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Dysfunction can cause\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"pain, limping, and other joint issues\"})]})})]}),/*#__PURE__*/e(\"h2\",{children:\"What Is a Cheilectomy?\"}),/*#__PURE__*/r(\"p\",{children:[\"A\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"cheilectomy\"}),\"\\xa0is a surgical procedure to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"remove bone spurs and clean up arthritic debris\"}),\"\\xa0around the first MTP joint. This relieves pain and improves motion in the big toe.\"]}),/*#__PURE__*/e(\"h2\",{children:\"How Is It Performed?\"}),/*#__PURE__*/r(\"p\",{children:[\"\u2705\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Minimally Invasive Techniques\"})]}),/*#__PURE__*/r(\"p\",{children:[\"Today\u2019s cheilectomies are often done through\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"small incisions\"}),\"\\xa0with\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"advanced surgical tools\"}),\", resulting in:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Less tissue damage\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Faster recovery\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Minimal scarring\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"Advanced Imaging\"}),/*#__PURE__*/r(\"p\",{children:[\"Surgeons use\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"fluoroscopy or intraoperative imaging\"}),\"\\xa0to precisely target bone spurs and ensure joint surfaces are preserved.\"]}),/*#__PURE__*/e(\"p\",{children:\"Step-by-Step:\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A small incision is made over the top of the big toe joint.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Bone spurs and arthritic growths are carefully removed.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The joint is smoothed and tested for improved motion.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The incision is closed with absorbable sutures or skin glue.\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"What to Expect After Surgery\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Same-day discharge\"}),\"\\xa0in most cases\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Protected weight-bearing\"}),\"\\xa0in a surgical shoe for 2\u20133 weeks\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Gradual return to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"normal walking and light exercise\"})]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Physical therapy may be recommended for best results\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"Benefits of First MTP Cheilectomy\"}),/*#__PURE__*/r(\"p\",{children:[\"\u2705\\xa0Pain relief\",/*#__PURE__*/e(\"br\",{}),\"\u2705\\xa0Improved toe motion\",/*#__PURE__*/e(\"br\",{}),\"\u2705\\xa0Faster recovery with modern techniques\",/*#__PURE__*/e(\"br\",{}),\"\u2705\\xa0Can delay or prevent the need for joint fusion or replacement\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"If you suffer from big toe stiffness or pain, a First MTP Cheilectomy may be the solution to restore motion and comfort.\"})})]});export const richText12=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Why Is the Ankle Joint Important?\"}),/*#__PURE__*/r(\"p\",{children:[\"Your ankle joint plays a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"critical role in walking, running, and balance\"}),\". It connects your leg to your foot and allows for smooth movement and shock absorption with every step.\"]}),/*#__PURE__*/r(\"p\",{children:[\"When cartilage in the ankle is damaged\u2014from injury, wear-and-tear, or conditions like osteochondritis dissecans\u2014it can cause\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"pain, swelling, and limited mobility\"}),\", making daily activities harder.\"]}),/*#__PURE__*/e(\"h2\",{children:\"What Is Ankle Cartilage Restoration?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Ankle cartilage restoration\"}),\"\\xa0is a minimally invasive procedure used to repair or regenerate the smooth cartilage surface inside your ankle joint. The goal is to reduce pain, restore motion, and prevent further joint damage\u2014\",/*#__PURE__*/e(\"strong\",{children:\"without needing a joint replacement\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"How Is the Procedure Done?\"}),/*#__PURE__*/r(\"p\",{children:[\"Thanks to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Arthrex\\xae technology\"}),\", surgeons can now restore ankle cartilage using the latest biologic tools and minimally invasive techniques.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Common Steps:\"})}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Arthroscopic Access\"}),\": Tiny incisions are made around the ankle; a small camera is inserted to view the joint.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Lesion Preparation\"}),\": Damaged cartilage is gently removed to create a clean, stable area.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Bone Marrow Stimulation\"}),\": Surgeons use a technique like\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"microfracture\"}),\"\\xa0to trigger natural healing.\"]})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"BioCartilage\\xae Application\"}),\":\"]}),/*#__PURE__*/r(\"p\",{children:[\"Arthrex\u2019s\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"BioCartilage\\xae\"}),\"\\xa0is a dehydrated cartilage matrix that is mixed with your own bone marrow or biologics (like PRP).\"]}),/*#__PURE__*/e(\"p\",{children:\"This mixture is applied directly to the damaged area to provide a scaffold for new cartilage growth.\"})]})]}),/*#__PURE__*/e(\"h3\",{children:\"Why BioCartilage\\xae?\"}),/*#__PURE__*/r(\"p\",{children:[\"Arthrex\u2019s\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"BioCartilage Kit\"}),\":\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Mimics native cartilage structure\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Works with your body\u2019s healing cells\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Enhances cartilage repair after microfracture\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Easily applied through\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive\"}),\"\\xa0arthroscopy\"]})})]}),/*#__PURE__*/r(\"p\",{children:[\"It\u2019s designed to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"bridge the gap\"}),\"\\xa0between basic microfracture and complex cell therapy\u2014making it an ideal choice for many patients.\"]}),/*#__PURE__*/e(\"h3\",{children:\"\\xa0Benefits of Advanced Arthrex Technology\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Smaller incisions =\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"quicker recovery\"}),\"\\xa0and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"less pain\"})]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Precision instruments for\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"targeted treatment\"})]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Use of your own healing cells =\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"natural regeneration\"})]})})]}),/*#__PURE__*/r(\"p\",{children:[\"Outpatient surgery =\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"home the same day\"})]})]});export const richText13=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"About Service:\"})}),/*#__PURE__*/e(\"p\",{children:\"Enjoy foot comfort with Pathway Surgery\u2019s private bunionette correction process. You can visit our clinics in Toronto, Montreal, and all across Canada for a personalized service.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Private Bunion Vs. Bunionette Correction Surgery At Pathway Surgery\"})}),/*#__PURE__*/e(\"img\",{alt:\"Private Bunion Vs. Bunionette Correction Surgery At Pathway Surgery\",className:\"framer-image\",height:\"400\",src:\"https://framerusercontent.com/images/dwRDBa1QWgio6bCkPlySzaOyRAM.webp\",srcSet:\"https://framerusercontent.com/images/dwRDBa1QWgio6bCkPlySzaOyRAM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/dwRDBa1QWgio6bCkPlySzaOyRAM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/dwRDBa1QWgio6bCkPlySzaOyRAM.webp 1920w\",style:{aspectRatio:\"1920 / 800\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:\"Many people confuse a bunion with a bunionette deformity and vice versa. While we offer correction for both foot conditions, you must understand the difference to know which foot ankle surgery you require.\"}),/*#__PURE__*/e(\"p\",{children:\"The main difference between a bunion and bunionette is their location. Bunions occur on the inner side of your foot near your big toe (first metatarsal bone). Meanwhile, a bunionette, also known as a Tailor\u2019s bunion, occurs on the outer side of your small toe (fifth metatarsal head).\"}),/*#__PURE__*/e(\"p\",{children:\"If you\u2019re suffering from the latter condition, Pathway Surgery can offer you advanced bunionette correction services to relieve pain. We perform a precise distal soft tissue repair process to prevent severe deformities of the fifth metatarsal bone.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Private Bunionette Correction Surgery At Pathway: Main Features\"})}),/*#__PURE__*/e(\"p\",{children:\"Let\u2019s look at the top features of getting your private bunionette correction surgery at Pathway Surgery:\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Precise Surgical Management Of Symptomatic Bunionette Deformity\"})}),/*#__PURE__*/e(\"p\",{children:\"We offer multiple surgical procedure options for bunionette surgery. If you have a small bunion, we conduct a minimally invasive excision of the bony prominence.\"}),/*#__PURE__*/e(\"p\",{children:\"When the Tailor\u2019s bunion is a bit large, we combine excision with an osteotomy, such as a distal oblique osteotomy. Our orthopaedic surgeon will remove the prominence and fix the alignment of your fifth metatarsal joint for precise results.\"}),/*#__PURE__*/e(\"p\",{children:\"Sometimes, a longitudinal diaphyseal osteotomy with distal soft tissue repair may also be necessary for bunionette deformity correction.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Discharge On Same Day Of Bunionette Deformity Correction\"})}),/*#__PURE__*/e(\"p\",{children:\"Pathway Surgery mainly offers outpatient private bunionette correction surgery. This means you don\u2019t have to worry about staying at our clinic overnight. We will check your vitals after the surgery and discharge you within a few hours.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Comprehensive Follow-Up Care After Fifth Metatarsal Osteotomy\"})}),/*#__PURE__*/e(\"p\",{children:\"Every bunionette surgery at our clinic is paired with a comprehensive follow-up care plan. Our nurses will guide you on how to change your bandages and check your incision site for healing progress.\"}),/*#__PURE__*/e(\"p\",{children:\"We will also connect you with a physical therapist who will help you perform motion exercises to improve your fifth metatarsal function. With our private bunionette correction surgery, you can enjoy normal adult foot mobility promptly and relief from painful bunionette.\"})]});export const richText14=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is a Bunion?\"}),/*#__PURE__*/r(\"p\",{children:[\"A\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"bunion\"}),\"\\xa0is a bony bump that forms at the base of the big toe. Over time, the joint shifts out of place, making the big toe lean inward. This can cause pain, swelling, and difficulty walking.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Why is the Big Toe Joint Important?\"}),/*#__PURE__*/r(\"p\",{children:[\"Your\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"big toe joint\"}),\"\\xa0is key to balance, stability, and walking. Every step you take pushes through this joint. When it's misaligned, it affects how your entire foot moves and can lead to discomfort in other joints like the knees or hips.\"]}),/*#__PURE__*/e(\"h2\",{children:\"What is Minimally Invasive Bunion Surgery?\"}),/*#__PURE__*/r(\"p\",{children:[\"Minimally invasive bunion correction is a cutting-edge approach that\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"realigns the bone through tiny incisions\"}),\", reducing pain and speeding up recovery. One of the most trusted systems used in this procedure is the:\"]}),/*#__PURE__*/e(\"h2\",{children:\"Stryker Minimally Invasive Bunion System\"}),/*#__PURE__*/r(\"p\",{children:[\"We proudly use the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Stryker system\"}),\", a leader in advanced surgical technology, designed to:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Perform precise bone cuts with minimal soft tissue disruption\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Use\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"fluoroscopy-guided imaging\"}),\"\\xa0for accurate alignment\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Insert\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"low-profile, internal screws\"}),\"\\xa0for stable fixation\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Require\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"only 2-4 mm incisions\"}),\"\\xa0\u2014 often no stitches needed\"]})})]}),/*#__PURE__*/r(\"p\",{children:[\"The Stryker system has been\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"clinically designed for optimal correction\"}),\"\\xa0with reduced recovery time and outstanding cosmetic results.\"]}),/*#__PURE__*/e(\"h3\",{children:\"How the Procedure Works:\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Tiny incisions\"}),\"\\xa0(2-4 mm) are made around the bunion\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Using the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Stryker burr system\"}),\", the metatarsal bone is reshaped and repositioned\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Internal screws\"}),\"\\xa0are placed using real-time X-ray guidance\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Incisions are closed with skin adhesive \u2014 no large scars or stitches\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"Benefits of Minimally Invasive Approach\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Less pain and swelling\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Minimal scarring\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Walk the same day or within days\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Quicker return to shoes and daily life\"})})})]})]});export const richText15=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What Is the Ankle Joint?\"}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"ankle joint\"}),\"\\xa0connects the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"tibia\"}),\"\\xa0(shinbone),\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"fibula\"}),\", and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"talus\"}),\"\\xa0bone in your foot.\",/*#__PURE__*/e(\"br\",{}),\"It plays a crucial role in:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Walking and standing\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Balance and stability\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Shock absorption and mobility\"})})})]}),/*#__PURE__*/r(\"p\",{children:[\"When the cartilage in this joint wears down (often from\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"arthritis\"}),\",\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"trauma\"}),\", or\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"injury\"}),\"), bones can rub together, causing\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"pain\"}),\",\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"swelling\"}),\", and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"stiffness\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"What Is Ankle Fusion?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Ankle fusion\"}),\"\\xa0(also called\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"arthrodesis\"}),\") is a surgical procedure that\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"permanently joins\"}),\"\\xa0the bones of the ankle together, eliminating motion in the joint to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"remove pain\"}),\".\"]}),/*#__PURE__*/e(\"p\",{children:\"This is typically done when:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Non-surgical treatments (bracing, injections, therapy) no longer help\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Pain is severe and limits daily activity\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The joint is unstable or severely deformed\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"How the Procedure Is Done:\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The surgeon removes\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"damaged cartilage\"}),\"\\xa0from the ankle joint\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"tibia and talus bones\"}),\"\\xa0are aligned and held together\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Screws, plates, or rods\"}),\"\\xa0are used to hold the bones in place\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Over time, the bones\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"fuse (grow together)\"}),\"\\xa0into one solid structure\"]})})]}),/*#__PURE__*/e(\"h3\",{children:\"Minimally Invasive Option\"}),/*#__PURE__*/r(\"p\",{children:[\"In many cases, we can perform\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive ankle fusion\"}),\"\\xa0using small incisions and a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"camera-guided system (arthroscopy)\"}),\"\\xa0to reduce:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Tissue damage\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Infection risk\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Recovery time\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Scarring\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"Benefits of Ankle Fusion\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Eliminates pain\"}),\"\\xa0from worn-out cartilage\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Improves\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"stability and alignment\"})]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Helps patients\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"return to walking\"}),\"\\xa0comfortably\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Durable long-term solution for end-stage arthritis\"})})]})]});export const richText16=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What Is the Ankle Joint?\"}),/*#__PURE__*/r(\"p\",{children:[\"Your\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"ankle joint\"}),\"\\xa0connects the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"tibia\"}),\",\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"fibula\"}),\", and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"talus\"}),\"\\xa0bones. It allows smooth\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"up-and-down\"}),\"\\xa0and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"side-to-side\"}),\"\\xa0motion, making it essential for\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"walking, running, jumping, and balance\"}),\".\"]}),/*#__PURE__*/e(\"p\",{children:\"Inside the joint are:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Cartilage\"}),\"\\xa0(cushions the bones)\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Ligaments\"}),\"\\xa0(stabilize the joint)\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Tendons\"}),\"\\xa0and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"soft tissue\"}),\"\\xa0(enable movement)\"]})})]}),/*#__PURE__*/e(\"p\",{children:\"When injured or damaged, the ankle can become painful, swollen, and unstable \u2014 limiting everyday activity.\"}),/*#__PURE__*/e(\"h2\",{children:\"What Is Ankle Arthroscopy?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Ankle arthroscopy\"}),\"\\xa0is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive surgery\"}),\"\\xa0that uses a tiny camera and tools to look inside and treat problems in the ankle joint.\"]}),/*#__PURE__*/e(\"p\",{children:\"It\u2019s commonly used to treat:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ankle sprains that haven\u2019t healed properly\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Loose cartilage or bone fragments\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Scar tissue buildup\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ligament damage\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Early arthritis\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Synovitis (inflammation of the joint lining)\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"How the Procedure Works:\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Small incisions\"}),\"\\xa0(usually 2 or 3) are made around the ankle\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"A\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"tiny camera (arthroscope)\"}),\"\\xa0is inserted to view the joint in high definition\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Miniature instruments\"}),\"\\xa0are used to remove damaged tissue or repair ligaments/cartilage\"]})})]}),/*#__PURE__*/e(\"p\",{children:\"The incisions are closed with stitches or small adhesive strips\"})]});export const richText17=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is Accessory Navicular Resection?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Accessory navicular resection\"}),\"\\xa0is a surgical procedure to remove the extra bone or cartilage that causes pain or limits function. It\u2019s often recommended when:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Non-surgical treatments (like orthotics, physical therapy, or rest) haven\u2019t helped\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Pain interferes with daily life or activity\"})})]}),/*#__PURE__*/e(\"h2\",{children:\"How the Procedure is Performed\"}),/*#__PURE__*/e(\"p\",{children:\"Modern surgical techniques make this procedure safe, effective, and less invasive than ever before. Here's how it's typically done:\"}),/*#__PURE__*/e(\"h3\",{children:\"Minimally Invasive Approach\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A incision is made on the inside of the foot.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The accessory navicular is carefully removed.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"posterior tibial tendon\"}),\"\\xa0may be cleaned or reattached to improve stability and function.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Advanced imaging and precision tools help reduce soft tissue damage.\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"\\xa0Advanced Technology\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Intraoperative imaging\"}),\"\\xa0helps guide the surgeon in real-time.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Dissolvable or low-profile sutures\"}),\"\\xa0may be used to secure the tendon without large hardware.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Modern anesthetics\"}),\"\\xa0and nerve blocks minimize pain after surgery.\"]})})]})]});export const richText18=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What Is the Accessory Trigonum?\"}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"accessory trigonum\"}),\"\\xa0is an extra bone (called an\\xa0\",/*#__PURE__*/e(\"em\",{children:\"accessory ossicle\"}),\") located behind the ankle, near the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"talus bone\"}),\". Not everyone has this bone, but in some people \u2014 especially athletes and ballet dancers \u2014 it can become painful due to repetitive downward ankle motion (plantarflexion).\"]}),/*#__PURE__*/e(\"h2\",{children:\"Why Is It Important?\"}),/*#__PURE__*/r(\"p\",{children:[\"This area involves key ligaments and tendons that help control ankle motion.\",/*#__PURE__*/e(\"br\",{}),\"When the accessory trigonum gets pinched or irritated, it can lead to:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Posterior ankle pain\"}),\"\\xa0(especially when pointing toes)\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Swelling\"}),\"\\xa0and stiffness\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Limited ankle range of motion\",/*#__PURE__*/e(\"br\",{}),\"This condition is often called\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Posterior Ankle Impingement Syndrome\"}),\".\"]})})]}),/*#__PURE__*/e(\"h2\",{children:\"How Is the Procedure Done?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Accessory Trigonum Resection\"}),\"\\xa0is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive surgery\"}),\"\\xa0used to remove the small bone fragment and relieve pressure in the back of the ankle.\"]}),/*#__PURE__*/r(\"h3\",{children:[\"\u2705\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Step-by-step Overview:\"})]}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Small incisions\"}),\"\\xa0are made around the ankle.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"A\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"tiny camera (arthroscope)\"}),\"\\xa0and instruments are inserted to visualize the area.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"accessory bone is gently removed\"}),\".\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Inflamed tissue may also be cleaned out.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"The incisions are closed with minimal scarring.\"})]});export const richText19=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is Trigger Finger?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Trigger finger\"}),\"\\xa0is a condition where a finger or thumb gets\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"stuck in a bent position\"}),\"\\xa0and may\\xa0\",/*#__PURE__*/e(\"strong\",{children:'snap or \"pop\" straight'}),\"with effort. It happens when the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"tendon that bends the finger\"}),\"\\xa0becomes irritated and can\u2019t glide smoothly through its surrounding sheath (a tunnel-like structure).\"]}),/*#__PURE__*/r(\"p\",{children:[\"Over time, this irritation causes\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"thickening or nodules\"}),\"\\xa0that make it hard for the tendon to move, leading to pain, locking, or stiffness.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Why is This Important?\"}),/*#__PURE__*/e(\"p\",{children:\"Your fingers rely on smooth tendon movement to:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Grip and hold objects\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Perform fine motor tasks\"}),\"\\xa0(like writing or buttoning)\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Flex and extend freely\"}),\"\\xa0without pain\"]})})]}),/*#__PURE__*/e(\"p\",{children:\"When tendons can\u2019t glide properly, even small daily activities become frustrating or painful.\"}),/*#__PURE__*/e(\"h2\",{children:\"What is Trigger Finger Release?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Trigger Finger Release\"}),\"\\xa0is a quick,\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive procedure\"}),\"\\xa0that helps\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"free the trapped tendon\"}),\"\\xa0so your finger can move easily again.\"]}),/*#__PURE__*/e(\"p\",{children:\"It\u2019s usually done when:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Symptoms don\u2019t improve with splinting or injections\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The finger locks frequently or painfully\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Function is limited in work or daily life\"})})]}),/*#__PURE__*/e(\"h2\",{children:\"How is the Procedure Done?\"}),/*#__PURE__*/r(\"p\",{children:[\"There are\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"two common techniques\"}),\"\u2014both safe and effective:\"]}),/*#__PURE__*/e(\"ol\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"h3\",children:/*#__PURE__*/e(\"h3\",{children:\"Open Release Surgery:\"})})}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"A\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"small incision\"}),\"\\xa0(under 1 cm) is made in the palm.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The surgeon gently\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"cuts the tight part of the tendon sheath\"}),\".\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The tendon is now free to glide without catching.\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"2.\\xa0Percutaneous (Needle) Release:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"A\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"tiny needle or blade\"}),\"\\xa0is used under\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"ultrasound guidance\"}),\".\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"No incision or stitches are needed.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The procedure takes only a few minutes.\"})})]})]});export const richText20=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Keep hand elevated above heart level\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Monitor for excessive swelling or bleeding\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Manage pain with prescribed medications\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Limited finger movement as allowed\"})})]})});export const richText21=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Begin gentle movements as directed by our physical therapist\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Wound care and timely dressing changes to avoid infections\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Protect the surgical site during daily activities\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Start basic finger exercises as instructed by our therapist\"})})]})});export const richText22=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Progressive hand therapy exercises begin\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Improved grip and finger dexterity\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Scar management techniques introduced\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Gradual return to light hand and wrist activities\"})})]})});export const richText23=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Advanced strengthening exercises increase\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fine motor skill rehabilitation continues\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Return to most normal hand functions\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Final adjustments and functional improvements\"})})]})});export const richText24=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is the TFCC?\"}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Triangular Fibrocartilage Complex (TFCC)\"}),\"\\xa0is a small but vital structure in your wrist, located near the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"pinky finger side\"}),\". It acts like a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"cushion and stabilizer\"}),\"\\xa0between the end of your\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"ulna bone\"}),\"\\xa0and the wrist bones.\"]}),/*#__PURE__*/e(\"p\",{children:\"The TFCC helps you:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Rotate your forearm\"}),\"\\xa0(like turning a key)\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Stabilize your wrist\"}),\"\\xa0during lifting and gripping\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Absorb impact\"}),\"\\xa0and protect your wrist joint\"]})})]}),/*#__PURE__*/r(\"p\",{children:[\"When the TFCC is\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"torn\"}),\"\u2014from trauma, sports, or overuse\u2014it can cause pain, clicking, weakness, and instability.\"]}),/*#__PURE__*/e(\"h2\",{children:\"What is TFCC Repair?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"TFCC Repair\"}),\"\\xa0is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"surgical procedure\"}),\"\\xa0used to fix a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"complete or unstable tear\"}),\"\\xa0of the TFCC. Instead of trimming damaged tissue (as in a debridement), the surgeon\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"reattaches or stitches the torn ligament\"}),\"\\xa0to restore full function and stability.\"]}),/*#__PURE__*/r(\"p\",{children:[\"This is often recommended when the tear is on the outer edge of the TFCC, which has better blood supply and can\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"heal with proper repair\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"How is the Procedure Done?\"}),/*#__PURE__*/r(\"p\",{children:[\"Most TFCC repairs are done using\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive wrist arthroscopy\"}),\":\"]}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Tiny incisions\"}),\"\\xa0are made in the wrist.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"A\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"small camera (arthroscope)\"}),\"\\xa0and precision instruments are inserted.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The surgeon\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"locates the tear\"}),\"\\xa0and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"anchors it with sutures or tiny devices\"}),\"\\xa0to encourage healing.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The wrist is closed and wrapped in a soft bandage or splint.\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"Why is the TFCC So Important?\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Allows you to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"rotate and grip\"}),\"\\xa0without pain\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Keeps your wrist\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"stable\"}),\"\\xa0during motion\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Helps prevent long-term joint damage\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Essential for\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"sports, work, and daily tasks\"})]})})]}),/*#__PURE__*/e(\"p\",{children:\"Injuries to the TFCC can limit hand function and reduce quality of life.\"}),/*#__PURE__*/e(\"h3\",{children:\"Advanced Technology & Modern Techniques\"}),/*#__PURE__*/r(\"p\",{children:[\"\u2705\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Arthroscopic (keyhole) repair\"}),\": Less trauma, smaller scars\",/*#__PURE__*/e(\"br\",{}),\"\u2705\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"High-def imaging\"}),\": Precise diagnosis and treatment\",/*#__PURE__*/e(\"br\",{}),\"\u2705\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Biocompatible suture anchors\"}),\": Strong and safe healing\",/*#__PURE__*/e(\"br\",{}),\"\u2705\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Faster rehab\"}),\": Shorter hospital stay, earlier return to activity\"]})]});export const richText25=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is Wrist Arthroscopy?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Wrist arthroscopy\"}),\"\\xa0is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive surgical procedure\"}),\"\\xa0that allows doctors to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"look inside and treat the wrist joint\"}),\"\\xa0using a tiny camera and specialized instruments.\"]}),/*#__PURE__*/e(\"p\",{children:\"It\u2019s commonly used to:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\" Diagnose wrist pain\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Treat ligament injuries\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Remove inflamed tissue\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Repair cartilage damage\"})})})]}),/*#__PURE__*/r(\"p\",{children:[\"This advanced technique allows for\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"smaller incisions\"}),\",\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"faster healing\"}),\", and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"less pain\"}),\"\\xa0compared to traditional open surgery.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Why is the Wrist Joint Important?\"}),/*#__PURE__*/r(\"p\",{children:[\"The wrist is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"complex joint made up of many small bones, ligaments, and tendons\"}),\". It allows you to:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Bend, extend, and rotate your hand\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Perform\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"gripping and fine motor tasks\"})]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Absorb forces during lifting and pushing\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Any injury or issue in the wrist can affect daily activities like writing, typing, dressing, and lifting objects.\"}),/*#__PURE__*/e(\"h3\",{children:\"How is the Procedure Done?\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Tiny incisions\"}),\"\\xa0(about 5mm) are made in the skin around the wrist.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"A\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"small camera (arthroscope)\"}),\"\\xa0is inserted to project images of the inside of the joint on a screen.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Miniature tools\"}),\"\\xa0are used to diagnose and fix problems\u2014such as torn ligaments, inflamed tissue, or loose cartilage.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The incisions are closed with\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"small stitches or adhesive strips\"}),\".\"]})})]}),/*#__PURE__*/r(\"p\",{children:[\"The entire procedure is typically done as\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"day surgery\"}),\", with local or general anesthesia.\"]}),/*#__PURE__*/e(\"h3\",{children:\"Common Conditions Treated with Wrist Arthroscopy\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"TFCC tears\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Wrist ligament injuries\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Wrist arthritis\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Ganglion cyst removal\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Cartilage damage\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Chronic wrist pain without a clear diagnosis\"})})})]})]});export const richText26=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is the TFCC?\"}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"TFCC (Triangular Fibrocartilage Complex)\"}),\"\\xa0is a small but crucial structure in your wrist, located on the pinky finger side. It acts like a shock absorber between the end of your\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"ulna bone\"}),\"\\xa0and the small bones in your wrist. It also helps\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"stabilize your wrist during gripping, rotation, and lifting\"}),\".\"]}),/*#__PURE__*/r(\"p\",{children:[\"When the TFCC is torn or damaged\u2014whether from an injury or wear and tear\u2014it can cause\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"pain, clicking, weakness, and limited movement\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"What is TFCC Debridement?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"TFCC Debridement\"}),\"\\xa0is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive\"}),\"\\xa0procedure where a surgeon removes the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"damaged or frayed tissue\"}),\"\\xa0from the TFCC to reduce pain and improve function.\"]}),/*#__PURE__*/r(\"p\",{children:[\"It is typically done when the TFCC is\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"partially torn\"}),\"\\xa0or degenerative, and conservative treatments (like splints, rest, or injections) haven\u2019t worked.\"]}),/*#__PURE__*/e(\"h2\",{children:\"How is the Procedure Performed?\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The surgeon uses a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"small camera (arthroscope)\"}),\"\\xa0and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"miniature tools\"}),\"\\xa0inserted through tiny incisions (keyhole surgery).\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The wrist joint is carefully examined from the inside.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Any\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"loose, torn, or inflamed tissue\"}),\"\\xa0in the TFCC is\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"trimmed or removed\"}),\".\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The rest of the healthy TFCC is left untouched to continue supporting wrist function.\"})})]}),/*#__PURE__*/r(\"p\",{children:[\"This outpatient procedure often takes\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"less than an hour\"}),\"\\xa0and avoids large incisions or long recovery times.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Why is the TFCC Important?\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Supports wrist stability\"}),\"\\xa0during twisting motions (like turning a doorknob).\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Absorbs shock\"}),\"\\xa0when lifting or pushing.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Plays a key role in\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"fine motor movements and grip strength\"}),\".\"]})})]}),/*#__PURE__*/e(\"p\",{children:\"Damage to the TFCC can seriously affect daily tasks, athletic performance, and manual work.\"}),/*#__PURE__*/e(\"h3\",{children:\"Advanced & Minimally Invasive Technologies\"}),/*#__PURE__*/r(\"p\",{children:[\"\u2705\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Arthroscopy\"}),\": Real-time camera-guided precision\",/*#__PURE__*/e(\"br\",{}),\"\u2705\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Tiny incisions\"}),\": Less pain, minimal scarring\",/*#__PURE__*/e(\"br\",{}),\"\u2705\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Faster recovery\"}),\": Most patients return to daily activities within a few weeks\",/*#__PURE__*/e(\"br\",{}),\"\u2705\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"High-resolution imaging\"}),\": Accurate diagnosis and targeted treatment\"]}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Recovery & What to Expect\"})}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Wrist brace\"}),\"\\xa0for a few days to weeks\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Physical therapy\"}),\"\\xa0to regain strength and flexibility\"]})})]})]});export const richText27=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is Carpal Tunnel Syndrome?\"}),/*#__PURE__*/r(\"p\",{children:[\"Carpal Tunnel Syndrome happens when the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"median nerve\"}),\", which runs from your forearm into your hand, becomes\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"compressed\"}),\"\\xa0at the wrist. This pressure leads to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"numbness, tingling, weakness\"}),\", or pain in the hand and fingers\u2014especially the thumb, index, and middle fingers.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Why is the Carpal Tunnel Important?\"}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"carpal tunnel\"}),\"\\xa0is a narrow passage in your wrist made up of bones and a ligament. It protects the median nerve and tendons that help move your fingers. When this space becomes too tight (often from swelling), it puts pressure on the nerve and can make everyday tasks like gripping, typing, or lifting difficult and painful.\"]}),/*#__PURE__*/e(\"h2\",{children:\"How is Carpal Tunnel Surgery Done?\"}),/*#__PURE__*/r(\"p\",{children:[\"Carpal tunnel surgery, also known as\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"carpal tunnel release\"}),\", relieves pressure on the median nerve by cutting the ligament that forms the roof of the tunnel.\"]}),/*#__PURE__*/e(\"p\",{children:\"There are two main types of surgery:\"}),/*#__PURE__*/e(\"h3\",{children:\"1. Traditional Open Surgery\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A small incision is made at the base of the palm.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The ligament is carefully cut to create more space for the nerve.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The incision is closed with stitches, and recovery begins.\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"2. Minimally Invasive Endoscopic Surgery\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"One or two tiny incisions are made.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"A\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"tiny camera (endoscope)\"}),\"\\xa0is inserted to guide the surgeon.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The ligament is released using\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"small surgical tools\"}),\", without needing a large incision.\"]})})]}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Why Choose Minimally Invasive Techniques?\"})}),/*#__PURE__*/r(\"p\",{children:[\"\u2705\\xa0Smaller incisions\",/*#__PURE__*/e(\"br\",{}),\"\u2705\\xa0Less pain after surgery\",/*#__PURE__*/e(\"br\",{}),\"\u2705\\xa0Shorter recovery time\",/*#__PURE__*/e(\"br\",{}),\"\u2705\\xa0Minimal scarring\",/*#__PURE__*/e(\"br\",{}),\"\u2705\\xa0Quicker return to daily activities\"]}),/*#__PURE__*/r(\"p\",{children:[\"Advanced technologies like\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"high-definition endoscopes\"}),\",\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"nerve-monitoring systems\"}),\", and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"ultrasound-guided tools\"}),\"\\xa0make the procedure safer and more precise than ever before.\"]}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"When Should I Consider Surgery?\"})}),/*#__PURE__*/e(\"p\",{children:\"If you\u2019ve tried wrist splints, rest, or medications and still experience:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Persistent numbness or tingling\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Weak grip strength\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Worsening pain that interferes with work or sleep\"})})]})]});export const richText28=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is the Shoulder Joint and Why Is It Important?\"}),/*#__PURE__*/r(\"p\",{children:[\"Your shoulder is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"ball-and-socket joint\"}),\"\u2014it allows you to move your arm in many directions. It\u2019s made up of:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"humerus\"}),\"\\xa0(upper arm bone)\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"glenoid\"}),\"\\xa0(a shallow socket in your shoulder blade)\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Muscles, ligaments, and a rim of cartilage called the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"labrum\"})]})})]}),/*#__PURE__*/r(\"p\",{children:[\"These parts work together to keep your shoulder\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"stable\"}),\", especially when reaching overhead or throwing.\"]}),/*#__PURE__*/e(\"p\",{children:\"If the shoulder dislocates (comes out of place) repeatedly\u2014often due to sports injuries or trauma\u2014it can damage the bone and soft tissues, making the joint unstable.\"}),/*#__PURE__*/e(\"h2\",{children:\"Why Is the Latarjet Procedure Done?\"}),/*#__PURE__*/r(\"p\",{children:[\"The Latarjet procedure is done when someone has\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"chronic shoulder instability\"}),\", especially after\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"multiple dislocations\"}),\"\\xa0or\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"bone loss\"}),\"\\xa0in the socket.\"]}),/*#__PURE__*/e(\"p\",{children:\"It helps:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Prevent future dislocations\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Restore stability\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Allow you to return to an active lifestyle\"})})]}),/*#__PURE__*/e(\"p\",{children:\"It\u2019s commonly recommended when previous treatments haven\u2019t worked.\"}),/*#__PURE__*/e(\"h2\",{children:\"How Is the Procedure Done?\"}),/*#__PURE__*/r(\"p\",{children:[\"The Latarjet procedure is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"surgical technique\"}),\"\\xa0that strengthens your shoulder by using a piece of bone from your\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"shoulder blade (coracoid)\"}),\".\"]}),/*#__PURE__*/e(\"p\",{children:\"Here\u2019s a simple breakdown:\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Small Incision\"}),\"\\xa0\u2013 A small cut is made at the front of the shoulder.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Bone Transfer\"}),\"\\xa0\u2013 A small piece of bone (with a tendon still attached) is taken from your shoulder blade.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Bone is Moved\"}),\"\\xa0\u2013 This bone is moved and attached to the front of the socket (glenoid), where bone has been lost.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Secured in Place\"}),\"\\xa0\u2013 The bone is secured with screws so it can heal and become part of the socket.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Extra Support\"}),\"\\xa0\u2013 The attached tendon adds more stability, acting like a seatbelt.\"]})})]})]});export const richText29=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Pain management with medications and ice therapy\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Restricted movement of your shoulder & elbow\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Timely wound care and monitoring\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Focus on rest, hydration, and light walking to promote blood circulation\"})})]})});export const richText30=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Beginning of passive range of motion exercises under our physical therapist\u2019s supervision\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reducing your pain medications gradually to avoid dependence\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Continued use of sling or brace with progressive periods of controlled movement\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Introduction of gentle isometric exercises to maintain muscle tone without stress\"})})]})});export const richText31=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Progressive transition to active physical therapy exercises\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Introduction of light resistance training to rebuild your shoulder & elbow strength\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Decreased reliance on supportive devices with enhanced shoulder function\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Focus on restoring normal movement patterns and preventing compensatory habits\"})})]})});export const richText32=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Return to most normal daily activities with little to no restrictions\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Sport-specific or occupation-specific rehabilitation exercises for full function\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Continued strength training to address any remaining muscle imbalances\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Final follow-up appointment to ensure complete recovery has occured\"})})]})});export const richText33=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"Why is the Shoulder Joint Important?\"}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"shoulder\"}),\"\\xa0is one of the most\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"mobile joints in the body\"}),\", allowing you to lift, reach, rotate, and carry. It\u2019s made up of the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"humerus (upper arm bone), scapula (shoulder blade), and clavicle (collarbone)\"}),\"\u2014held together by muscles, tendons, and ligaments.\"]}),/*#__PURE__*/r(\"p\",{children:[\"When the shoulder joint is damaged by\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"arthritis, injury, or degeneration\"}),\", it can lead to:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Pain\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Loss of motion\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Weakness\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Difficulty performing everyday tasks\"}),\"\\xa0like dressing, lifting, or sleeping comfortably\"]})})]}),/*#__PURE__*/e(\"h2\",{children:\"What is Shoulder Replacement Surgery?\"}),/*#__PURE__*/r(\"p\",{children:[\"Shoulder replacement surgery involves\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"removing the damaged parts of the joint\"}),\"\\xa0and replacing them with\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"artificial components (prosthetics)\"}),\"\\xa0to restore smooth, pain-free movement.\"]}),/*#__PURE__*/e(\"p\",{children:\"There are two main types:\"}),/*#__PURE__*/e(\"h3\",{children:\"1. Total Shoulder Replacement (Anatomic)\"}),/*#__PURE__*/r(\"p\",{children:[\"This is used when the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"rotator cuff muscles are intact\"}),\"\\xa0but the joint is worn down by arthritis or injury.\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The damaged\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"ball (humeral head)\"}),\"\\xa0is replaced with a smooth metal ball.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"socket (glenoid)\"}),\"\\xa0is replaced with a durable plastic surface.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The artificial components mimic the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"natural anatomy\"}),\"\\xa0of the shoulder.\"]})})]}),/*#__PURE__*/e(\"p\",{children:\"\u2705\\xa0Ideal for osteoarthritis, fractures, or degenerative joint disease with a healthy rotator cuff.\"}),/*#__PURE__*/e(\"h3\",{children:\"2. Reverse Shoulder Replacement\"}),/*#__PURE__*/r(\"p\",{children:[\"This is done when the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"rotator cuff is torn or not functioning properly\"}),\".\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The normal ball-and-socket structure is\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"reversed\"}),\": the ball is placed on the shoulder blade, and the socket is placed on the upper arm.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"This allows the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"deltoid muscle\"}),\"\\xa0to take over movement normally handled by the rotator cuff.\"]})})]}),/*#__PURE__*/e(\"p\",{children:\"\u2705\\xa0Ideal for large rotator cuff tears, complex fractures, or failed previous surgeries.\"}),/*#__PURE__*/e(\"h2\",{children:\"How is the Procedure Performed?\"}),/*#__PURE__*/r(\"p\",{children:[\"Most modern shoulder replacements are done using\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive surgical techniques\"}),\":\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Smaller incisions\"}),\"\\xa0to reduce muscle damage\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Use of\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"3D imaging and intraoperative navigation\"}),\"\\xa0for precision\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Advanced implant materials\"}),\"\\xa0designed for longevity and mobility\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Typically performed under regional anesthesia with sedation\"})})]})]});export const richText34=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is the Ulnar Nerve and Why is it Important for Function?\"}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"ulnar nerve\"}),'\\xa0is one of the major nerves in your arm. It travels from your neck, down the inside of your elbow (commonly called the \"funny bone\"), and into your hand. It helps control\\xa0',/*#__PURE__*/e(\"strong\",{children:\"movement and feeling in your ring and pinky fingers\"}),\", as well as some small hand muscles.\"]}),/*#__PURE__*/r(\"p\",{children:[\"When the ulnar nerve gets\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"compressed or irritated\"}),\", especially around the elbow (a condition called\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"cubital tunnel syndrome\"}),\"), it can cause:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Numbness or tingling in the fingers\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Weak grip strength\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Pain in the elbow or forearm\"})})]}),/*#__PURE__*/e(\"p\",{children:\"This can make everyday tasks like typing, gripping objects, or sleeping comfortably more difficult.\"}),/*#__PURE__*/e(\"h2\",{children:\"How is the Procedure Done?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Ulnar nerve transposition\"}),\"\\xa0is a surgery to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"relieve pressure on the ulnar nerve\"}),\"\\xa0at the elbow. It\u2019s usually done if symptoms don\u2019t get better with rest, splinting, or therapy.\"]}),/*#__PURE__*/e(\"h3\",{children:\"Here's a simple breakdown of what happens:\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"An incision is made\"}),\"\\xa0near the elbow to access the ulnar nerve.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The nerve is\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"gently moved\"}),\"\\xa0from behind the elbow (where it can get pinched) to a new spot\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"in front of the elbow\"}),\", where it has more room and is less likely to get irritated.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The nerve is secured in its new position with soft tissue or a protective layer.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The incision is closed, and the arm is bandaged.\"})})]}),/*#__PURE__*/r(\"p\",{children:[\"The procedure is typically\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"outpatient\"}),\", meaning you go home the same day. Most people can return to light activities within a few weeks and gradually build back strength and movement with physical therapy.\"]})]});export const richText35=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is the Ulnar Nerve and Why Is It Important for Function?\"}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"ulnar nerve\"}),\"\\xa0is one of the major nerves in your arm. It runs from your neck, down your arm, and passes behind the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"elbow\"}),\"\u2014right through the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"\u201Cfunny bone\u201D\"}),\"\\xa0area.\"]}),/*#__PURE__*/e(\"p\",{children:\"The ulnar nerve controls:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Feeling\"}),\"\\xa0in your ring and pinky fingers\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Muscles\"}),\"\\xa0that help you grip and move your hand\"]})})]}),/*#__PURE__*/r(\"p\",{children:[\"When the ulnar nerve is\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"compressed or pinched\"}),\", usually at the elbow (a condition called\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"cubital tunnel syndrome\"}),\"), it can cause:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Numbness or tingling in your fingers\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Weak grip strength\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Pain in the elbow or forearm\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Muscle loss in severe cases\"})})]}),/*#__PURE__*/e(\"h2\",{children:\"How Is the Procedure Done?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Ulnar nerve decompression surgery\"}),\"\\xa0relieves pressure on the ulnar nerve to improve symptoms.\"]}),/*#__PURE__*/e(\"p\",{children:\"Here\u2019s how the procedure is typically done:\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Small Incision\"}),\"\\xa0\u2013 A small cut is made along the inner part of the elbow.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Freeing the Nerve\"}),\"\\xa0\u2013 The surgeon carefully releases any tight structures that are compressing the nerve.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Sometimes the Nerve is Moved\"}),\"\\xa0\u2013 In some cases, the nerve is gently moved to a safer position (called\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"transposition\"}),\") to prevent future pinching when the elbow bends.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Closure and Recovery\"}),\"\\xa0\u2013 The incision is closed with stitches, and a soft bandage is applied.\"]})})]}),/*#__PURE__*/r(\"p\",{children:[\"The surgery is usually done\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"outpatient\"}),\"\\xa0(you go home the same day) and takes less than an hour.\"]}),/*#__PURE__*/e(\"h3\",{children:\"Why Do People Get This Surgery?\"}),/*#__PURE__*/e(\"p\",{children:\"Ulnar nerve decompression is done when:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Symptoms don\u2019t improve with rest, splints, or physical therapy\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Numbness, pain, or weakness is getting worse\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"There\u2019s a risk of permanent nerve damage\"})})]}),/*#__PURE__*/e(\"p\",{children:\"This procedure can help restore hand function, reduce discomfort, and get you back to doing the things you enjoy\u2014whether that\u2019s typing, playing sports, or just sleeping comfortably.\"})]});export const richText36=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"hat Is the Rotator Cuff and Why Is It Important?\"}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"rotator cuff\"}),\"\\xa0is a group of four muscles and tendons that surround the shoulder joint. These structures work together to keep your upper arm bone (humerus) securely in the shoulder socket while allowing a wide range of arm movements \u2014 from lifting and rotating to throwing and reaching overhead.\"]}),/*#__PURE__*/e(\"p\",{children:\"When the rotator cuff is torn or damaged, it can lead to pain, weakness, and a limited ability to perform everyday tasks like dressing, cooking, or even sleeping comfortably. Surgery is often recommended when the tear is large, painful, or hasn\u2019t improved with physical therapy or injections.\"}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/VTIRgCtWbPApsTjNtLlL/YouTube.js:Youtube\",children:r=>/*#__PURE__*/e(l,{...r,play:\"Off\",shouldMute:!0,thumbnail:\"High Quality\",url:\"https://www.youtube.com/watch?v=H54UN0mw90k\"})})}),/*#__PURE__*/e(\"h2\",{children:\"How Is Rotator Cuff Surgery Performed?\"}),/*#__PURE__*/r(\"p\",{children:[\"Rotator cuff repair is typically done using\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive arthroscopic techniques\"}),\"\\xa0\u2014 small incisions, a camera (arthroscope), and specialized instruments. This leads to less pain, faster recovery, and reduced scarring compared to traditional open surgery.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Advanced Technologies We Use:\"}),/*#__PURE__*/r(\"p\",{children:[\"We are proud to offer some of the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"latest surgical innovations\"}),\"\\xa0to improve healing and long-term shoulder function:\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"\\xa0REGENETEN Bio inductive Implant\"})}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"A\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"collagen-based patch\"}),\"\\xa0placed over the tendon to stimulate your body\u2019s natural healing response.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Designed to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"support new tendon-like tissue growth\"}),\"\\xa0and improve the strength of the repair.\"]})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/r(\"p\",{children:[\"Especially useful in\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"partial tears\"}),\"\\xa0or as reinforcement in full-thickness repairs.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\\xa0REGENETEN Bio inductive Implant\",className:\"framer-image\",height:\"288\",src:\"https://framerusercontent.com/images/vaTrq6Mgmceyqy2ibcFg3gIBNg.jpg\",srcSet:\"https://framerusercontent.com/images/vaTrq6Mgmceyqy2ibcFg3gIBNg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vaTrq6Mgmceyqy2ibcFg3gIBNg.jpg 981w\",style:{aspectRatio:\"981 / 577\"},width:\"490\"})]})]}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Benefits of REGENETEN:\"})}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"h4\",children:[/*#__PURE__*/e(\"h4\",{children:\"Significant Reduction in Re-Tear Rates\"}),/*#__PURE__*/r(\"p\",{children:[\"A 2024 randomized controlled trial demonstrated that augmenting rotator cuff repairs with REGENETEN reduced re-tear rates by 68% compared to standard repairs (8.3% vs. 25.8%) at one year, with no increase in complications.\",/*#__PURE__*/e(i,{href:\"https://www.globenewswire.com/news-release/2024/01/11/2807764/0/en/New-study-confirms-Smith-Nephew-s-REGENETEN-Bioinductive-Implant-reduces-full-thickness-rotator-cuff-re-tear-rates-by-68.html?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"GlobeNewswire+1smith-nephew.com+1\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"h4\",children:[/*#__PURE__*/e(\"h4\",{children:\"Enhanced Tendon Healing and Integration\"}),/*#__PURE__*/r(\"p\",{children:[\"MRI studies indicate that REGENETEN promotes the formation of new tendon-like tissue, increasing tendon thickness from six months post-operation and integrating seamlessly with native tissue.\\xa0\",/*#__PURE__*/e(i,{href:\"https://www.actaorthopaedica.be/assets/3551/ActaOrthopBelg-90-777.pdf?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"actaorthopaedica.be+1PubMed+1\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"h4\",children:[/*#__PURE__*/e(\"h4\",{children:\"Improved Clinical Outcomes\"}),/*#__PURE__*/r(\"p\",{children:[\"Patients receiving REGENETEN augmentation reported significant improvements in shoulder function and pain relief, as measured by the American Shoulder and Elbow Surgeons (ASES) and Constant-Murley Scores, with sustained benefits observed over time.\\xa0\",/*#__PURE__*/e(i,{href:\"https://pmc.ncbi.nlm.nih.gov/articles/PMC7910780/?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"PMC+1PubMed+1\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"h4\",children:[/*#__PURE__*/e(\"h4\",{children:\"Long-Term Durability\"}),/*#__PURE__*/r(\"p\",{children:[\"A systematic review encompassing 17 studies found that REGENETEN use resulted in re-tear rates ranging from 0% to 18% in partial-thickness tears over five years, and up to 35% in full-thickness tears over two years, indicating durable repair outcomes.\\xa0\",/*#__PURE__*/e(i,{href:\"https://pubmed.ncbi.nlm.nih.gov/39869884/?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"PubMed+1actaorthopaedica.be+1\"})})]})]})]})]});export const richText37=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is the Shoulder Joint and Why Is It Important?\"}),/*#__PURE__*/r(\"p\",{children:[\"The shoulder is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"ball-and-socket joint\"}),\"\\xa0that lets you lift, rotate, and move your arm in many directions. It's made of:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"humerus\"}),'\\xa0(upper arm bone, or \"ball\")']})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"glenoid\"}),'\\xa0(part of the shoulder blade that acts as the \"socket\")']})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Muscles, ligaments, and cartilage that help hold everything in place\"})})]}),/*#__PURE__*/r(\"p\",{children:[\"These structures work together to keep your shoulder\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"stable\"}),\"\\xa0and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"functional\"}),\"\\xa0during everyday activities and sports.\"]}),/*#__PURE__*/r(\"p\",{children:[\"When the shoulder\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"dislocates\"}),\", it can damage the bone or surrounding tissues. One type of injury is called a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Hill-Sachs lesion\"}),\", which is a dent or defect on the back of the humeral head (ball). If this dent catches on the edge of the socket, it can lead to repeated dislocations.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Why Is the Remplissage Procedure Done?\"}),/*#__PURE__*/r(\"p\",{children:['The remplissage (French for \"filling\") procedure is done to treat\\xa0',/*#__PURE__*/e(\"strong\",{children:\"shoulder instability\"}),\", especially in people with a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Hill-Sachs lesion\"}),\".\"]}),/*#__PURE__*/r(\"p\",{children:[\"It\u2019s typically done\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"alongside another procedure\"}),\", such as a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"labrum repair\"}),\", and helps:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Prevent dislocations\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Stabilize the joint\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Fill in\"}),\"\\xa0the dented area of the bone to stop it from catching on the socket\"]})})]}),/*#__PURE__*/e(\"h2\",{children:\"How Is the Procedure Done?\"}),/*#__PURE__*/r(\"p\",{children:[\"Remplissage is done\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"arthroscopically\"}),\", meaning with small incisions and a camera.\"]}),/*#__PURE__*/e(\"p\",{children:\"Here\u2019s a simple overview:\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Small Camera and Tools\"}),\"\\xa0\u2013 The surgeon makes tiny incisions and inserts a small camera and tools into the shoulder.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Identify the Defect\"}),\"\\xa0\u2013 They find the Hill-Sachs dent on the back of the ball (humerus).\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Filling the Dent\"}),\"\\xa0\u2013 The surgeon stitches a nearby tendon (called the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"infraspinatus\"}),\") and capsule into the dented area.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Tissue Heals into Place\"}),\"\\xa0\u2013 Over time, this fills the defect and prevents it from engaging with the socket during movement.\"]})})]}),/*#__PURE__*/e(\"p\",{children:\"This extra support helps keep your shoulder in place and reduces the chance of it popping out again.\"})]});export const richText38=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is the Elbow Joint and Why Is It Important?\"}),/*#__PURE__*/r(\"p\",{children:[\"Your elbow is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"hinge joint\"}),\"\\xa0that connects three bones:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"humerus\"}),\"\\xa0(upper arm bone)\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"radius\"}),\"\\xa0and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"ulna\"}),\"\\xa0(forearm bones)\"]})})]}),/*#__PURE__*/r(\"p\",{children:[\"It allows you to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"bend, straighten, and rotate your arm\"}),\", which is essential for daily activities like eating, lifting, writing, and throwing.\"]}),/*#__PURE__*/e(\"p\",{children:\"The elbow joint is supported by:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Ligaments\"}),\"\\xa0that stabilize the joint\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Cartilage\"}),\"\\xa0that cushions the bones\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Tendons and muscles\"}),\"\\xa0that help with movement\"]})})]}),/*#__PURE__*/r(\"p\",{children:[\"Injuries, overuse, or arthritis can lead to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"pain, stiffness, or locking\"}),\", affecting how well your arm moves and feels.\"]}),/*#__PURE__*/e(\"h2\",{children:\"How Is the Procedure Done?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Elbow arthroscopy\"}),\"\\xa0is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive surgery\"}),\"\\xa0used to diagnose and treat problems inside the elbow joint.\"]}),/*#__PURE__*/e(\"p\",{children:\"Here\u2019s how it works:\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Small Incisions\"}),\"\\xa0\u2013 The surgeon makes 2\u20133 tiny cuts around the elbow.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Camera Inserted\"}),\"\\xa0\u2013 A thin camera (called an\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"arthroscope\"}),\") is inserted to view the inside of the joint on a screen.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Special Tools Used\"}),\"\\xa0\u2013 Through the other incisions, small instruments are used to:\"]})})]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Remove loose bone or cartilage\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Treat inflamed tissue\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Repair or smooth joint surfaces\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Release stiffness or scar tissue\"})})]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Quick Recovery\"}),\"\\xa0\u2013 Because the incisions are small, recovery is often faster and less painful compared to traditional open surgery.\"]}),/*#__PURE__*/e(\"p\",{children:\"Elbow arthroscopy is commonly used to treat:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Tennis elbow (lateral epicondylitis)\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Elbow arthritis\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Loose bodies (bone or cartilage fragments)\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Elbow stiffness or locking\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Old injuries causing pain or catching\"})})})]}),/*#__PURE__*/e(\"h3\",{children:\"Famous Athletes Who Returned After Elbow Joint Procedure\"}),/*#__PURE__*/e(\"ol\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Rafael Nadal\"})})})}),/*#__PURE__*/e(\"img\",{alt:\"Rafael Nadal\\xa0\u2013 Tennis champion\",className:\"framer-image\",height:\"288\",src:\"https://framerusercontent.com/images/c0IFLBqZHVle42cLgs92vyB132Q.jpg\",srcSet:\"https://framerusercontent.com/images/c0IFLBqZHVle42cLgs92vyB132Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/c0IFLBqZHVle42cLgs92vyB132Q.jpg 981w\",style:{aspectRatio:\"981 / 577\"},width:\"490\"}),/*#__PURE__*/e(\"p\",{children:\"Tennis champion: Has had multiple procedures for arm and elbow-related injuries. While not always specified as arthroscopy, his treatment history includes cleaning up joint inflammation.\"}),/*#__PURE__*/e(\"ol\",{start:\"2\",children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Stephen Strasburg\"})})})}),/*#__PURE__*/e(\"img\",{alt:\"Stephen Strasburg\\xa0\u2013 MLB pitcher\",className:\"framer-image\",height:\"288\",src:\"https://framerusercontent.com/images/5r2eGAsCAMIYX0erBVOY0VeUh8.jpg\",srcSet:\"https://framerusercontent.com/images/5r2eGAsCAMIYX0erBVOY0VeUh8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5r2eGAsCAMIYX0erBVOY0VeUh8.jpg 981w\",style:{aspectRatio:\"981 / 577\"},width:\"490\"}),/*#__PURE__*/e(\"p\",{children:\" MLB pitcher: Underwent elbow arthroscopy to remove bone spurs and loose bodies.\"}),/*#__PURE__*/e(\"ol\",{start:\"3\",children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Noah Syndergaard\"}),\"\\xa0\"]})})}),/*#__PURE__*/e(\"img\",{alt:\"Noah Syndergaard\\xa0\u2013 MLB pitcher\",className:\"framer-image\",height:\"288\",src:\"https://framerusercontent.com/images/6OlCK7PjlY8KbjCF5VTYyFB2E.jpg\",srcSet:\"https://framerusercontent.com/images/6OlCK7PjlY8KbjCF5VTYyFB2E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6OlCK7PjlY8KbjCF5VTYyFB2E.jpg 981w\",style:{aspectRatio:\"981 / 577\"},width:\"490\"}),/*#__PURE__*/e(\"p\",{children:\"MLB pitcher: Had elbow arthroscopy early in his career before later undergoing Tommy John surgery.\"}),/*#__PURE__*/e(\"ol\",{start:\"4\",children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Clayton Kershaw\"}),\"\\xa0\"]})})}),/*#__PURE__*/e(\"img\",{alt:\"Clayton Kershaw\\xa0\u2013 MLB pitcher\",className:\"framer-image\",height:\"288\",src:\"https://framerusercontent.com/images/qhON8SB84OVfFyfLSSxqYMK0fL8.jpg\",srcSet:\"https://framerusercontent.com/images/qhON8SB84OVfFyfLSSxqYMK0fL8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qhON8SB84OVfFyfLSSxqYMK0fL8.jpg 981w\",style:{aspectRatio:\"981 / 577\"},width:\"490\"}),/*#__PURE__*/e(\"p\",{children:\"MLB pitcher: Underwent arthroscopic surgery to address shoulder and elbow inflammation.\"})]});export const richText39=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"hat is the Biceps Tendon and Why is it Important?\"}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"biceps tendon\"}),\"\\xa0connects your\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"biceps muscle\"}),\"\\xa0(the muscle at the front of your upper arm) to the bones in your\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"shoulder and elbow\"}),\". There are two tendons at the shoulder:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"long head\"}),\"\\xa0of the biceps tendon\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\" The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"short head\"}),\"\\xa0of the biceps tendon\"]})})]}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"long head tendon\"}),\"\\xa0runs through the shoulder joint and is often the one that becomes irritated or torn.\"]}),/*#__PURE__*/e(\"p\",{children:\"This tendon helps with:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Shoulder stability\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Lifting and pulling\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Rotating your arm\"}),\"\\xa0(like turning a key or reaching overhead)\"]})})]}),/*#__PURE__*/r(\"p\",{children:[\"When it becomes\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"damaged or inflamed\"}),\", you may feel:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Pain in the front of the shoulder\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Weakness during activity\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A popping or clicking sensation\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:'A visible bump (\"Popeye deformity\") if the tendon ruptures'})})]}),/*#__PURE__*/e(\"h2\",{children:\"How is the Procedure Done?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Biceps tenodesis\"}),\"\\xa0is a surgery that removes the damaged portion of the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"long head of the biceps tendon\"}),\"\\xa0and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"reattaches it to the upper arm bone (humerus)\"}),\".\"]}),/*#__PURE__*/e(\"p\",{children:\"Here\u2019s a simple breakdown of what happens:\"}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"A\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"small incision\"}),\"\\xa0is made near the shoulder or upper arm.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"damaged tendon\"}),\"\\xa0is gently removed from the shoulder joint.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The healthy part of the tendon is\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"reattached to the humerus\"}),\"\\xa0bone using a small screw or anchor.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The incision is closed, and the arm is bandaged.\"})})]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Biceps tenodesis\"}),'\\xa0is often done to relieve shoulder pain and improve arm function when other treatments haven\u2019t worked. If you\\'re active or want to avoid the cosmetic \"Popeye\" bump, this surgery may be the right option.']})]});export const richText40=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What Is the Shoulder Joint and Labrum \u2014 and Why Are They Important?\"}),/*#__PURE__*/r(\"p\",{children:[\"Your shoulder is a ball-and-socket joint that lets you move your arm in all directions. The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"labrum\"}),\"\\xa0is a soft piece of cartilage around the socket that helps keep the ball (top of your arm bone) in place.\"]}),/*#__PURE__*/r(\"p\",{children:[\"When the labrum is torn \u2014 often from a shoulder dislocation \u2014 your shoulder can feel loose or unstable. This type of tear is called a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Bankart tear\"}),\", and it can lead to repeated dislocations, pain, and trouble using your shoulder.\"]}),/*#__PURE__*/e(\"h2\",{children:\"How Is the Surgery Done?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Bankart repair surgery\"}),\"\\xa0fixes the torn labrum and helps keep your shoulder stable again. It is usually done with\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive surgery\"}),\"\\xa0called\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"arthroscopy\"}),\":\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The surgeon makes a few small cuts and uses a tiny camera to see inside the shoulder.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Special tools are used to reattach the torn labrum to the bone using\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"sutures (stitches)\"}),\"\\xa0and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"anchors\"}),\".\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Sometimes, the joint capsule (soft tissue around the joint) is tightened to make the shoulder more secure.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"You usually go home the same day, and recovery includes physical therapy to get your strength and motion back.\"})]});export const richText41=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"About Service:\"})}),/*#__PURE__*/e(\"p\",{children:\"Our skilled surgical teams across Montreal and Toronto are dedicated to providing advanced labral tear hip repair procedures to restore your joint function. We will help get you back to the activities you love in no time.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Understanding Labral Tears\"})}),/*#__PURE__*/e(\"p\",{children:\"The labrum is a ring of cartilage that helps stabilize your hip joint. It secures the thigh bone (femur head) in the socket.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"Due to the delicate position, the tissue may tear due to:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Traumatic injury\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Congenital hip disorders\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Repetitive movements\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Structural abnormalities\"})})]}),/*#__PURE__*/e(\"p\",{children:\"This means you may suffer from consistent pain because of hip labral tears. They can also limit your mobility at the hip joint, stressing your body further.\"}),/*#__PURE__*/e(\"p\",{children:\"Remember labrum tears can also occur in the shoulder joint. That's because your upper arm bone is prone to tears where the biceps tendon connects with the rotator cuff muscles.\"}),/*#__PURE__*/e(\"p\",{children:\"These shoulder tears can be corrected with a similar arthroscopic surgery just like hip labral tears.\"}),/*#__PURE__*/e(\"p\",{children:\"At Pathway Surgery, we employ minimally invasive hip arthroscopic techniques to deal with a torn labrum whenever possible.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"This advanced approach allows our surgeons to repair torn labrum tissue through small incisions, resulting in:\"}),/*#__PURE__*/e(\"img\",{alt:\"Our Private Labral Repair Approach\",className:\"framer-image\",height:\"400\",src:\"https://framerusercontent.com/images/m9NnqIrizUkvj388o8Vk8lR9SY.webp\",srcSet:\"https://framerusercontent.com/images/m9NnqIrizUkvj388o8Vk8lR9SY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/m9NnqIrizUkvj388o8Vk8lR9SY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/m9NnqIrizUkvj388o8Vk8lR9SY.webp 1920w\",style:{aspectRatio:\"1920 / 800\"},width:\"960\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Minimal post-operative hip pain\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Prompt recovery times\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Little to no scarring\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Decreased risk of complications\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Highly favourable overall outcomes\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Our surgeon will mainly use the arthroscope to visualize and assess your hip joint. Then, they will repair the hip labral tear through sutures or grafts, depending on your injury severity.\"}),/*#__PURE__*/e(\"p\",{children:\"The precise method allows us to achieve the benefits mentioned earlier promptly.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Key Components Of Torn Labrum Hip Repair Surgery At Pathway Surgery\"})}),/*#__PURE__*/e(\"p\",{children:\"Clients all over Canada prefer us for their private knee, hip, and other repair processes. That is because we offer great care and help with recovery.\"}),/*#__PURE__*/e(\"p\",{children:\"Here are some key components of our torn labrum hip repair surgery for your understanding:\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Comprehensive Care Journey\"})}),/*#__PURE__*/e(\"p\",{children:\"Your treatment at Pathway Surgery begins with a thorough evaluation using state-of-the-art diagnostic imaging tests. These tests include magnetic resonance imaging, magnetic resonance arthrography, and X-rays.\"}),/*#__PURE__*/e(\"p\",{children:\"Our experts also conduct several physical tests to supplement the diagnosis made by imaging techniques. We tailor a custom treatment plan that may include:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Pre-surgical physical therapy to enhance the success rate of the torn labrum repair procedure\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Minimally invasive torn hip labrum surgery\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A well-developed recovery program\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Regular follow-up care and physical exams to track your recovery\"})})]}),/*#__PURE__*/e(\"p\",{children:\"When our experts recommend surgery, avoid making any delays in deciding. You may be facing less pain at the time of diagnosis, but a torn labrum poses a higher risk if you wait too long.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Recovery and Rehabilitation\"})}),/*#__PURE__*/e(\"p\",{children:\"Pathway Surgery has connections with the leading physical therapists in Canada. This means we will always help you with the recovery journey.\"}),/*#__PURE__*/e(\"p\",{children:\"We have also designed a convenient and coordinated approach to help you enjoy the best results by:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A well-structured recovery schedule\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Regular assessments to avoid progress delays\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Modified guidelines to help you maintain activity without stressing the hip joint again\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A thorough protocol for playing sports after the surgical treatment, if you\u2019re an athlete\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Our physical therapy sessions include flexibility exercises that will prevent you from suffering any motion loss. The recovery program will also include strategies that will reduce inflammation and pain after appropriate treatment.\"})]});export const richText42=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Pain management with prescribed medications and possible use of an ice machine to reduce swelling\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Limited mobility requiring assistance for basic activities, possibly using a walker or crutches for any movement\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Physical therapy begins with gentle bed exercises and breathing techniques to prevent complications\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Close monitoring of surgical site, vital signs, and potential complications by medical staff\"})})]})});export const richText43=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Transition to home care with continued pain management and gradual reduction in medication\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Daily physical therapy exercises focusing on gentle range of motion and strengthening\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Limited weight-bearing as directed by surgeon, typically using walker or crutches\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Development of strategies for daily activities while following hip precautions to prevent dislocation\"})})]})});export const richText44=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Progressive increase in weight-bearing activities as approved by our physical therapist\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Transition from walker/crutches to a cane as stability improves\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Expanded exercise routine incorporating more challenging strengthening and balance exercises\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Return to light household activities and potentially part-time sedentary work by week 8\"})})]})});export const richText45=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Gradual return to most normal activities, with full recovery typically expected between 6 - 12 months\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Continued strengthening exercises focusing on hip stability and functional movement patterns\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Possible return to low-impact recreational activities like swimming, cycling, or golf around 6 months\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Regular follow-up appointments with our surgeon to monitor healing and long-term hip function\"})})]})});export const richText46=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"A modern, muscle-sparing approach to relieving hip pain and restoring movement.\"}),/*#__PURE__*/e(\"h2\",{children:\"What Is the Hip Joint, and Why Is It Important?\"}),/*#__PURE__*/r(\"p\",{children:[\"The hip is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"ball-and-socket joint\"}),\", where the top of the thigh bone (femur) fits into the pelvis. It\u2019s surrounded by\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"cartilage, ligaments, tendons\"}),\", and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"muscles\"}),\"\u2014all working together to allow:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Smooth walking and bending\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Stable standing and sitting\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Weight-bearing and balance\"})})]}),/*#__PURE__*/r(\"p\",{children:[\"When damaged by arthritis, injury, or overuse, the joint becomes painful and stiff, limiting your ability to move freely.\",/*#__PURE__*/e(\"br\",{}),\"A modern, muscle-sparing approach to relieving hip pain and restoring movement.\"]}),/*#__PURE__*/e(\"h2\",{children:\"How Is the Procedure Performed?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Direct anterior hip replacement\"}),\"\\xa0is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive technique\"}),\"\\xa0where the surgeon accesses the hip joint from the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"front of the body\"}),\", sparing major muscles. This leads to:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Less pain\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Faster recovery\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lower risk of dislocation\"})})]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Damaged joint surfaces\"}),\"\\xa0are replaced with durable artificial implants, tailored to your anatomy for long-term performance.\"]}),/*#__PURE__*/e(\"img\",{alt:\"1.\\xa0Hana\\xae Orthopedic Surgery Table\",className:\"framer-image\",height:\"288\",src:\"https://framerusercontent.com/images/clbAePGM8dNZ5Ne3nZKw0Bmc2c.jpg\",srcSet:\"https://framerusercontent.com/images/clbAePGM8dNZ5Ne3nZKw0Bmc2c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/clbAePGM8dNZ5Ne3nZKw0Bmc2c.jpg 981w\",style:{aspectRatio:\"981 / 577\"},width:\"490\"}),/*#__PURE__*/e(\"h2\",{children:\"Advanced Surgical Technology\"}),/*#__PURE__*/e(\"h3\",{children:\"1.\\xa0Hana\\xae Orthopedic Surgery Table\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Used to precisely position your leg during surgery\u2014without cutting through muscle.\"})}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Hana Table\"}),\"\\xa0enables:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Smaller incisions\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Better implant positioning\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Faster return to walking\"})})]}),/*#__PURE__*/r(\"p\",{children:[\"\\xa0\",/*#__PURE__*/e(i,{href:\"https://www.mizuhosi.com/product/hana/\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"Learn more\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"2.\\xa0Zimmer Biomet ROSA\\xae Hip Robotic Platform\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Robotic precision tailored to your unique anatomy.\"})}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"ROSA\\xae Hip system\"}),\"\\xa0helps your surgeon:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Map out your surgery in advance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Use\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"real-time intraoperative data\"})]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Place the implant with sub-millimeter accuracy\"})})]}),/*#__PURE__*/r(\"p\",{children:[\"This technology leads to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"improved alignment, balance, and joint longevity\"}),\".\"]}),/*#__PURE__*/e(\"p\",{children:\"Explore ROSA\\xae Hip\"}),/*#__PURE__*/e(\"h2\",{children:\"Why Patients Choose the Direct Anterior Approach\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Muscle-sparing\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Faster recovery time\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Less post-operative pain\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Smaller incision and no dislocation precautions\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Return to walking\u2014often the same day\"})})]})]});export const richText47=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What Is the Hip Joint, and Why Does It Matter?\"}),/*#__PURE__*/r(\"p\",{children:[\"The hip is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"ball-and-socket joint\"}),\"\\xa0formed where the thigh bone (femur) meets the pelvis. It is one of the most important joints for\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"movement, balance, and weight-bearing activities\"}),\".\"]}),/*#__PURE__*/e(\"p\",{children:\"Surrounding the joint are several important structures:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Cartilage\"}),\", which cushions and allows smooth movement\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"labrum\"}),\", a ring of cartilage that stabilizes the joint\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Ligaments and tendons\"}),\", which hold everything in place and support motion\"]})})]}),/*#__PURE__*/e(\"p\",{children:\"When any of these structures are injured or degenerate, it can lead to pain, stiffness, clicking, or even joint instability.\"}),/*#__PURE__*/e(\"h2\",{children:\"Why Is the Hip Joint So Important for Daily Function?\"}),/*#__PURE__*/e(\"p\",{children:\"Your hips are essential for:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Walking, standing, sitting, and pivoting\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Maintaining your balance and posture\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Transmitting forces from the upper body to the legs\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Hip problems can significantly affect your quality of life, making even simple activities uncomfortable or difficult.\"}),/*#__PURE__*/e(\"h2\",{children:\"How Is Hip Arthroscopy Performed?\"}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Hip arthroscopy\"}),\"\\xa0is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive surgical procedure\"}),\"\\xa0used to diagnose and treat a range of joint issues. Small incisions are made to insert a camera (arthroscope) and specialized tools, allowing the surgeon to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"visualize, clean, or repair\"}),\"\\xa0damaged tissue.\"]}),/*#__PURE__*/e(\"p\",{children:\"It\u2019s commonly used to treat:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Labral tears\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Femoroacetabular impingement (FAI)\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Cartilage damage\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Loose bodies\"}),\"\\xa0or inflammation within the joint\"]})})]}),/*#__PURE__*/e(\"h2\",{children:\"Advanced Techniques and Technology We Use\"}),/*#__PURE__*/e(\"p\",{children:\"We use the latest, most patient-friendly technologies to improve outcomes, reduce discomfort, and speed up recovery.\"}),/*#__PURE__*/e(\"h3\",{children:\"Postless Hip Arthroscopy (Formerly Known as \u201CPink Hip Kit\u201D)\"}),/*#__PURE__*/r(\"p\",{children:[\"Traditional hip arthroscopy requires placing the patient in\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"traction using a post between the legs\"}),\". However, this can lead to nerve pressure, discomfort, and longer recovery.\"]}),/*#__PURE__*/r(\"p\",{children:[\"We use a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"postless technique\"}),\", which eliminates the need for this perineal post by using:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Specialized table setups\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Vacuum stabilization or distraction devices\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Greater patient comfort and safety\"})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Reduced risk of complications like nerve compression or soft tissue damage\"}),/*#__PURE__*/e(\"img\",{alt:\"Postless Hip Arthroscopy (Formerly Known as \u201CPink Hip Kit\u201D)\",className:\"framer-image\",height:\"288\",src:\"https://framerusercontent.com/images/134s17YX4VC2cR3GXEJ3dCrkI4.jpg\",srcSet:\"https://framerusercontent.com/images/134s17YX4VC2cR3GXEJ3dCrkI4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/134s17YX4VC2cR3GXEJ3dCrkI4.jpg 981w\",style:{aspectRatio:\"981 / 577\"},width:\"490\"}),/*#__PURE__*/r(\"p\",{children:[\"This approach allows for\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"equal or better surgical access\"}),\"\\xa0while prioritizing your comfort and safety. \"]})]})]}),/*#__PURE__*/e(\"h3\",{children:\"Q-Fix Knotless Anchors\"}),/*#__PURE__*/r(\"p\",{children:[\"When repairing the hip labrum, we use\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Q-Fix Knotless Anchors\"}),\"\u2014small implants designed to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"re-anchor the labrum to the bone\"}),\"\\xa0securely without traditional sutures and bulky knots.\"]}),/*#__PURE__*/e(\"img\",{alt:\"Q-Fix Knotless Anchors\",className:\"framer-image\",height:\"288\",src:\"https://framerusercontent.com/images/0xdKyrUVLong0WQLCP3sGFdmc.jpg\",srcSet:\"https://framerusercontent.com/images/0xdKyrUVLong0WQLCP3sGFdmc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0xdKyrUVLong0WQLCP3sGFdmc.jpg 981w\",style:{aspectRatio:\"981 / 577\"},width:\"490\"}),/*#__PURE__*/e(\"p\",{children:\"Benefits include:\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Stronger fixation\"}),\"\\xa0with less joint irritation\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Knotless design\"}),\": reduces the risk of soft tissue impingement\"]})})]}),/*#__PURE__*/e(\"h3\",{children:\"1. Alex Rodriguez (MLB \u2013 New York Yankees)\"}),/*#__PURE__*/e(\"img\",{alt:\"Alex Rodriguez (MLB \u2013 New York Yankees)\",className:\"framer-image\",height:\"350\",src:\"https://framerusercontent.com/images/6MXTp2U7LswhyG6L2u16Co2SSQQ.jpg\",srcSet:\"https://framerusercontent.com/images/6MXTp2U7LswhyG6L2u16Co2SSQQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6MXTp2U7LswhyG6L2u16Co2SSQQ.jpg 700w\",style:{aspectRatio:\"700 / 700\"},width:\"350\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Procedure:\"}),\"\\xa0Hip arthroscopy for a labral tear and impingement\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Outcome:\"}),\"\\xa0Returned to professional play and hit a home run in his first game back\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Why It\u2019s Notable:\"}),\"\\xa0Underwent the procedure at the height of his career and returned to elite performance\"]})})]}),/*#__PURE__*/e(\"h3\",{children:\"2. Andy Murray (Professional Tennis Player)\"}),/*#__PURE__*/e(\"img\",{alt:\"Andy Murray (Professional Tennis Player)\",className:\"framer-image\",height:\"350\",src:\"https://framerusercontent.com/images/iSA24Yot6ZWrJO6vBPGBzH5wjs.jpg\",srcSet:\"https://framerusercontent.com/images/iSA24Yot6ZWrJO6vBPGBzH5wjs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iSA24Yot6ZWrJO6vBPGBzH5wjs.jpg 700w\",style:{aspectRatio:\"700 / 700\"},width:\"350\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Procedure:\"}),\"\\xa0Hip arthroscopy, followed later by hip resurfacing\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Outcome:\"}),\"\\xa0Returned to competition and won titles post-surgery\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Why It\u2019s Notable:\"}),\"\\xa0His case brought international awareness to hip arthroscopy among elite athletes\"]})})]}),/*#__PURE__*/e(\"h3\",{children:\"3. Marcus Stroman (MLB \u2013 Chicago Cubs, formerly Toronto Blue Jays)\"}),/*#__PURE__*/e(\"img\",{alt:\"Marcus Stroman (MLB \u2013 Chicago Cubs, formerly Toronto Blue Jays)\",className:\"framer-image\",height:\"350\",src:\"https://framerusercontent.com/images/OjXF9As4I1H6gfsgVUwm1B0kEY.jpg\",srcSet:\"https://framerusercontent.com/images/OjXF9As4I1H6gfsgVUwm1B0kEY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OjXF9As4I1H6gfsgVUwm1B0kEY.jpg 700w\",style:{aspectRatio:\"700 / 700\"},width:\"350\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Procedure:\"}),\"\\xa0Hip labrum repair via arthroscopy\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Outcome:\"}),\"\\xa0Returned to the mound with strong performances\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Why It\u2019s Notable:\"}),\"\\xa0A pitcher requiring rotational stability and force production, his recovery is particularly relevant to rotational-sport athletes\"]})})]})]});export const richText48=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is the MPFL, and Why is it Important for Knee Function?\"}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Medial Patellofemoral Ligament (MPFL)\"}),\"\\xa0is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"band of tissue on the inner side of the knee\"}),\"\\xa0that helps keep your kneecap (patella) stable and properly aligned, especially during movement like bending, squatting, or running.\"]}),/*#__PURE__*/r(\"p\",{children:[\"When the MPFL is torn\u2014typically from a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"kneecap dislocation or traumatic injury\"}),\"\u2014it can lead to repeated dislocations, instability, pain, and a loss of confidence in movement. Without a properly functioning MPFL, the kneecap can drift out of place, damaging cartilage and increasing the risk of arthritis over time.\"]}),/*#__PURE__*/e(\"h2\",{children:\"How is MPFL Reconstruction Performed?\"}),/*#__PURE__*/r(\"p\",{children:[\"MPFL reconstruction is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive outpatient procedure\"}),\"\\xa0designed to restore stability to your kneecap. The torn ligament is replaced with a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"new graft\"}),\"\u2014often using a small piece of your own tendon (usually the hamstring) or a donor graft (allograft).\"]}),/*#__PURE__*/r(\"h2\",{children:[\"Step-by-Step Overview\",/*#__PURE__*/e(\"em\",{children:\":\"})]}),/*#__PURE__*/r(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Arthroscopic Assessment\"}),\"\\xa0\u2013 The surgeon first inspects the knee joint using a small camera (arthroscope).\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Graft Harvest\"}),\"\\xa0\u2013 If an autograft is used, a small portion of your own hamstring tendon is carefully taken.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Precise Tunnel Creation\"}),\"\\xa0\u2013 Small bone tunnels are made in the femur and patella to anchor the new ligament.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Graft Placement and Fixation\"}),\"\\xa0\u2013 The graft is secured using\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"advanced fixation devices\"}),\"\\xa0like bioabsorbable screws or anchors.\"]})}),/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Tensioning and Alignment\"}),\"\\xa0\u2013 The new ligament is tensioned carefully to ensure the patella tracks normally through a full range of motion.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h2\",{children:\"Advanced Techniques and Technologies in MPFL Reconstruction\"}),/*#__PURE__*/r(\"p\",{children:[\"Modern MPFL reconstruction focuses on\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"anatomic precision, graft stability, and minimizing complications\"}),\". Here\u2019s what sets today\u2019s approach apart:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Anatomic Tunnel Placement with 3D Imaging or Fluoroscopy\"}),/*#__PURE__*/e(\"br\",{}),\"Advanced imaging tools allow surgeons to place grafts\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"exactly where the native MPFL attached\"}),\", reducing the risk of stiffness or overcorrection.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"All-Inside Technique\"}),/*#__PURE__*/e(\"br\",{}),'Some surgeons use an \"all-inside\" method, minimizing bone drilling and reducing surgical trauma\u2014ideal for young, active patients.']})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Knotless Anchor Systems\"}),/*#__PURE__*/e(\"br\",{}),\"These low-profile implants allow for\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"strong graft fixation\"}),\"\\xa0without bulky knots or screws, improving comfort and recovery outcomes.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Hybrid Grafts\"}),/*#__PURE__*/e(\"br\",{}),\"In certain cases,\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"biocompatible synthetic augmentation\"}),\"\\xa0may be used alongside biological tissue for added strength during early recovery, especially in high-risk athletes.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Combined Realignment Procedures\"}),/*#__PURE__*/e(\"br\",{}),\"If your anatomy places you at risk for repeat dislocations (e.g., high-riding kneecap or knock knees), MPFL reconstruction may be combined with\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"tibial tubercle osteotomy (TTO)\"}),\"\\xa0or other alignment corrections.\"]})})]}),/*#__PURE__*/e(\"h3\",{children:\"Imani McGee-Stafford\\xa0\u2013 WNBA\"}),/*#__PURE__*/e(\"img\",{alt:\"Imani McGee-Stafford\\xa0\u2013 WNBA\",className:\"framer-image\",height:\"350\",src:\"https://framerusercontent.com/images/em1xD81f9uwPRmnbAyQevuDyBE.jpg\",srcSet:\"https://framerusercontent.com/images/em1xD81f9uwPRmnbAyQevuDyBE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/em1xD81f9uwPRmnbAyQevuDyBE.jpg 700w\",style:{aspectRatio:\"700 / 700\"},width:\"350\"}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The professional basketball player underwent\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"MPFL reconstruction\"}),\"\\xa0after suffering repeated patellar dislocations during her career.\"]})})}),/*#__PURE__*/e(\"p\",{children:\" Following surgery and rehab, she returned to compete in the WNBA, showing that elite-level performance is possible after this procedure.\"}),/*#__PURE__*/e(\"h3\",{children:\"Kelsey Robinson\\xa0\u2013 Olympic Volleyball Player\"}),/*#__PURE__*/e(\"img\",{alt:\"Kelsey Robinson\\xa0\u2013 Olympic Volleyball Player\",className:\"framer-image\",height:\"350\",src:\"https://framerusercontent.com/images/AyKhazEngY8Wylnz8EHYAkHlUfg.jpg\",srcSet:\"https://framerusercontent.com/images/AyKhazEngY8Wylnz8EHYAkHlUfg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AyKhazEngY8Wylnz8EHYAkHlUfg.jpg 700w\",style:{aspectRatio:\"700 / 700\"},width:\"350\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Robinson, a member of the U.S. Women\u2019s National Volleyball Team and Olympic medalist, had\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"MPFL reconstruction surgery\"}),\"\\xa0due to chronic kneecap instability.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"She made a successful return to international competition and helped lead Team USA to medal-winning performances.\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"Travis Frederick\\xa0\u2013 NFL (Dallas Cowboys)\"}),/*#__PURE__*/e(\"img\",{alt:\"Travis Frederick\\xa0\u2013 NFL (Dallas Cowboys)\",className:\"framer-image\",height:\"350\",src:\"https://framerusercontent.com/images/AncxSPtdHrTpCceqln7oxQba8.jpg\",srcSet:\"https://framerusercontent.com/images/AncxSPtdHrTpCceqln7oxQba8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AncxSPtdHrTpCceqln7oxQba8.jpg 700w\",style:{aspectRatio:\"700 / 700\"},width:\"350\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Although better known for other injuries, Frederick sustained\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"kneecap instability\"}),\"\\xa0early in his career and underwent\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"MPFL reconstruction\"}),\".\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"He returned to the NFL and went on to become a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Pro Bowl center\"}),\", showing that linemen, in particular, can achieve full strength post-surgery.\"]})})]})]});export const richText49=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Pain management with medications that nurses will give you timely\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Overnight hospital stay to monitor your vital signs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Beginning of basic movement with support from day two onwards\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A focus on wound care, pain control, and ice application to reduce discomfort\"})})]})});export const richText50=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Follow-up appointment in the first week to check incision healing progress\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Beginning of structured physical therapy sessions\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reduction of pain medication during the second week\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Continued physical therapy two to three times a week with progressive intensity\"})})]})});export const richText51=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Noticeable improvement in mobility between week three to four\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Enhanced range of motion by week five\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Return to sedentary work by week six\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Decreased dependence on support for walking\"})})]})});export const richText52=/*#__PURE__*/e(a.Fragment,{children:/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Return to most daily activities by the 4th month\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Minimal pain on knee movement by the 6th month\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Return to demanding activities between 9 to 12 months\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Final follow-up appointment to check if maximum medical improvement has been achieved\"})})]})});export const richText53=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What Is the Meniscus, and Why Is It Important for Joint Function?\"}),/*#__PURE__*/r(\"p\",{children:[\"The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"meniscus\"}),\"\\xa0is a C-shaped piece of cartilage located in the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"knee joint\"}),\". Each knee has two menisci \u2014 one on the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"inside (medial)\"}),\"\\xa0and one on the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"outside (lateral)\"}),\"\\xa0of the joint. These structures act like\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"shock absorbers\"}),\", helping to cushion the bones, distribute weight evenly, and stabilize the joint during movement.\"]}),/*#__PURE__*/r(\"p\",{children:[\"When the meniscus is torn \u2014 often due to twisting or sudden impact \u2014 patients may experience\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"pain, swelling, locking, or difficulty moving the knee properly\"}),\". Depending on the severity and type of tear, surgical treatment may be required to restore normal function and relieve symptoms.\"]}),/*#__PURE__*/e(\"h2\",{children:\"How Is a Meniscectomy Procedure Performed?\"}),/*#__PURE__*/r(\"p\",{children:[\"A\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"meniscectomy\"}),\"\\xa0is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"minimally invasive surgery\"}),\"\\xa0that involves removing the torn portion of the meniscus to alleviate pain and improve knee mobility. The procedure is usually done using\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"arthroscopy\"}),\", where small incisions are made, and a tiny camera (arthroscope) is inserted to guide miniature surgical instruments.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Latest Techniques & Advanced Technologies: FLOW 50 COBLATION\"}),/*#__PURE__*/r(\"p\",{children:[\"At our center, we go beyond traditional techniques by incorporating\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"advanced technologies\"}),\"\\xa0to ensure\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"precision, safety, and faster recovery\"}),\". One such innovation is the\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"FLOW 50 COBLATION\\xae technique\"}),\".\"]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"COBLATION\"}),\"\\xa0(Controlled Ablation) is a modern, low-temperature technology that uses radiofrequency energy combined with saline to gently and precisely remove damaged tissue. The\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"FLOW 50 wand\"}),\"\\xa0is specifically designed for knee procedures like meniscectomy, offering:\"]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Targeted removal\"}),\"\\xa0of torn meniscus with minimal damage to surrounding healthy tissue\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Reduced heat\"}),\"\\xa0compared to traditional lasers or electrocautery, minimizing the risk of injury\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Improved visualization\"}),\"\\xa0during surgery due to integrated suction and fluid flow\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Faster recovery\"}),\"\\xa0and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"less post-operative pain\"}),\"\\xa0in many cases\"]})})]}),/*#__PURE__*/r(\"p\",{children:[\"By using\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"FLOW 50 COBLATION\"}),\", we aim to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"preserve as much healthy meniscus as possible\"}),\", which is critical for maintaining long-term knee health and preventing arthritis down the line.\"]}),/*#__PURE__*/e(\"img\",{alt:\"FFLOW 50 COBLATION\",className:\"framer-image\",height:\"288\",src:\"https://framerusercontent.com/images/KlCIKTSKYH7Wf8d3flEZju2WQ.jpg\",srcSet:\"https://framerusercontent.com/images/KlCIKTSKYH7Wf8d3flEZju2WQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KlCIKTSKYH7Wf8d3flEZju2WQ.jpg 981w\",style:{aspectRatio:\"981 / 577\"},width:\"490\"}),/*#__PURE__*/e(\"h2\",{children:\"\\xa0Technical Advantages of FLOW 50 COBLATION\"}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Precision and Control\"}),\":\\xa0The FLOW 50 wand features a 45-degree ceramic bevel tip, allowing surgeons to target damaged tissue accurately while preserving healthy cartilage.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Variable Power Settings\"}),\":\\xa0The system offers multiple operating modes tailored for different tissue types, enhancing versatility during procedures.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Enhanced Visualization\"}),\":\\xa0Integrated suction and fluid flow improve the surgical field's clarity, facilitating more efficient tissue removal.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Reduced Thermal Damage\"}),\":\\xa0Operating at lower temperatures compared to traditional RF devices, the system minimizes the risk of thermal injury to surrounding tissues.\\xa0\"]})})]}),/*#__PURE__*/e(\"h2\",{children:\"Clinical Implications\"}),/*#__PURE__*/r(\"p\",{children:[\"The FLOW 50 COBLATION system offers a safe and effective alternative to traditional mechanical debridement in meniscectomy and chondroplasty procedures.\\xa0Its precision and reduced thermal impact contribute to better patient outcomes, including improved knee function and reduced need for revision surgeries.\",/*#__PURE__*/e(i,{href:\"https://www.researchgate.net/publication/348691406_Use_of_a_Novel_Variable_Power_Radiofrequency_Ablation_System_Specific_for_Knee_Chondroplasty_Surgical_Experience_and_Two-Year_Patient_Results?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"ResearchGate\"})})]}),/*#__PURE__*/e(\"p\",{children:\"For patients considering meniscectomy or chondroplasty, discussing the potential benefits of the FLOW 50 COBLATION technique with your orthopedic surgeon can provide insights into the most appropriate treatment options for your specific condition.\"}),/*#__PURE__*/e(\"h2\",{children:\"Clinical Outcomes and Safety Profile\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"1. Two-Year Clinical Study on Knee Chondroplasty\"})}),/*#__PURE__*/r(\"p\",{children:[\"A retrospective study evaluated 85 patients who underwent knee chondroplasty using the FLOW 50 COBLATION wand.At an average follow-up of 27.5 months:\",/*#__PURE__*/e(i,{href:\"https://www.smith-nephew.com/en-us/health-care-professionals/products/sports-medicine/werewolf-flow-50-wand?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"onderzoekmetmensen.nl+9smith-nephew.com+9smith-nephew.com+9\"})}),/*#__PURE__*/e(i,{href:\"https://www.researchgate.net/publication/348691406_Use_of_a_Novel_Variable_Power_Radiofrequency_Ablation_System_Specific_for_Knee_Chondroplasty_Surgical_Experience_and_Two-Year_Patient_Results?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"ResearchGate+1PMC+1\"})})]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Only 14% required further surgery, primarily due to advanced cartilage damage (grade 4 lesions).\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"No complications related to thermal injury were observed.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Patient-reported outcomes, including the Oxford Knee Score (OKS), Knee injury and Osteoarthritis Outcome Score (KOOS), and International Knee Documentation Committee (IKDC) scores, indicated significant improvements in knee function and quality of life.\\xa0\",/*#__PURE__*/e(i,{href:\"https://www.researchgate.net/publication/348691406_Use_of_a_Novel_Variable_Power_Radiofrequency_Ablation_System_Specific_for_Knee_Chondroplasty_Surgical_Experience_and_Two-Year_Patient_Results?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"ResearchGate+2ResearchGate+2PMC+2\"})})]})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"2. Comparative Study: Radiofrequency Ablation vs. Mechanical Debridement\"})}),/*#__PURE__*/r(\"p\",{children:[\"In a randomized controlled trial comparing radiofrequency (RF) ablation to mechanical debridement for knee chondroplasty:\",/*#__PURE__*/e(i,{href:\"https://pmc.ncbi.nlm.nih.gov/articles/PMC7458207/?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"onderzoekmetmensen.nl+6PMC+6ResearchGate+6\"})})]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Patients treated with RF ablation reported better functional outcomes.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"There was a lower rate of re-operations in the RF ablation group.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"Second-look arthroscopies showed that 88% of lesions treated with RF ablation exhibited no progression, and 56% showed improvement with complete or partial filling.\",/*#__PURE__*/e(i,{href:\"https://www.researchgate.net/publication/348691406_Use_of_a_Novel_Variable_Power_Radiofrequency_Ablation_System_Specific_for_Knee_Chondroplasty_Surgical_Experience_and_Two-Year_Patient_Results?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"ResearchGate\"})}),/*#__PURE__*/e(i,{href:\"https://pmc.ncbi.nlm.nih.gov/articles/PMC7834590/?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"ResearchGate+2PMC+2onderzoekmetmensen.nl+2\"})})]})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"3. Long-Term Benefits of COBLATION\\xa0Treatment\"})}),/*#__PURE__*/r(\"p\",{children:[\"A study assessing the long-term effects of coblation treatment on knee cartilage quality found:\",/*#__PURE__*/e(i,{href:\"https://onderzoekmetmensen.nl/en/node/52659/pdf?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"onderzoekmetmensen.nl\"})})]}),/*#__PURE__*/r(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Coblation resulted in smoother cartilage surfaces compared to mechanical debridement.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Patients reported better outcomes up to 10 years post-treatment.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[\"The technique minimized damage to surrounding healthy cartilage, reducing the risk of osteoarthritis progression.\",/*#__PURE__*/e(i,{href:\"https://onderzoekmetmensen.nl/en/node/52659/pdf?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"ScienceDirect+10onderzoekmetmensen.nl+10smith-nephew.com+10\"})})]})})]}),/*#__PURE__*/e(\"h2\",{children:\"Famous Athletes Who Returned to Sport After Meniscectomy Surgery\"}),/*#__PURE__*/e(\"h3\",{children:\"Dwyane Wade (NBA)\"}),/*#__PURE__*/e(\"img\",{alt:\"Dwyane Wade (NBA)\",className:\"framer-image\",height:\"350\",src:\"https://framerusercontent.com/images/hnmCoBT9003emq5aq1yY9c3DeU.jpg\",srcSet:\"https://framerusercontent.com/images/hnmCoBT9003emq5aq1yY9c3DeU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hnmCoBT9003emq5aq1yY9c3DeU.jpg 700w\",style:{aspectRatio:\"700 / 700\"},width:\"350\"}),/*#__PURE__*/r(\"p\",{children:[\"In 2002, during his college career at Marquette University, Dwyane Wade underwent surgery to remove the meniscus from his left knee.\\xa0He later expressed regret over the decision, noting that it led to ongoing knee problems throughout his professional career with the Miami Heat.\\xa0Wade highlighted that, at the time, the focus was on immediate return to play rather than long-term knee health, a perspective that has since evolved with advancements in surgical techniques.\",/*#__PURE__*/e(i,{href:\"https://www.espn.com/nba/truehoop/miamiheat/story/_/id/9760169/dwyane-wade-miami-heat-regrets-having-meniscus-removed-college?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"ESPN.com\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"Russell Westbrook (NBA)\"}),/*#__PURE__*/e(\"img\",{alt:\"Russell Westbrook (NBA)\",className:\"framer-image\",height:\"350\",src:\"https://framerusercontent.com/images/VPTYSFHHg6r2bn4gn2AcaoUisc.jpg\",srcSet:\"https://framerusercontent.com/images/VPTYSFHHg6r2bn4gn2AcaoUisc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VPTYSFHHg6r2bn4gn2AcaoUisc.jpg 700w\",style:{aspectRatio:\"700 / 700\"},width:\"350\"}),/*#__PURE__*/r(\"p\",{children:[\"Russell Westbrook underwent a meniscectomy after a knee injury during the 2013 NBA playoffs.\\xa0Despite the surgery, he returned to play at an elite level, showcasing his resilience and the effectiveness of modern surgical interventions in facilitating athlete recovery.\",/*#__PURE__*/e(i,{href:\"https://www.reddit.com/r/chicagobulls/comments/31ki8b/nba_players_who_have_had_a_meniscectomy/?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"Wikipedia+2Reddit+2ESPN.com+2\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"Blake Griffin (NBA)\"}),/*#__PURE__*/e(\"img\",{alt:\"Blake Griffin (NBA)\",className:\"framer-image\",height:\"350\",src:\"https://framerusercontent.com/images/7Wiqf9Y1D9ycaakaA4XeE3kkjQw.jpg\",srcSet:\"https://framerusercontent.com/images/7Wiqf9Y1D9ycaakaA4XeE3kkjQw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7Wiqf9Y1D9ycaakaA4XeE3kkjQw.jpg 700w\",style:{aspectRatio:\"700 / 700\"},width:\"350\"}),/*#__PURE__*/r(\"p\",{children:[\"Blake Griffin had a partial meniscectomy in college and another during his NBA career.\\xa0He managed to return to professional basketball, demonstrating the potential for athletes to regain high performance levels post-surgery.\",/*#__PURE__*/e(i,{href:\"https://www.reddit.com/r/chicagobulls/comments/31ki8b/nba_players_who_have_had_a_meniscectomy/?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"sKg1pM28E\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(n.a,{children:\"Reddit\"})})]}),/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]})]});export const richText54=/*#__PURE__*/r(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is the Meniscus, and Why is it Important for Joint Function?\"}),/*#__PURE__*/e(\"img\",{alt:\"Meniscus\",className:\"framer-image\",height:\"310\",src:\"https://framerusercontent.com/images/zOFKLlngnsAbxUAMg9HDoj4tT6I.png\",srcSet:\"https://framerusercontent.com/images/zOFKLlngnsAbxUAMg9HDoj4tT6I.png?scale-down-to=512 512w,https://framerusercontent.com/images/zOFKLlngnsAbxUAMg9HDoj4tT6I.png 672w\",style:{aspectRatio:\"672 / 621\"},width:\"336\"}),/*#__PURE__*/r(\"p\",{children:[\"The meniscus is a C-shaped piece of cartilage located between the thighbone (femur) and shinbone (tibia) in your knee. Each knee has two menisci\u2014one on the inside (medial) and one on the outside (lateral). They act as\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"shock absorbers\"}),\",\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"stabilizers\"}),\", and\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"lubricators\"}),\"\\xa0for the joint.\"]}),/*#__PURE__*/e(\"p\",{children:\"When the meniscus is torn\u2014whether from sports, injury, or gradual wear\u2014it can lead to pain, swelling, locking of the knee, and long-term issues like arthritis if left untreated.\"}),/*#__PURE__*/r(\"h2\",{children:[/*#__PURE__*/e(\"strong\",{children:\"How is \"}),\"Meniscal \",/*#__PURE__*/e(\"strong\",{children:\"Repair Performed?\"})]}),/*#__PURE__*/r(\"p\",{children:[\"Meniscal repair is a minimally invasive procedure done through\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"arthroscopy\"}),\", where a camera and specialized tools are inserted into small incisions around the knee. Unlike traditional partial meniscectomy (removal of the damaged tissue), meniscal repair\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"preserves the meniscus\"}),\", which is better for long-term knee health.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Advanced Surgical Techniques and Technologies\"}),/*#__PURE__*/r(\"p\",{children:[\"Modern meniscal repair benefits from\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"cutting-edge devices\"}),\"\\xa0that allow for stronger, more precise repairs\u2014even in difficult-to-reach areas. Our surgeons use the latest technologies tailored to your specific tear:\"]}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"NOVOSTITCH\\xae Pro Meniscal Repair System\"}),/*#__PURE__*/e(\"br\",{}),\"This device enables surgeons to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"stitch horizontally or vertically inside the joint\"}),\"\u2014ideal for complex or \u201Cbucket-handle\u201D tears. It allows for\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"360\\xb0 access\"}),\"\\xa0to the tear site with minimal trauma to surrounding tissue.\"]}),/*#__PURE__*/e(\"img\",{alt:\"NOVOSTITCH\\xae Pro Meniscal Repair System\",className:\"framer-image\",height:\"288\",src:\"https://framerusercontent.com/images/p8qqTwAyof4KyAK8BHNcdNr6QHY.jpg\",srcSet:\"https://framerusercontent.com/images/p8qqTwAyof4KyAK8BHNcdNr6QHY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p8qqTwAyof4KyAK8BHNcdNr6QHY.jpg 981w\",style:{aspectRatio:\"981 / 577\"},width:\"490\"})]})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"FAST-FIX\\xae 360 Meniscal Repair System\"}),/*#__PURE__*/e(\"br\",{}),\"Known for its\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"all-inside\"}),\"\\xa0approach, FAST-FIX allows the surgeon to\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"secure the meniscus from within the joint\"}),\", reducing the need for additional incisions. It features pre-tied knots and delivery needles for faster, reliable healing.\"]}),/*#__PURE__*/e(\"img\",{alt:\"FAST-FIX\\xae 360 Meniscal Repair System\",className:\"framer-image\",height:\"288\",src:\"https://framerusercontent.com/images/YsSGLU4tqrfr0CKCfOhAsVYHAw.jpg\",srcSet:\"https://framerusercontent.com/images/YsSGLU4tqrfr0CKCfOhAsVYHAw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YsSGLU4tqrfr0CKCfOhAsVYHAw.jpg 981w\",style:{aspectRatio:\"981 / 577\"},width:\"490\"})]})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/r(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"JuggerStitch\u2122 Meniscal Repair Device\"}),/*#__PURE__*/e(\"br\",{}),\"This is a\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"knotless suture implant\"}),\"\\xa0designed for superior fixation strength. Its design allows for\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"tight tissue compression\"}),\"\\xa0while reducing risks of irritation from bulky knots. It\u2019s especially beneficial for athletes and active individuals.\"]})})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"h3\",children:[/*#__PURE__*/r(\"h3\",{children:[\"Stephen Curry\\xa0\",/*#__PURE__*/e(\"em\",{children:\"\u2013 NBA\"})]}),/*#__PURE__*/e(\"img\",{alt:\"Stephen Curry\\xa0\u2013 NBA\",className:\"framer-image\",height:\"350\",src:\"https://framerusercontent.com/images/zY0fzals8fDixuBCG3Hd7zX6a8.jpg\",srcSet:\"https://framerusercontent.com/images/zY0fzals8fDixuBCG3Hd7zX6a8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zY0fzals8fDixuBCG3Hd7zX6a8.jpg 700w\",style:{aspectRatio:\"700 / 700\"},width:\"350\"}),/*#__PURE__*/e(\"p\",{children:\"The Golden State Warriors star underwent meniscus surgery during his college years at Davidson. He returned to become a two-time MVP and multiple NBA champion, showing that full recovery is possible even in high-impact sports.\"})]})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/r(\"li\",{\"data-preset-tag\":\"h3\",children:[/*#__PURE__*/r(\"h3\",{children:[\"Roger Federer\\xa0\",/*#__PURE__*/e(\"em\",{children:\"\u2013 Tennis\"})]}),/*#__PURE__*/e(\"img\",{alt:\"Roger Federer\\xa0\u2013 Tennis\",className:\"framer-image\",height:\"350\",src:\"https://framerusercontent.com/images/08qQmtsbJuMY639z0HjebYDJhQc.jpg\",srcSet:\"https://framerusercontent.com/images/08qQmtsbJuMY639z0HjebYDJhQc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/08qQmtsbJuMY639z0HjebYDJhQc.jpg 700w\",style:{aspectRatio:\"700 / 700\"},width:\"350\"}),/*#__PURE__*/e(\"p\",{children:\"The Swiss tennis legend had surgery to repair a torn meniscus in 2016. He returned to win multiple titles afterward, illustrating that even for sports requiring explosive lateral movement, recovery is achievable.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})})]});\nexport const __FramerMetadata__ = {\"exports\":{\"richText3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText39\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText48\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText44\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText32\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText45\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText26\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText52\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText23\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText30\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText41\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText51\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText37\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText40\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText29\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText38\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText54\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText36\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText27\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText34\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText31\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText43\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText49\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText50\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText47\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText33\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText53\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText25\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText24\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText46\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText35\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText28\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText42\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,SAAW,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "richText", "u", "x", "p", "richText1", "richText2", "richText3", "richText4", "richText5", "richText6", "richText7", "richText8", "richText9", "richText10", "richText11", "richText12", "richText13", "richText14", "richText15", "richText16", "richText17", "richText18", "richText19", "richText20", "richText21", "richText22", "richText23", "richText24", "richText25", "richText26", "richText27", "richText28", "richText29", "richText30", "richText31", "richText32", "richText33", "richText34", "richText35", "richText36", "ComponentPresetsConsumer", "r", "Youtube", "Link", "motion", "richText37", "richText38", "richText39", "richText40", "richText41", "richText42", "richText43", "richText44", "richText45", "richText46", "richText47", "richText48", "richText49", "richText50", "richText51", "richText52", "richText53", "richText54", "__FramerMetadata__"]
}
