{"id":"page-ef05c66451","pageData":{},"templateName":"empty-page","contentLanguage":"en","cssClassNames":"page basicpage","hideGSightSurvey":true,"brandSlug":"UNC Health","defaultMetaSiteName":"UNC Health","siteURL":"https://www.unchealth.org","mainSchemaHtml":"<script type=\"application/ld+json\" id=\"mainSchema\"></script>","customSchemaHtml":"<script type=\"application/ld+json\" id=\"customSchema\"></script>","bodyBottomGlobal":"<script>\r\n  function getLiveChatConfig() {\r\n    const phone =\r\n      \"800-594-8624 (toll-free) or locally at 984-974-2222 Mon. – Thurs., 8:00 AM – 5:00 PM and Fri., 8:00 AM – 11:30 AM.\";\r\n    const nebulaURL = \"https://livechat-livechat.app.st-882.epiccloud.io\";\r\n    const chatScriptURL =\r\n      \"https://livechat-web-client.app.st-882.epiccloud.io/assets/epic-live-chat.es.js\";\r\n    const apiKey =\r\n      \"AAEAAZmakTnG4EHUADF7IlNpdGVJZCI6IjViZmQyYTM4LTUyZjItNDMzZS04NmI2LTdiZTg1NzM5YWFmZCJ9hM+rEbw4ueEid0MN5b0mjsOLTtWsrCjU6rWqKEQwR2Sw+bndAQw0Iw==\";\r\n\r\n    const branding = {\r\n      primaryColor: \"#004263\",\r\n      fontFamily: \"Muller, Arial, sans-serif\",\r\n      minimizedChatTitle: \"How can we help?\",\r\n      liveChatTitle: \"UNC Health Billing Help\",\r\n      organizationImageURL:\r\n        \"https://www.uncmedicalcenter.org/app/files/public/7453/img-system-systemlogo.png\",\r\n      organizationImageDescriptor: \"UNC Health logo\",\r\n    };\r\n\r\n    return { phone, nebulaURL, chatScriptURL, apiKey, branding };\r\n  }\r\n</script>\r\n\r\n<script>\r\n  (function () {\r\n    const containerId = \"lcWidget\";\r\n\r\n    // ✅ Show chat on these pages (exact “records-insurance” routes)\r\n    const CHAT_PATHS = new Set([\r\n      \"/records-insurance/pay-my-bill\",\r\n      \"/records-insurance/financial-assistance-programs\",\r\n      \"/records-insurance/insurance\",\r\n      \"/records-insurance/billing-insurance-terminology\",\r\n      \"/records-insurance/price-estimates\",\r\n      \"/records-insurance/standard-charges\",\r\n    ]);\r\n\r\n    let scriptInjected = false;\r\n    let widgetRendered = false;\r\n\r\n    function normalizePath(rawPath) {\r\n      let p = (rawPath || \"/\")\r\n        // remove query/hash fragments\r\n        .split(\"?\")[0]\r\n        .split(\"#\")[0]\r\n        // convert any weird whitespace (including NBSP) and trim\r\n        .replace(/\\u00A0/g, \" \")\r\n        .trim()\r\n        // drop .html if present\r\n        .replace(/\\.html$/, \"\");\r\n\r\n      // drop trailing slash (except root)\r\n      if (p.length > 1) p = p.replace(/\\/+$/, \"\");\r\n\r\n      // If we're on an AEM content path, reduce to the “pretty” portion\r\n      // Example: /content/unchealth/us/en/records-insurance/insurance  -> /records-insurance/insurance\r\n      const idx = p.indexOf(\"/records-insurance/\");\r\n      if (idx !== -1) {\r\n        p = p.slice(idx);\r\n      }\r\n\r\n      return p;\r\n    }\r\n\r\n    function shouldShowChatNow() {\r\n      const current = normalizePath(window.location.pathname);\r\n      return CHAT_PATHS.has(current);\r\n    }\r\n\r\n    function getContainer() {\r\n      return document.getElementById(containerId);\r\n    }\r\n\r\n    function ensureContainer() {\r\n      if (getContainer()) return;\r\n\r\n      const container = document.createElement(\"div\");\r\n      container.id = containerId;\r\n      container.style.position = \"fixed\";\r\n      container.style.right = \"20px\";\r\n      container.style.bottom = \"20px\";\r\n      container.style.zIndex = \"9999\";\r\n      document.body.appendChild(container);\r\n    }\r\n\r\n    function showChat() {\r\n      ensureContainer();\r\n\r\n      const container = getContainer();\r\n      if (container) container.style.display = \"block\";\r\n\r\n      document.querySelectorAll(\"iframe[src*='epiccloud.io']\").forEach((el) => {\r\n        el.style.display = \"block\";\r\n        el.style.visibility = \"visible\";\r\n        el.style.pointerEvents = \"auto\";\r\n      });\r\n    }\r\n\r\n    function hideChat() {\r\n      const container = getContainer();\r\n      if (container) container.style.display = \"none\";\r\n\r\n      document.querySelectorAll(\"iframe[src*='epiccloud.io']\").forEach((el) => {\r\n        el.style.display = \"none\";\r\n        el.style.visibility = \"hidden\";\r\n        el.style.pointerEvents = \"none\";\r\n      });\r\n    }\r\n\r\n    function renderWidgetWhenReady() {\r\n      const liveChatProps = getLiveChatConfig();\r\n\r\n      let tries = 0;\r\n      const t = setInterval(() => {\r\n        tries++;\r\n\r\n        if (typeof window.renderLiveChat === \"function\") {\r\n          clearInterval(t);\r\n          try {\r\n            window.renderLiveChat(containerId, liveChatProps);\r\n            widgetRendered = true;\r\n          } catch (e) {\r\n            // ignore and still show\r\n          }\r\n          showChat();\r\n          return;\r\n        }\r\n\r\n        if (tries >= 40) clearInterval(t);\r\n      }, 100);\r\n    }\r\n\r\n    function injectScriptOnceAndRender() {\r\n      const liveChatProps = getLiveChatConfig();\r\n      const endpoint = liveChatProps.chatScriptURL;\r\n      if (!endpoint) return;\r\n\r\n      if (scriptInjected) {\r\n        if (widgetRendered) showChat();\r\n        else renderWidgetWhenReady();\r\n        return;\r\n      }\r\n\r\n      const existing = document.querySelector(\r\n        `script[type=\"module\"][src=\"${endpoint}\"]`\r\n      );\r\n      if (existing) {\r\n        scriptInjected = true;\r\n        renderWidgetWhenReady();\r\n        return;\r\n      }\r\n\r\n      const script = document.createElement(\"script\");\r\n      script.type = \"module\";\r\n      script.src = endpoint;\r\n      script.async = true;\r\n\r\n      script.onload = function () {\r\n        scriptInjected = true;\r\n        renderWidgetWhenReady();\r\n      };\r\n\r\n      document.body.appendChild(script);\r\n    }\r\n\r\n    function onRouteChange() {\r\n      if (shouldShowChatNow()) {\r\n        ensureContainer();\r\n        injectScriptOnceAndRender();\r\n        showChat();\r\n      } else {\r\n        hideChat();\r\n      }\r\n    }\r\n\r\n    // keep your old API name (hide is safer than remove)\r\n    window.removeLiveChatWidget = hideChat;\r\n\r\n    /* -----------------------------\r\n       SPA NAVIGATION DETECTION\r\n    ------------------------------*/\r\n    function installSpaNavHooksOnce() {\r\n      if (window.__liveChatSpaHookInstalled) return;\r\n      window.__liveChatSpaHookInstalled = true;\r\n\r\n      const fire = () => window.dispatchEvent(new Event(\"spa:navigation\"));\r\n\r\n      const _pushState = history.pushState;\r\n      history.pushState = function () {\r\n        const ret = _pushState.apply(this, arguments);\r\n        fire();\r\n        return ret;\r\n      };\r\n\r\n      const _replaceState = history.replaceState;\r\n      history.replaceState = function () {\r\n        const ret = _replaceState.apply(this, arguments);\r\n        fire();\r\n        return ret;\r\n      };\r\n\r\n      window.addEventListener(\"popstate\", fire);\r\n      window.addEventListener(\"hashchange\", fire);\r\n    }\r\n\r\n    function init() {\r\n      installSpaNavHooksOnce();\r\n      window.addEventListener(\"spa:navigation\", onRouteChange);\r\n      onRouteChange();\r\n    }\r\n\r\n    if (document.readyState === \"loading\") {\r\n      document.addEventListener(\"DOMContentLoaded\", init);\r\n    } else {\r\n      init();\r\n    }\r\n  })();\r\n</script>\r\n","pagePath":"/lp/unc-pediatric-plastic-and-reconstructive-surgery.model.json","thumbnail":"https://www.unchealth.org/etc.clientlibs/unchealth/clientlibs/clientlib-react/resources/logo1200x630.png","contentType":"general","url":"https://www.unchealth.org/lp/unc-pediatric-plastic-and-reconstructive-surgery","title":"UNC Pediatric Plastic and Reconstructive Surgery | North Carolina","tags":[],"schema":[],"language":"en",":type":"unchealth/components/core/page",":itemsOrder":["root"],":items":{"root":{":itemsOrder":["responsivegrid"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["marketing_campaign_h","page_title_banner","background","accordion","background_413010137","image_grid","marketing_campaign_f"],":items":{"marketing_campaign_h":{"id":"marketing-campaign-header-42d9e0f311","logoImage":{"id":"marketing-campaign-header-42d9e0f311","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","disableCsr":false,":type":"unchealth/components/content/marketing-campaign-header","dataLayer":{"marketing-campaign-header-42d9e0f311":{"@type":"unchealth/components/content/marketing-campaign-header","repo:modifyDate":"2026-02-20T13:55:18Z"}}},"logoLink":"/home","headerVariation":"cta","ctaLabel":"Schedule care","ctaDescriptiveText":"link to ways to schedule care page","ctaTarget":"_self","cta":{"label":"Schedule care","descriptiveText":"link to ways to schedule care page","href":null,"target":"_self","disableCsr":false},"disableCsr":false,":type":"unchealth/components/content/marketing-campaign-header","dataLayer":{"marketing-campaign-header-42d9e0f311":{"@type":"unchealth/components/content/marketing-campaign-header","repo:modifyDate":"2026-02-20T13:55:18Z"}}},"page_title_banner":{"id":"page-title-banner-2ba1bbc170","headline":"Advanced pediatric plastic and reconstructive surgery","description":"<p>A trusted referral destination for complex pediatric craniofacial, congenital and reconstructive needs</p>\r\n","image":{"id":"page-title-banner-2ba1bbc170","altText":"family cooks together at a kitchen counter, young son in the middle of mom and dad","defaultImgSrc":"/content/dam/unchealth/images/marketing-landing-pages/img-clp-weight-loss-family-healthy-dinner.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/images/marketing-landing-pages/img-clp-weight-loss-family-healthy-dinner.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/marketing-landing-pages/img-clp-weight-loss-family-healthy-dinner.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/marketing-landing-pages/img-clp-weight-loss-family-healthy-dinner.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/marketing-landing-pages/img-clp-weight-loss-family-healthy-dinner.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/marketing-landing-pages/img-clp-weight-loss-family-healthy-dinner.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/marketing-landing-pages/img-clp-weight-loss-family-healthy-dinner.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/marketing-landing-pages/img-clp-weight-loss-family-healthy-dinner.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/marketing-landing-pages/img-clp-weight-loss-family-healthy-dinner.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/marketing-landing-pages/img-clp-weight-loss-family-healthy-dinner.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/marketing-landing-pages/img-clp-weight-loss-family-healthy-dinner.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/marketing-landing-pages/img-clp-weight-loss-family-healthy-dinner.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/marketing-landing-pages/img-clp-weight-loss-family-healthy-dinner.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":416,"width":500,"disableCsr":false,":type":"unchealth/components/content/page-title-banner","appliedCssClassNames":"bottomSpacing--small","dataLayer":{"page-title-banner-2ba1bbc170":{"@type":"unchealth/components/content/page-title-banner","repo:modifyDate":"2026-05-22T13:43:16Z"}}},"cta":{"label":"Refer a patient","descriptiveText":"#","href":"#refer","target":"_self","disableCsr":false},"secondaryCta":{"label":null,"descriptiveText":null,"href":null,"target":"_self","disableCsr":false},":type":"unchealth/components/content/page-title-banner","appliedCssClassNames":"bottomSpacing--small","dataLayer":{"page-title-banner-2ba1bbc170":{"@type":"unchealth/components/content/page-title-banner","repo:modifyDate":"2026-05-22T13:43:16Z"}}},"background":{"id":"background-e2c7f83a40",":type":"unchealth/components/containers/background",":items":{"rich_text":{"id":"rich-text-4fc01619af","content":"<h2>Why choose UNC Children’s?</h2>\r\n<p>UNC Children’s Plastic &amp; Reconstructive Surgery is a trusted referral destination for children with congenital differences, craniofacial conditions and complex reconstructive needs. As a Level 1 pediatric trauma center, UNC Children’s is equipped to provide comprehensive, around-the-clock care for seriously injured children. We provide coordinated evaluation and surgical care, partnering with referring clinicians to support timely access and continuity of care.</p>\r\n<h3>A demonstrated commitment to children’s health</h3>\r\n<p>Families benefit from a multidisciplinary approach that supports children from consultation through staged reconstruction and long-term follow-up. We collaborate with referring providers to coordinate records, imaging and perioperative planning and to keep care plans aligned over time.</p>\r\n","cta":{"id":"rich-text-4fc01619af","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"rich-text-4fc01619af":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-21T14:19:04Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"rich-text-4fc01619af":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-21T14:19:04Z"}}}},":itemsOrder":["rich_text"],"appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"background-e2c7f83a40":{"@type":"unchealth/components/containers/background","repo:modifyDate":"2026-05-21T14:17:17Z"}}},"accordion":{"headline":"When to refer","headingLevel":"h2","singleExpansion":false,"appliedCssClassNames":"topSpacing--small bottomSpacing--small",":itemsOrder":["rich_text","item_1779373193690","item_1779373195498","item_1779373197935","item_1779373199862","item_1779373201648","item_1779373203857"],":items":{"rich_text":{"id":"rich-text-2707cf60db","content":"<p>Refer patients with cleft palate and related craniofacial anomalies, including ear deformities and orthognathic problems, for coordinated surgical care and long-term management</p>\r\n","cta":{"id":"rich-text-2707cf60db","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-2707cf60db":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-21T14:20:53Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-2707cf60db":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-21T14:20:53Z"}},"cq:panelTitle":"Cleft lip, cleft palate and craniofacial differences "},"item_1779373193690":{"id":"rich-text-84d334e91f","content":"<p>Evaluation and surgical treatment for craniosynostosis, positional plagiocephaly and complex head shape concerns to support healthy skull and brain development</p>\r\n","cta":{"id":"rich-text-84d334e91f","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-84d334e91f":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-21T14:21:00Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-84d334e91f":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-21T14:21:00Z"}},"cq:panelTitle":"Craniosynostosis and skull shape conditions "},"item_1779373195498":{"id":"rich-text-86a4c11ff8","content":"<p>Specialized reconstructive care for patients with craniofacial syndromes, including Apert, Pfeiffer, Crouzon, Saethre-Chotzen, Carpenter and Muenke. Other craniofacial syndromes include Goldenhar, velocardiofacial, craniofacial microsomia and Treacher-Collins</p>\r\n","cta":{"id":"rich-text-86a4c11ff8","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-86a4c11ff8":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-21T14:21:08Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-86a4c11ff8":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-21T14:21:08Z"}},"cq:panelTitle":"Craniofacial syndromes "},"item_1779373197935":{"id":"rich-text-0741849c85","content":"<p>Referral based surgical care for complex and simple syndactyls, finger duplication and congenital upper-extremity differences</p>\r\n","cta":{"id":"rich-text-0741849c85","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-0741849c85":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-21T14:21:16Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-0741849c85":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-21T14:21:16Z"}},"cq:panelTitle":"Congenital hand and limb differences "},"item_1779373199862":{"id":"rich-text-8f3fe53f8c","content":"<p>Diagnosis and surgical management of hemangiomas, lymphatic malformations, arteriovenous malformations and port wine stains</p>\r\n","cta":{"id":"rich-text-8f3fe53f8c","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-8f3fe53f8c":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-21T14:21:23Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-8f3fe53f8c":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-21T14:21:23Z"}},"cq:panelTitle":"Vascular anomalies and birthmarks "},"item_1779373201648":{"id":"rich-text-909eae610c","content":"<p>Diagnosis and management of skin conditions such as giant congenital nevi, nevus sebaceous, cutis aplasia, cystic lesions, hypertrophic scars, keloids, neurofibromas and pediatric burn injuries</p>\r\n","cta":{"id":"rich-text-909eae610c","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-909eae610c":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-21T14:21:30Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-909eae610c":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-21T14:21:30Z"}},"cq:panelTitle":"Skin conditions and pediatric burn injuries "},"item_1779373203857":{"id":"rich-text-0fc90b27b6","content":"<p>Refer patients with breast/chest concerns such as gynecomastia for evaluation and surgical management when appropriate</p>\r\n","cta":{"id":"rich-text-0fc90b27b6","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-0fc90b27b6":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-21T14:21:37Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-0fc90b27b6":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-21T14:21:37Z"}},"cq:panelTitle":"Breast/chest conditions "}},":type":"unchealth/components/containers/accordion"},"background_413010137":{"id":"background-3f90e83b93",":type":"unchealth/components/containers/background",":items":{"content_grid":{"id":"content-grid-b95eff41da","gridGap":"default","columnCount":2,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show More","visibilityCtaCollapseLabel":"Show Less","visibilityCtaStyle":"secondary","headingLevel":"h2","elementId":"refer",":type":"unchealth/components/containers/content-grid",":items":{"item_1779457123686":{"id":"classic-card-bad5a586a2","image":{"id":"classic-card-bad5a586a2","altText":"Provider gives pediatric patient a high-five","defaultImgSrc":"/content/dam/unchealth/wordpress/GettyImages-1266492939-healthtalk.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"https://www.uncmedicalcenter.org/uncmc/professional-education-and-services/refer-a-patient/","target":"_blank","defaultWebPSrcSet":["/content/dam/unchealth/wordpress/GettyImages-1266492939-healthtalk.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/wordpress/GettyImages-1266492939-healthtalk.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/wordpress/GettyImages-1266492939-healthtalk.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/wordpress/GettyImages-1266492939-healthtalk.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/wordpress/GettyImages-1266492939-healthtalk.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/wordpress/GettyImages-1266492939-healthtalk.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/wordpress/GettyImages-1266492939-healthtalk.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/wordpress/GettyImages-1266492939-healthtalk.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/wordpress/GettyImages-1266492939-healthtalk.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/wordpress/GettyImages-1266492939-healthtalk.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/wordpress/GettyImages-1266492939-healthtalk.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/wordpress/GettyImages-1266492939-healthtalk.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":500,"width":900,"disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-bad5a586a2":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-22T13:40:23Z"}}},"headline":"Refer a patient ","headlineLevel":"h2","description":"<p>Submit a referral and we’ll coordinate next steps.</p>\r\n","cta":{"id":"classic-card-bad5a586a2","label":"Refer now","descriptiveText":"Link to referall instructions","href":"https://www.uncmedicalcenter.org/uncmc/professional-education-and-services/refer-a-patient/","target":"_blank","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-bad5a586a2":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-22T13:40:23Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-bad5a586a2":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-22T13:40:23Z"}}},"item_1779457126102":{"id":"classic-card-3159ec7ea0","image":{"id":"classic-card-3159ec7ea0","altText":"Provider talks to smiling toddler patient","defaultImgSrc":"/content/dam/unchealth/wordpress/GettyImages-1137594944-healthtalk.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"https://unchealthfoundation.org/","target":"_blank","defaultWebPSrcSet":["/content/dam/unchealth/wordpress/GettyImages-1137594944-healthtalk.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/wordpress/GettyImages-1137594944-healthtalk.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/wordpress/GettyImages-1137594944-healthtalk.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/wordpress/GettyImages-1137594944-healthtalk.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/wordpress/GettyImages-1137594944-healthtalk.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/wordpress/GettyImages-1137594944-healthtalk.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/wordpress/GettyImages-1137594944-healthtalk.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/wordpress/GettyImages-1137594944-healthtalk.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/wordpress/GettyImages-1137594944-healthtalk.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/wordpress/GettyImages-1137594944-healthtalk.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/wordpress/GettyImages-1137594944-healthtalk.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/wordpress/GettyImages-1137594944-healthtalk.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":500,"width":900,"disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-3159ec7ea0":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-22T13:40:57Z"}}},"headline":"Make a gift","headlineLevel":"h2","description":"<p>Gifts made to the UNC Health Foundation support pediatric specialty care, research and programs.</p>\r\n","cta":{"id":"classic-card-3159ec7ea0","label":"Make a gift","descriptiveText":"Link to UNC Health Foundation site","href":"https://unchealthfoundation.org/","target":"_blank","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-3159ec7ea0":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-22T13:40:57Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-3159ec7ea0":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-22T13:40:57Z"}}}},":itemsOrder":["item_1779457123686","item_1779457126102"],"appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"content-grid-b95eff41da":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-05-22T13:43:06Z"}}}},":itemsOrder":["content_grid"],"appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"background-3f90e83b93":{"@type":"unchealth/components/containers/background","repo:modifyDate":"2026-05-21T14:21:59Z"}}},"image_grid":{"id":"image-grid-6c6b1cb7f0","headline":"Comprehensive pediatric reconstructive expertise ","description":"<p>UNC Children’s Plastic &amp; Reconstructive Surgery provides specialized surgical care for children with congenital differences, craniofacial conditions and complex reconstructive needs. Families can expect coordinated evaluation, clear communication and follow-up planning that supports each child’s growth and development.</p>\r\n","images":[{"id":"-321510a510","altText":"Father and toddler son play blocks","defaultImgSrc":"/content/dam/unchealth/images/newsletters/unc-health-talk/2025-11-november/HealthTalk_AutismCauses.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/images/newsletters/unc-health-talk/2025-11-november/HealthTalk_AutismCauses.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/newsletters/unc-health-talk/2025-11-november/HealthTalk_AutismCauses.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/newsletters/unc-health-talk/2025-11-november/HealthTalk_AutismCauses.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/newsletters/unc-health-talk/2025-11-november/HealthTalk_AutismCauses.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/newsletters/unc-health-talk/2025-11-november/HealthTalk_AutismCauses.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/newsletters/unc-health-talk/2025-11-november/HealthTalk_AutismCauses.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/newsletters/unc-health-talk/2025-11-november/HealthTalk_AutismCauses.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/newsletters/unc-health-talk/2025-11-november/HealthTalk_AutismCauses.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/newsletters/unc-health-talk/2025-11-november/HealthTalk_AutismCauses.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/newsletters/unc-health-talk/2025-11-november/HealthTalk_AutismCauses.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/newsletters/unc-health-talk/2025-11-november/HealthTalk_AutismCauses.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/newsletters/unc-health-talk/2025-11-november/HealthTalk_AutismCauses.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":400,"width":600,"disableCsr":false,":type":"nt:unstructured","dataLayer":{"-321510a510":{"@type":"nt:unstructured"}}}],"cta":{"id":"image-grid-6c6b1cb7f0","style":"secondary","target":"_self","disableCsr":false,":type":"unchealth/components/content/image-grid","appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"image-grid-6c6b1cb7f0":{"@type":"unchealth/components/content/image-grid","repo:modifyDate":"2026-05-22T13:36:30Z"}}},":type":"unchealth/components/content/image-grid","appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"image-grid-6c6b1cb7f0":{"@type":"unchealth/components/content/image-grid","repo:modifyDate":"2026-05-22T13:36:30Z"}}},"marketing_campaign_f":{"id":"marketing-campaign-footer-563aef973f","copyright":"©2026 UNC Health. \r\nAll rights reserved.",":type":"unchealth/components/content/marketing-campaign-footer","dataLayer":{"marketing-campaign-footer-563aef973f":{"@type":"unchealth/components/content/marketing-campaign-footer","repo:modifyDate":"2024-12-23T16:08:22Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}},":hierarchyType":"page",":path":"/content/unchealth/us/en/lp/unc-pediatric-plastic-and-reconstructive-surgery","dataLayer":{"page-ef05c66451":{"@type":"unchealth/components/core/page","repo:modifyDate":"2026-05-22T13:43:19Z"}}}