/* Explore Wifi self-host performance + mobile overrides */

/* Never hide text while waiting for web fonts */
html.wf-loading,
html.wf-loading * {
  color: inherit !important;
  animation: none !important;
}

/* Disable Squarespace entrance animations that keep content invisible until JS runs */
[data-animation-state],
[data-animation],
.sqs-animate,
.sqs-block[data-block-type] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  transition: none !important;
  animation: none !important;
}


/* Prevent horizontal scroll from full-bleed banners */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}



/* -------------------------------------------------------------------------- */
/* Header: logo + menu visible instantly (no delayed fade-in on load/nav)     */
/*                                                                            */
/* Squarespace clones #header into #showOnScrollWrapper for sticky-on-scroll. */
/* Instant-visible rules MUST be scoped to #siteWrapper only, or the sticky   */
/* clone (and fixed mobile toggle) stack on top of the real header.           */
/* -------------------------------------------------------------------------- */

/* Kill Squarespace header-anim (opacity 0 for ~0.7s then fade in) */
@keyframes header-anim {
  0%, 100% { opacity: 1; }
}
@-webkit-keyframes header-anim {
  0%, 100% { opacity: 1; }
}

/* Real page header only — show logo/nav immediately, no fade */
#siteWrapper #header,
#siteWrapper #header .header-inner,
#siteWrapper #logoWrapper,
#siteWrapper #logoImage,
#siteWrapper #logoImage img,
#siteWrapper #headerNav,
#siteWrapper #mainNavWrapper,
#siteWrapper #mainNavigation,
#siteWrapper #mainNavigation a,
#siteWrapper .nav-wrapper,
#siteWrapper .mobile-nav-toggle:not(.fixed-nav-toggle) {
  animation: none !important;
  -webkit-animation: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
  -webkit-transition: none !important;
}

/* Sticky header clone: stay hidden until theme adds .show after scroll.
   Children must NOT force visibility:visible — that overrides parent hide. */
.show-on-scroll-wrapper:not(.show) #header,
.show-on-scroll-wrapper:not(.show) #header .header-inner,
.show-on-scroll-wrapper:not(.show) #header #logoWrapper,
.show-on-scroll-wrapper:not(.show) #header #logoImage,
.show-on-scroll-wrapper:not(.show) #header #logoImage img,
.show-on-scroll-wrapper:not(.show) #header #headerNav,
.show-on-scroll-wrapper:not(.show) #header #mainNavWrapper,
.show-on-scroll-wrapper:not(.show) #header #mainNavigation,
.show-on-scroll-wrapper:not(.show) #header #mainNavigation a,
.show-on-scroll-wrapper:not(.show) #header .nav-wrapper,
.show-on-scroll-wrapper:not(.show) #header .mobile-nav-toggle {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media only screen and (min-width: 641px) {
  .show-on-scroll-wrapper:not(.show) #header {
    top: -20px !important;
  }
  .show-on-scroll-wrapper.show #header {
    top: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .show-on-scroll-wrapper.show #header .header-inner,
  .show-on-scroll-wrapper.show #header #logoImage,
  .show-on-scroll-wrapper.show #header #logoImage img,
  .show-on-scroll-wrapper.show #header #headerNav,
  .show-on-scroll-wrapper.show #header #mainNavWrapper,
  .show-on-scroll-wrapper.show #header #mainNavigation,
  .show-on-scroll-wrapper.show #header #mainNavigation a {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
    -webkit-animation: none !important;
  }
}

/* Fixed hamburger clone: only after scroll past header (theme: .fix-header-nav) */
body:not(.fix-header-nav) .mobile-nav-toggle.fixed-nav-toggle {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
body.fix-header-nav .mobile-nav-toggle.fixed-nav-toggle {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Image loader placeholders shouldn't leave content blank forever */
.loading,
img.loading,
figure.loading {
  opacity: 1 !important;
}



/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* Hero: show background + text together (no staggered fade-in)               */
/* -------------------------------------------------------------------------- */
.banner-thumbnail-wrapper #thumbnail,
.banner-thumbnail-wrapper figure.content-fill,
.banner-thumbnail-wrapper .desc-wrapper,
.banner-thumbnail-wrapper .desc-wrapper *,
.blog-item-wrapper .title-desc-wrapper {
  animation: none !important;
  -webkit-animation: none !important;
  opacity: 1 !important;
  transform: none !important;
  -webkit-transform: none !important;
}

/* Ensure overlay text is always readable on first paint */
.banner-thumbnail-wrapper .desc-wrapper {
  z-index: 100 !important;
  visibility: visible !important;
}

/* Banner / hero images — work without Squarespace ImageLoader JS             */
/* -------------------------------------------------------------------------- */
.banner-thumbnail-wrapper {
  background-color: #2a2a2a; /* fallback only; image should cover */
}

.banner-thumbnail-wrapper figure#thumbnail,
.banner-thumbnail-wrapper figure.content-fill {
  position: absolute !important;
  inset: 0 !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.banner-thumbnail-wrapper figure#thumbnail img,
.banner-thumbnail-wrapper figure.content-fill img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: 50% 50% !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}




/* -------------------------------------------------------------------------- */
/* Full-bleed banners: kill Squarespace #page side padding that causes white bars */
@media only screen and (max-width: 767px) {
  /* Theme sets #page { padding: 32px } / { 40px 20px } — that insets the hero */
  body.has-banner-image #page,
  body.collection-type-index #page {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body.has-banner-image #page #content,
  body.collection-type-index #page #content,
  body.has-banner-image #content.main-content,
  body.collection-type-index #content.main-content {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  body.has-banner-image .index-section,
  body.collection-type-index .index-section {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.has-banner-image .banner-thumbnail-wrapper,
  body.collection-type-index .banner-thumbnail-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    left: 0 !important;
    right: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  body.has-banner-image .banner-thumbnail-wrapper.has-description {
    min-height: 38vh !important;
    padding-top: 88px !important;
    padding-bottom: 40px !important;
  }

  /* Put horizontal padding back on page body content only (not the banner) */
  body.has-banner-image .index-section-wrapper.page-content > .content-inner,
  body.collection-type-index .index-section-wrapper.page-content > .content-inner,
  body.has-banner-image .content-inner.has-content,
  body.collection-type-index .content-inner.has-content {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }
}

/* Certification logos (pre-footer) — all pages                               */
/* -------------------------------------------------------------------------- */
.ew-cert-logos {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 520px;
  margin: 0.75rem auto 1rem;
  padding: 0 16px;
  box-sizing: border-box;
}

.ew-cert-logo {
  flex: 1 1 0;
  min-width: 0;
  max-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ew-cert-logo a {
  display: block;
  line-height: 0;
  width: 100%;
}

.ew-cert-logo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 88px !important;
  object-fit: contain !important;
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Services yellow checkmarks — force equal size on desktop.
   File Servers / Wifi Installation used padding-bottom:100% (others ~50%),
   so those two rendered roughly twice as tall. */
.sqs-block-image:has(img[src*="checkmark"]) .sqs-image-shape-container-element,
.sqs-block-image:has(img[data-src*="checkmark"]) .sqs-image-shape-container-element,
.sqs-block-image:has(img[data-image*="checkmark"]) .sqs-image-shape-container-element,
.sqs-block-image:has(img[alt*="checkmark"]) .sqs-image-shape-container-element {
  padding-bottom: 0 !important;
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  overflow: visible !important;
  position: relative !important;
}

.sqs-block-image:has(img[src*="checkmark"]) .sqs-block-image-figure,
.sqs-block-image:has(img[data-src*="checkmark"]) .sqs-block-image-figure,
.sqs-block-image:has(img[alt*="checkmark"]) .sqs-block-image-figure,
.sqs-block-image:has(img[src*="checkmark"]) .image-block-wrapper,
.sqs-block-image:has(img[data-src*="checkmark"]) .image-block-wrapper,
.sqs-block-image:has(img[alt*="checkmark"]) .image-block-wrapper {
  max-width: 32px !important;
  width: 32px !important;
  margin: 0 !important;
}

.sqs-block-image:has(img[src*="checkmark"]),
.sqs-block-image:has(img[data-src*="checkmark"]),
.sqs-block-image:has(img[alt*="checkmark"]) {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: 0 !important;
}

img[src*="checkmark"],
img[data-src*="checkmark"],
img[data-image*="checkmark"],
img[alt*="checkmark"] {
  object-fit: contain !important;
  position: static !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  display: block !important;
}

/* -------------------------------------------------------------------------- */
/* OTHER PAGES
/* -------------------------------------------------------------------------- */
/* OTHER PAGES ONLY — mobile layout improvements                              */
/* (excludes homepage so it stays as it was)                                  */
/* -------------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) {
    overflow-x: hidden;
  }

  /* Pad content only — never #page (that creates white bars around full-bleed banners) */
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .content-inner,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .main-content,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) #content {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .index-section-wrapper.page-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .index-section-wrapper.page-content > .content-inner {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .pre-footer-inner .sqs-layout,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .footer-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) #logoWrapper #logoImage img,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) #siteTitleWrapper #logoImage img,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) #logoImage img {
    max-height: 42px !important;
    max-width: 180px !important;
    width: auto !important;
    height: auto !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) #content img,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-block-image img {
    max-width: 100% !important;
  }

  /* Do not constrain banner/hero images */
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .banner-thumbnail-wrapper img {
    max-width: none !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) #content h1,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .page-content h1 {
    font-size: clamp(1.5rem, 7vw, 2.1rem) !important;
    line-height: 1.15 !important;
    letter-spacing: 1px !important;
    word-break: break-word;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) #content h2 {
    font-size: clamp(1.15rem, 5vw, 1.5rem) !important;
    line-height: 1.25 !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) #content h3 {
    font-size: clamp(0.95rem, 4vw, 1.15rem) !important;
    line-height: 1.3 !important;
  }

  /* Hide pure spacer blocks on non-home pages */
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .spacer-block {
    display: none !important;
  }

  /* Icon column (col-1) + text */
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    column-gap: 0.25rem;
    row-gap: 0.75rem;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 {
    float: none !important;
    width: 44px !important;
    max-width: 44px !important;
    min-width: 44px !important;
    flex: 0 0 44px !important;
    padding-left: 0 !important;
    padding-right: 6px !important;
    box-sizing: border-box !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-2 {
    display: none !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-3,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-7,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-9,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-11 {
    float: none !important;
    width: auto !important;
    flex: 1 1 calc(100% - 56px) !important;
    min-width: 0 !important;
    max-width: calc(100% - 48px) !important;
    padding-left: 0 !important;
    padding-right: 4px !important;
    box-sizing: border-box !important;
  }

  /* Services checkmarks: one pair per row on mobile.
     Two-per-row left the last check (Wifi Installation) sitting
     to the right of File Servers when the row had an odd count. */
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image img[src*="checkmark"]) > .sqs-col-3,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image img[data-src*="checkmark"]) > .sqs-col-3 {
    flex: 1 1 calc(100% - 56px) !important;
    min-width: calc(100% - 56px) !important;
    max-width: calc(100% - 48px) !important;
  }

  /* Force each checkmark + label onto its own mobile row (no side-by-side pairs) */
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(img[src*="checkmark"]) > .sqs-col-1,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(img[data-src*="checkmark"]) > .sqs-col-1 {
    flex: 0 0 44px !important;
    width: 44px !important;
    max-width: 44px !important;
  }
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(img[src*="checkmark"]) > .sqs-col-3,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(img[data-src*="checkmark"]) > .sqs-col-3,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(img[src*="checkmark"]) > .sqs-col-4,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(img[data-src*="checkmark"]) > .sqs-col-4 {
    flex: 1 1 calc(100% - 56px) !important;
    min-width: calc(100% - 56px) !important;
    max-width: 100% !important;
    width: auto !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-4:not(:has(.sqs-block-html)):not(:has(.sqs-block-image)):not(:has(.sqs-block-button)) {
    display: none !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 .sqs-image-shape-container-element {
    position: relative !important;
    padding-bottom: 0 !important;
    width: 36px !important;
    height: 36px !important;
    max-height: 36px !important;
    overflow: visible !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 .sqs-block-image-figure,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 .image-block-wrapper {
    max-width: 36px !important;
    width: 36px !important;
    margin: 0 !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 img {
    position: static !important;
    inset: auto !important;
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    object-fit: contain !important;
    display: block !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 .sqs-block-image {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) img[src*="checkmark"],
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) img[data-src*="checkmark"],
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) img[data-image*="checkmark"],
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) img[alt*="checkmark"] {
    position: static !important;
    width: 26px !important;
    height: 26px !important;
    max-width: 26px !important;
    max-height: 26px !important;
    object-fit: contain !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-block-image:has(img[src*="checkmark"]) .sqs-image-shape-container-element,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-block-image:has(img[data-src*="checkmark"]) .sqs-image-shape-container-element,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-block-image:has(img[alt*="checkmark"]) .sqs-image-shape-container-element {
    padding-bottom: 0 !important;
    width: 26px !important;
    height: 26px !important;
    max-height: 26px !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) h3 {
    margin: 0 !important;
    line-height: 1.25 !important;
  }

  /* 3-column card rows */
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-4:first-child):has(> .sqs-col-4:nth-child(3)):not(:has(> .sqs-col-4:nth-child(4))) {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 0.35rem;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-4:first-child):has(> .sqs-col-4:nth-child(3)):not(:has(> .sqs-col-4:nth-child(4))) > .sqs-col-4 {
    float: none !important;
    width: 33.33% !important;
    max-width: 33.33% !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
    box-sizing: border-box !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-4:first-child):has(> .sqs-col-4:nth-child(3)):not(:has(> .sqs-col-4:nth-child(4))) > .sqs-col-4 img {
    max-height: 96px !important;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
    position: static !important;
    object-fit: contain !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-4:first-child):has(> .sqs-col-4:nth-child(3)):not(:has(> .sqs-col-4:nth-child(4))) > .sqs-col-4 .sqs-image-shape-container-element {
    padding-bottom: 0 !important;
    height: auto !important;
    max-height: 96px !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-4:first-child):has(> .sqs-col-4:nth-child(3)):not(:has(> .sqs-col-4:nth-child(4))) > .sqs-col-4 h1,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-4:first-child):has(> .sqs-col-4:nth-child(3)):not(:has(> .sqs-col-4:nth-child(4))) > .sqs-col-4 h2,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-4:first-child):has(> .sqs-col-4:nth-child(3)):not(:has(> .sqs-col-4:nth-child(4))) > .sqs-col-4 h3 {
    font-size: 12px !important;
    letter-spacing: 0.5px !important;
    text-align: center !important;
    margin: 0.35rem 0 0 !important;
  }

  /* 2-up columns stack */
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-6:first-child):has(> .sqs-col-6:nth-child(2)):not(:has(> .sqs-col-6:nth-child(3))) {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-6:first-child):has(> .sqs-col-6:nth-child(2)):not(:has(> .sqs-col-6:nth-child(3))) > .sqs-col-6 {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    box-sizing: border-box !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-6:first-child):has(> .sqs-col-6:nth-child(2)):not(:has(> .sqs-col-6:nth-child(3))) > .sqs-col-6 img {
    max-height: 220px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-7):has(> .sqs-col-5) > .sqs-col-7 img,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-5):has(> .sqs-col-7) > .sqs-col-5 img,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-8):has(> .sqs-col-4) > .sqs-col-8 img,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-4):has(> .sqs-col-8) > .sqs-col-4 img {
    max-height: 240px !important;
    object-fit: cover !important;
  }

  /* Product / multi col-2 grids */
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-2 > .sqs-block-image) {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.35rem 0.25rem;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-2 > .sqs-block-image) > .sqs-col-2 {
    float: none !important;
    width: 33.33% !important;
    max-width: 33.33% !important;
    flex: 0 0 33.33% !important;
    min-width: 0 !important;
    padding: 4px !important;
    box-sizing: border-box !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-2 > .sqs-block-image) > .sqs-col-2:has(.spacer-block),
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-2 > .sqs-block-image) > .sqs-col-2:not(:has(.sqs-block-image)):not(:has(.sqs-block-html)):not(:has(.sqs-block-button)) {
    display: none !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-2 > .sqs-block-image) > .sqs-col-2 img {
    max-height: 88px !important;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
    position: static !important;
    object-fit: contain !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-2 > .sqs-block-image) > .sqs-col-2 .sqs-image-shape-container-element {
    padding-bottom: 0 !important;
    height: auto !important;
    max-height: 88px !important;
  }

  /* Vendor logo galleries */
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-gallery-design-grid .slide,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-gallery-design-grid-slide,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-gallery-block-grid .slide,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-gallery-block-grid .margin-wrapper {
    max-width: 33.33% !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-gallery-design-grid img,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-gallery-block-grid img {
    max-height: 44px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    margin: 0 auto !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) #siteInfo {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: center;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .ew-cert-logos {
    gap: 0.75rem;
    max-width: 100%;
    margin: 0.5rem auto 0.75rem;
    padding: 0 12px;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .ew-cert-logo {
    max-width: 100px;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .ew-cert-logo img {
    max-height: 56px !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) #content .sqs-block-image img[src*="banner"],
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) #content .sqs-block-image img[data-src*="banner"],
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) #content .sqs-block-image img[src*="Plangraphic"],
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) #content .sqs-block-image img[src*="Installgraphic"],
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) #content .sqs-block-image img[src*="Supportgraphic"],
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) #content .sqs-block-image img[src*="connectgraphic"],
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) #content .sqs-block-image img[src*="graphics"] {
    max-height: 180px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media only screen and (max-width: 420px) {
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image img[src*="checkmark"]) > .sqs-col-3,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image img[data-src*="checkmark"]) > .sqs-col-3 {
    flex: 1 1 calc(100% - 52px) !important;
    min-width: calc(100% - 52px) !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 {
    width: 36px !important;
    max-width: 36px !important;
    min-width: 36px !important;
    flex-basis: 36px !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 img {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) img[src*="checkmark"],
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) img[data-src*="checkmark"],
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) img[alt*="checkmark"] {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
  }

  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .sqs-layout .sqs-row:has(> .sqs-col-2 > .sqs-block-image) > .sqs-col-2 {
    width: 50% !important;
    max-width: 50% !important;
    flex-basis: 50% !important;
  }

  body.collection-5e5b2fd2af79a531e0c72cdc .ew-cert-logos,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .ew-cert-logos {
    gap: 0.5rem;
    padding: 0 10px;
  }

  body.collection-5e5b2fd2af79a531e0c72cdc .ew-cert-logo,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .ew-cert-logo {
    max-width: 84px;
  }

  body.collection-5e5b2fd2af79a531e0c72cdc .ew-cert-logo img,
  body:not(.collection-5e5b2fd2af79a531e0c72cdc) .ew-cert-logo img {
    max-height: 44px !important;
  }
}

@media only screen and (max-width: 560px) {
  .ew-form-wrap {
    padding: 0 4px;
  }

  .ew-form-wrap input,
  .ew-form-wrap select,
  .ew-form-wrap textarea,
  .ew-form-wrap button[type=submit] {
    font-size: 16px !important;
  }
}


/* -------------------------------------------------------------------------- */
/* Services page mobile: full-bleed hero + stacked "3 Ways We Help"           */
/* collection-5e56bc25dd4cda3aa2f6b0e6                                        */
/* -------------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  /* Kill theme #page padding — root cause of white bar beside hero */
  body.collection-5e56bc25dd4cda3aa2f6b0e6 #page,
  body.collection-5e56bc25dd4cda3aa2f6b0e6 #content {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
  }

  body.collection-5e56bc25dd4cda3aa2f6b0e6 .banner-thumbnail-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
  }

  body.collection-5e56bc25dd4cda3aa2f6b0e6 .banner-thumbnail-wrapper figure#thumbnail,
  body.collection-5e56bc25dd4cda3aa2f6b0e6 .banner-thumbnail-wrapper figure.content-fill {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
  }

  body.collection-5e56bc25dd4cda3aa2f6b0e6 .banner-thumbnail-wrapper img {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  body.collection-5e56bc25dd4cda3aa2f6b0e6 .index-section-wrapper.page-content > .content-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }


  /* Undo generic 3-up squeeze for PLAN / INSTALL / SUPPORT cards */
  body.collection-5e56bc25dd4cda3aa2f6b0e6 .sqs-layout .sqs-row:has(> .sqs-col-4:first-child):has(> .sqs-col-4:nth-child(3)):not(:has(> .sqs-col-4:nth-child(4))) {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 1.25rem !important;
  }

  body.collection-5e56bc25dd4cda3aa2f6b0e6 .sqs-layout .sqs-row:has(> .sqs-col-4:first-child):has(> .sqs-col-4:nth-child(3)):not(:has(> .sqs-col-4:nth-child(4))) > .sqs-col-4 {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    text-align: center !important;
  }

  body.collection-5e56bc25dd4cda3aa2f6b0e6 .sqs-layout .sqs-row:has(> .sqs-col-4:first-child):has(> .sqs-col-4:nth-child(3)):not(:has(> .sqs-col-4:nth-child(4))) > .sqs-col-4 img {
    max-height: 160px !important;
    width: auto !important;
    max-width: 70% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
    position: static !important;
    object-fit: contain !important;
  }

  body.collection-5e56bc25dd4cda3aa2f6b0e6 .sqs-layout .sqs-row:has(> .sqs-col-4:first-child):has(> .sqs-col-4:nth-child(3)):not(:has(> .sqs-col-4:nth-child(4))) > .sqs-col-4 .sqs-image-shape-container-element {
    padding-bottom: 0 !important;
    height: auto !important;
    max-height: none !important;
  }

  body.collection-5e56bc25dd4cda3aa2f6b0e6 .sqs-layout .sqs-row:has(> .sqs-col-4:first-child):has(> .sqs-col-4:nth-child(3)):not(:has(> .sqs-col-4:nth-child(4))) > .sqs-col-4 h1,
  body.collection-5e56bc25dd4cda3aa2f6b0e6 .sqs-layout .sqs-row:has(> .sqs-col-4:first-child):has(> .sqs-col-4:nth-child(3)):not(:has(> .sqs-col-4:nth-child(4))) > .sqs-col-4 h2,
  body.collection-5e56bc25dd4cda3aa2f6b0e6 .sqs-layout .sqs-row:has(> .sqs-col-4:first-child):has(> .sqs-col-4:nth-child(3)):not(:has(> .sqs-col-4:nth-child(4))) > .sqs-col-4 h3 {
    font-size: 18px !important;
    letter-spacing: 2px !important;
    margin: 0.5rem 0 0.25rem !important;
    text-align: center !important;
  }

  /* Title above the three ways */
  body.collection-5e56bc25dd4cda3aa2f6b0e6 #content h1 {
    font-size: 1.6rem !important;
    margin-bottom: 0.75rem !important;
  }
}


/* -------------------------------------------------------------------------- */
/* Footer / pre-footer mobile — same on every page (incl. schedule consult)   */
/* -------------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  #preFooter .pre-footer-inner {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .ew-cert-logos {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0.5rem auto 0.75rem !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
  }

  .ew-cert-logo {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    max-width: 100px !important;
  }

  .ew-cert-logo img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: 56px !important;
    object-fit: contain !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Social icons centered */
  #preFooter .sqs-block-socialaccountlinks,
  #preFooter .sqs-svg-icon--list,
  #preFooter .social-icon-alignment-center {
    text-align: center !important;
    justify-content: center !important;
  }

  #preFooter .sqs-svg-icon--wrapper {
    margin: 0 0.35rem !important;
  }

  #footer .footer-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
    text-align: center !important;
  }

  #siteInfo {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.35rem !important;
    align-items: center !important;
    justify-content: center !important;
  }

  #siteInfo .site-phone,
  #siteInfo .site-email {
    margin: 0 !important;
    display: block !important;
  }

  #secondaryNavigation {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.75rem 1rem !important;
  }

  #secondaryNavigation .collection {
    margin: 0 !important;
  }
}

@media only screen and (max-width: 380px) {
  .ew-cert-logos {
    gap: 0.5rem !important;
    padding: 0 10px !important;
  }
  .ew-cert-logo {
    max-width: 84px !important;
  }
  .ew-cert-logo img {
    max-height: 44px !important;
  }
}


/* -------------------------------------------------------------------------- */
/* Homepage mobile: icon + text rows (match Services sizing)                  */
/* collection-5e5b2fd2af79a531e0c72cdc                                        */
/* Only targets col-1 icon rows — does not touch hero/banner layout           */
/* -------------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    column-gap: 0.35rem;
    row-gap: 0.85rem;
    margin-bottom: 0.35rem !important;
  }

  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 {
    float: none !important;
    width: 44px !important;
    max-width: 44px !important;
    min-width: 44px !important;
    flex: 0 0 44px !important;
    padding-left: 0 !important;
    padding-right: 8px !important;
    box-sizing: border-box !important;
  }

  /* Spacer columns next to icons */
  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-2 {
    display: none !important;
  }

  /* Text beside icons (homepage uses col-3 / col-7) */
  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-3,
  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-7 {
    float: none !important;
    width: auto !important;
    flex: 1 1 calc(100% - 56px) !important;
    min-width: 0 !important;
    max-width: calc(100% - 52px) !important;
    padding-left: 0 !important;
    padding-right: 4px !important;
    box-sizing: border-box !important;
  }

  /* Shrink icon art (badge / security / timely graphics) */
  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 .sqs-block-image {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 0 !important;
  }

  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 .sqs-image-shape-container-element {
    position: relative !important;
    padding-bottom: 0 !important;
    width: 36px !important;
    height: 36px !important;
    max-height: 36px !important;
    overflow: visible !important;
  }

  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 .sqs-block-image-figure,
  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 .image-block-wrapper {
    max-width: 36px !important;
    width: 36px !important;
    margin: 0 !important;
  }

  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 img {
    position: static !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
  }

  /* Match services-style label sizing (homepage uses h2 here) */
  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) h2,
  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) h3 {
    font-size: 16px !important;
    line-height: 1.25 !important;
    letter-spacing: 1px !important;
    margin: 0 !important;
  }

  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) p {
    font-size: 15px !important;
    line-height: 1.35 !important;
    margin: 0.15rem 0 0 !important;
  }
}

@media only screen and (max-width: 420px) {
  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 {
    width: 36px !important;
    max-width: 36px !important;
    min-width: 36px !important;
    flex-basis: 36px !important;
  }

  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 img,
  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 .sqs-image-shape-container-element,
  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 .image-block-wrapper,
  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) > .sqs-col-1 .sqs-block-image-figure {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
  }

  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) h2,
  body.collection-5e5b2fd2af79a531e0c72cdc .sqs-layout .sqs-row:has(> .sqs-col-1 > .sqs-block-image) h3 {
    font-size: 15px !important;
  }
}


/* -------------------------------------------------------------------------- */
/* Homepage feature rows (.ew-feature-row): icon left, text vertically centered */
/* Desktop = original larger size; mobile media queries shrink further below. */
/* -------------------------------------------------------------------------- */
.ew-feature-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 1.25rem;
  margin: 0.75rem 0 1.35rem !important;
  width: 100%;
  box-sizing: border-box;
}

.ew-feature-row > .sqs-col-1 {
  float: none !important;
  width: 100px !important;
  max-width: 100px !important;
  min-width: 100px !important;
  flex: 0 0 100px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.ew-feature-row > .sqs-col-11 {
  float: none !important;
  width: auto !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  padding: 0 0 0 0.35rem !important;
  display: flex !important;
  align-items: center !important;
}

.ew-feature-row .sqs-block-image,
.ew-feature-row .sqs-block-html,
.ew-feature-row .sqs-block-content,
.ew-feature-row .image-block-outer-wrapper,
.ew-feature-row .image-block-wrapper,
.ew-feature-row .sqs-html-content {
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.ew-feature-row .sqs-block-image-figure,
.ew-feature-row .image-block-wrapper {
  max-width: 100px !important;
  width: 100px !important;
  margin: 0 !important;
}

.ew-feature-row .sqs-image-shape-container-element {
  padding-bottom: 0 !important;
  width: 100px !important;
  height: 100px !important;
  max-height: 100px !important;
  overflow: visible !important;
  position: relative !important;
}

.ew-feature-row img {
  position: static !important;
  width: 100px !important;
  height: 100px !important;
  max-width: 100px !important;
  max-height: 100px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

/* Match theme h2 (22px uppercase) — was accidentally shrunk to mobile size */
.ew-feature-row h2 {
  margin: 0 !important;
  font-size: 22px !important;
  line-height: 1.2em !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
}

/* Desktop: three features side by side */
@media only screen and (min-width: 768px) {
  .ew-features {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 1.5rem 2rem;
    width: 100% !important;
    margin: 1.25rem 0 2rem !important;
    box-sizing: border-box !important;
  }

  .ew-features > .ew-feature-row {
    flex: 1 1 0 !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 0.85rem !important;
    text-align: center !important;
  }

  .ew-features > .ew-feature-row > .sqs-col-1 {
    width: 100px !important;
    max-width: 100px !important;
    min-width: 100px !important;
    flex: 0 0 100px !important;
    margin: 0 auto !important;
  }

  .ew-features > .ew-feature-row > .sqs-col-11 {
    flex: 0 1 auto !important;
    width: auto !important;
    max-width: 100% !important;
    padding: 0 !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .ew-features > .ew-feature-row h2,
  .ew-features > .ew-feature-row .sqs-html-content,
  .ew-features > .ew-feature-row .sqs-block-html {
    text-align: center !important;
    width: 100% !important;
  }
}

@media only screen and (max-width: 767px) {
  /* Center icon + label as a group on the page */
  .ew-feature-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.65rem;
    margin: 0.45rem auto 0.9rem !important;
    padding: 0 12px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .ew-feature-row > .sqs-col-1 {
    width: 40px !important;
    max-width: 40px !important;
    min-width: 40px !important;
    flex: 0 0 40px !important;
    float: none !important;
  }

  /* Don't stretch text across full width — keeps pair centered */
  .ew-feature-row > .sqs-col-11 {
    flex: 0 1 auto !important;
    width: auto !important;
    max-width: calc(100% - 56px) !important;
    float: none !important;
    justify-content: center !important;
  }

  .ew-feature-row .sqs-block-image-figure,
  .ew-feature-row .image-block-wrapper,
  .ew-feature-row .sqs-image-shape-container-element,
  .ew-feature-row img {
    width: 34px !important;
    height: 34px !important;
    max-width: 34px !important;
    max-height: 34px !important;
  }

  .ew-feature-row h2,
  .ew-feature-row .sqs-html-content,
  .ew-feature-row .sqs-block-html {
    font-size: 16px !important;
    line-height: 1.25 !important;
    text-align: left !important;
    margin: 0 !important;
  }
}

@media only screen and (max-width: 420px) {
  .ew-feature-row > .sqs-col-1 {
    width: 36px !important;
    max-width: 36px !important;
    min-width: 36px !important;
    flex-basis: 36px !important;
  }

  .ew-feature-row .sqs-block-image-figure,
  .ew-feature-row .image-block-wrapper,
  .ew-feature-row .sqs-image-shape-container-element,
  .ew-feature-row img {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
  }

  .ew-feature-row h2 {
    font-size: 15px !important;
  }
}


/* Homepage: stack feature group on mobile; center each row */
@media only screen and (max-width: 767px) {
  .ew-features {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0.5rem 0 1rem !important;
  }

  body.collection-5e5b2fd2af79a531e0c72cdc .ew-feature-row,
  .ew-features > .ew-feature-row {
    justify-content: center !important;
  }

  body.collection-5e5b2fd2af79a531e0c72cdc .ew-feature-row > .sqs-col-11,
  .ew-features > .ew-feature-row > .sqs-col-11 {
    flex: 0 1 auto !important;
    width: auto !important;
  }
}


/* -------------------------------------------------------------------------- */
/* Homepage: separator under feature icons (Reliable / Security / Help)       */
/* -------------------------------------------------------------------------- */
.ew-section-divider {
  display: block !important;
  width: 75% !important;
  max-width: 920px !important;
  height: 1px !important;
  margin: 1.75rem auto 2.25rem !important;
  border: none !important;
  background-color: #ccc !important;
  color: #ccc !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@media only screen and (max-width: 767px) {
  .ew-section-divider {
    width: 85% !important;
    margin: 1.25rem auto 1.75rem !important;
  }
}

