/* Shared mobile navigation behaviour for all design pages (<=1080px):
   collapsed accordion dropdowns, tight spacing, scrollable panel that clears
   the mobile CTA bar. Top/bottom offsets are set precisely by ukit-nav.js. */
@media (max-width: 1080px) {
  .site-header .nav-menu.open {
    right: 12px !important;
    left: 12px !important;
    max-height: none !important;
    height: auto !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    padding: 6px 6px 14px !important;
    border-radius: 16px !important;
    gap: 0 !important;
    overscroll-behavior: contain;
  }
  /* Accordion: dropdowns collapsed until the parent item is opened */
  .site-header .nav-item > .nav-dropdown { display: none !important; }
  .site-header .nav-item.open > .nav-dropdown { display: flex !important; flex-direction: column !important; }
  .site-header .nav-dropdown a { display: block !important; }
  .site-header .nav-item > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .site-header .nav-item > a .caret { transition: transform .2s ease; flex: none; }
  .site-header .nav-item.open > a .caret { transform: rotate(180deg); }
  .site-header .nav-menu > a,
  .site-header .nav-menu .nav-item > a { padding: 11px 12px !important; }
  .site-header .nav-dropdown { padding: 0 0 6px 14px !important; }
  .site-header .nav-dropdown a { padding: 8px 12px !important; }
}

/* Footer column titles: were <h3>, now non-heading .footer-heading (keeps the look) */
.site-footer .footer-heading { margin: 0 0 18px; color: #46c6c3; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; line-height: 1.2; }
.site-footer .footer-social .footer-heading { margin: 0 0 14px; }

/* FAQ question is now an <h3> inside <summary> — keep it visually identical */
summary > h3 { margin: 0; padding: 0; font: inherit; color: inherit; letter-spacing: inherit; display: inline; }
/* flex-marker layout: keep question left, +/- marker right */
.faq-list summary, .ukit-faq-section summary, details summary { }
summary > h3 + span[aria-hidden] { margin-left: auto; }
/* "Still have questions?" is no longer a heading (was .ukit-faq-aside h3) */
.ukit-faq-aside .ukit-faq-aside-title { margin: 0; color: #fff; font-size: 25px; font-weight: 800; letter-spacing: -.02em; line-height: 1.25; }

/* Some FAQ lists carried BOTH an inline "+" span and a CSS ::after marker (double marker).
   Hide the redundant decorative span on ::after-based lists; the ::after gives the +/-. */
.ukit-faq-list summary > span[aria-hidden="true"] { display: none; }
