/* CMD Connect overrides (replaces behaviour of the GoDaddy Website Builder runtime) */

/* Desktop top menu: the builder's script revealed these links after measuring the header */
[data-ux="Nav"] [data-ux="ListItemInline"] {
  visibility: visible;
}

/* "More" overflow menu is not needed: all top-level pages fit in the header */
[data-ux="Nav"] [data-ux="ListItemInline"]:has([data-aid="NAV_MORE"]) {
  display: none;
}

/* Let the menu use the space next to the logo and keep it on one line */
[data-ux="Block"]:has(> [data-ux="Block"] > [data-ux="Nav"]) {
  flex: 1 1 auto;
  max-width: none;
}
[data-ux="Nav"] ul {
  white-space: nowrap;
}
@media (max-width: 1199px) {
  [data-ux="Nav"] [data-ux="ListItemInline"] {
    padding-left: 18px;
  }
}

/* Footer: centre everything. The right-hand column held the removed "Powered by GoDaddy" link. */
[role="contentinfo"] [data-ux="GridCell"]:not(:has([data-ux="FooterDetails"])) {
  display: none;
}
[role="contentinfo"] [data-ux="GridCell"] {
  flex: 1 1 100%;
  max-width: 100%;
}
[role="contentinfo"] [data-ux="NavFooter"],
[role="contentinfo"] [data-ux="NavFooter"] ul,
[role="contentinfo"] [data-ux="FooterText"],
[role="contentinfo"] [data-ux="FooterText"] *,
[role="contentinfo"] [data-ux="FooterDetails"],
[role="contentinfo"] [data-ux="FooterDetails"] * {
  text-align: center;
  justify-content: center;
}
