/* CloudTen R1.8.11 — Mega-menu centering + Services directory viewport access
   Surgical override only. R1.8.10 remains authoritative for layout, interaction and content. */

@media (min-width:921px){
  /*
     Root cause of the left-shift:
     the Tailwind utility class -translate-x-[38%] applies the modern CSS `translate` longhand,
     while R1.8.10 also applies transform: translate(-50%, ...). Both translations are additive.
     Reset only the stale longhand so R1.8.10's intended -50% transform centers the 70vw panel.
  */
  header.cloudten-global-header.sticky nav[aria-label="Primary navigation"] > .group > div,
  body.cloudten-global-header-r185 > header.sticky nav[aria-label="Primary navigation"] > .group > div{
    translate:none!important;
  }

  /* Services page directory: preserve the approved sticky sidebar, but make all links
     reachable on short desktop viewports through a contained internal scroll. */
  nav[aria-label="Services on this page"]{
    max-height:calc(100vh - 14rem);
    overflow-y:auto;
    overscroll-behavior:contain;
    scrollbar-gutter:stable;
    scrollbar-width:thin;
    scrollbar-color:#9ccfe8 transparent;
    padding-right:.25rem;
  }
  nav[aria-label="Services on this page"]::-webkit-scrollbar{width:7px}
  nav[aria-label="Services on this page"]::-webkit-scrollbar-track{background:transparent}
  nav[aria-label="Services on this page"]::-webkit-scrollbar-thumb{background:#9ccfe8;border-radius:999px}
}
