/* TradesFolks Sprint 227: safe rendering-performance layer.
   These rules do not change visual design; they allow the browser to skip
   layout/paint work for below-the-fold sections until they approach viewport. */
@supports (content-visibility:auto) {
  .home-category-sections,
  .home-reels,
  .home-content-hub,
  .tf-premium-footer,
  .supplier-store-footer,
  .product-related-section,
  .product-recommendations {
    content-visibility:auto;
    contain-intrinsic-size:1px 900px;
  }
}

/* Keep media layout stable while images decode. */
img[loading="lazy"] { content-visibility:auto; }
