/* Mobile-only fix: prevent large blank gaps caused by `content-visibility` placeholders.
   On some mobile browsers the deferred rendering can leave a big empty area between sections. */
@media (max-width: 768px) {
  .content-lazy,
  .cv-auto,
  section:not(.hero):not(.hero-section):not([class*="hero"]) {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }
}

