/* Island Compass - justified body copy (Nicole's request, Sep 2026).
   Loaded sitewide by the ic-*.css glob in ic-design-system.php.
   Scope: multi-line body paragraphs on tablet and desktop only.
   - Phones keep left alignment: at narrow widths justify opens wide gaps between words.
   - Centred blocks (hero, intro quote, enquiry bands, testimonial, contact hero) stay centred.
   - Headings, eyebrows, buttons, chips, tables and forms are untouched.
   - Single-line text is unaffected, because the last line of a justified
     paragraph always aligns left.
   To undo: delete this file. */

@media (min-width: 768px) {
  body :is(.elementor-widget-text-editor, .elementor-widget-theme-post-content) p:not(:is(
      .ic-hero__copy, .ic-hero3, .ic-intro, .ic-henq__inner, .ic-wa__inner,
      .ic-ty__inner, .ic-cta-inner, .ic-testi__copy, .ic-ch, .ic-pp,
      .page-id-330 .ic-pagehero
    ) p),
  body .ic-vd-content p,
  body .ic-intro__cols .ic-intro__body p,
  body .ic-vd-p {
    text-align: justify;
    text-justify: inter-word;
    text-align-last: left;
    hyphens: manual;
    -webkit-hyphens: manual;
  }
}
