/* ביטול כפיית פונט – ירושה מלאה מהאתר */
.custom-privacy-consent,
.custom-privacy-consent * { font: inherit !important; color: inherit; }

/* היחידה ממוקמת מחוץ לטופס (כסיבּלינג) ולכן די במרווח עליון */
.custom-privacy-consent { margin: 12px 0 6px; }

.custom-privacy-consent .custom-privacy-label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
  /* אין קביעת font-size כדי לא לכפות טיפוגרפיה */
}

.custom-privacy-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.custom-privacy-label a {
    text-decoration: underline;
}
.custom-privacy-label a:hover {
    color:#fff;
}
/* קישור למדיניות: קו תחתון וצבע יורש */
.custom-privacy-consent a {
  text-decoration: underline;
  color: inherit;
}

/* הודעת שגיאה */
.custom-privacy-error {
  margin-top: 6px;
  color: #c62828;
  font: inherit;
}

/* הדגשה בעת שגיאה (נגישות) */
.custom-privacy-consent.has-error .custom-privacy-label {
  outline: 2px solid #c62828;
  outline-offset: 4px;
  border-radius: 6px;
}

/* מובייל – אופציונלי, שומר על קומפקטיות בלי לכפות פונט */
@media (max-width: 768px){
  .custom-privacy-consent .custom-privacy-label { }
}
