/* =============================================================
   OnTrack Web Solutions - Batch 1N, Part 3A.1
   Site-wide horizontal-overflow repair: email address wrapping
   -------------------------------------------------------------
   Problem
   -------
   "Robert@ontrackwebsolutions.com" is a single unbreakable token.
   The UA line-breaking algorithm offers no soft-break opportunity
   inside it, and overflow-wrap computed to its initial value of
   `normal` on the link and on its containing paragraph. At a
   320px viewport the address rendered as one 283.1px line box
   inside a 224px content box, pushing the document to 331px.

   Fix
   ---
   Grant a break opportunity so the address wraps instead of
   overflowing. One property. No layout, colour, spacing, font
   size, hover or focus change. The address remains complete and
   visible; nothing is hidden or truncated.

   Scope note
   ----------
   a.ot-foot-email is the footer link inside Elementor template
   28. The attribute selector additionally covers the unclassed
   mailto link in the Request a Consultation page body, which was
   confirmed during verification to have the identical defect.
   Approved for inclusion by Robert, 2026-08-04.

   No !important is used: no existing rule declares overflow-wrap
   on these elements, so nothing needs to be overridden.
   ============================================================= */

a.ot-foot-email,
a[href^="mailto:"] {
	overflow-wrap: anywhere;
}
