/* ===== Multiple-Choice: Antworttexte groß ===== */

/* häufige Markups: Input + Label */
form input[type="radio"] + label,
form input[type="checkbox"] + label {
  font-size: 22px !important;
  line-height: 1.4 !important;
}

/* wenn das <input> im <label> steckt (moderne Browser unterstützen :has) */
form label:has(> input[type="radio"]),
form label:has(> input[type="checkbox"]) {
  font-size: 22px !important;
  line-height: 1.4 !important;
}





