/* nextere.com post-migration design fixes — 2026-06-07
   Loaded after the Webflow CSS so these win. Reversible (delete this file + the <link>). */

/* ---- P0: hide empty Webflow CMS collections that show "No items found." ---- */
.w-dyn-empty { display: none !important; }

/* ---- TYPOGRAPHY PASS: cap oversized headings (were h1 64px / h3-h4 48px) ----
   Fluid clamp() = responsive; !important beats Webflow's non-important class sizes. */
h1, [class*="heading-"].h1, .heading-153 {
  font-size: clamp(2.25rem, 1.4rem + 3.4vw, 3.25rem) !important;  /* 36 -> 52px */
  line-height: 1.12 !important;
  letter-spacing: -0.01em !important;
}
h2 {
  font-size: clamp(1.875rem, 1.2rem + 2.8vw, 2.75rem) !important; /* 30 -> 44px */
  line-height: 1.15 !important;
}
h3 {
  font-size: clamp(1.5rem, 1.05rem + 1.9vw, 2.125rem) !important; /* 24 -> 34px */
  line-height: 1.2 !important;
}
h4 {
  font-size: clamp(1.25rem, 1rem + 1.1vw, 1.625rem) !important;   /* 20 -> 26px */
  line-height: 1.25 !important;
}
h5 { font-size: clamp(1.0625rem, 0.95rem + 0.5vw, 1.25rem) !important; }
/* body readability: a touch larger + more line-height (safe on light & dark) */
p { font-size: 1.0625rem !important; line-height: 1.6 !important; }

/* ---- P1: (reverted) brand-accent toning removed — it darkened the hero video overlay.
   Keeping the original Webflow brand colors (#15ede7 / #14ef86). Color consolidation
   to be done deliberately later, scoped away from the hero video tint. ---- */

/* ---- P2: slim the cookie-consent banner to a compact bottom card (controls kept) ----
   freeprivacypolicy.com cookie-consent v4 "simple" notice banner = #freeprivacypolicy-com---nb */
#freeprivacypolicy-com---nb {
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  bottom: 16px !important;
  top: auto !important;
  width: calc(100% - 32px) !important;
  max-width: 940px !important;
  max-height: 42vh !important;
  overflow-y: auto !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4) !important;
  z-index: 2147483000 !important;
}
#freeprivacypolicy-com---nb .cc-nb-main-container { padding: 16px 20px !important; }
#freeprivacypolicy-com---nb .cc-nb-title { font-size: 16px !important; margin-bottom: 4px !important; }
#freeprivacypolicy-com---nb .cc-nb-text  { font-size: 13px !important; line-height: 1.45 !important; margin: 6px 0 12px !important; }

@media (max-width: 600px) {
  #freeprivacypolicy-com---nb {
    max-height: 60vh !important;
    bottom: 8px !important;
    width: calc(100% - 16px) !important;
  }
}
