/* Knack live layer — minimal. Restores behaviours the removed Strikingly runtime
   provided. Adds NO new layout; only un-hides what the runtime would have.
   The theme's own @font-face rules (Brandon Grotesque via Typekit, Martel Sans
   and Open Sans via the Strikingly CDN) are preserved untouched and load over
   the network, so type renders exactly as the original. */

/* 1) reveal — Strikingly hides sections/items until its JS runs */
.s-section,
.s-section .transition,
.transition { opacity: 1 !important; }
[style*="opacity: 0"] { opacity: 1 !important; }

/* 1b) full-screen hero. The first cover section is meant to fill the viewport.
   The bundle only grants 100vh through trigger classes the runtime added to the
   <li.slide>; stripped of the runtime the cover collapses to content height.
   Restore the full-screen cover on the first visible section. */
.slide.s-first-visible-section .s-section.s-section-full,
.slide.s-first-visible-section .s-section.s6-section {
  min-height: 100vh !important;
}
