/* =========================================================
   A11Y (שלב 11 - FORCE v2): underline לקישורים שלא מסתמכים רק על צבע
   מנצח כללי text-decoration:none ב-main.css (כולל כותרות/טלפון/policies)
   ========================================================= */

/* בסיס: להחזיר underline לרוב הקישורים בתוכן */
a {
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

/* חיזוק נקודתי למקומות שב-main.css מבטל underline */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
#top p a,
.box.style1 p a,
.policies a,
a[href^="tel:"] {
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

/* Hover/Focus – הדגשה חזקה יותר */
a:hover,
a:focus,
a:focus-visible {
  text-decoration-thickness: 3px !important;
}

/* visited – מובחנות עדינה */
a:visited {
  text-decoration-thickness: 2px !important;
}

/* החרגות כדי לא לשבור UI */
#nav a,
.button,
input[type="submit"],
button,
ul.social a,
a.image,
.image a,
.image.featured,
.image.featured a,
.icon {
  text-decoration: none !important;
}
