/* =========================================================
   FIT TEXT (Elementor Heading) – no flicker
   - Put class: .fit-text on the HEADING widget (wrapper)
   - Center container is the constraint (600px)
========================================================= */

.fit-text .elementor-heading-title {
  display: inline-block;
  white-space: nowrap; /* respects <br>, prevents extra wrapping */
  max-width: 100%;
  line-height: 0.95;

  /* prevent flash before JS sets fitted size */
  visibility: hidden;
}

.fit-text.is-fitted .elementor-heading-title {
  visibility: visible;
}
