/* ---------- Checkboxgruppe ---------- */
.t7-checkbox-group {
  display: flex;
  align-items: flex-start;      /* Text richtet sich oben an der Checkbox aus */
  gap: 0.5rem;                  /* Abstand zwischen Box und Text */
  margin-top: 1rem;
}

/* ---------- Checkbox selbst ---------- */
.t7-checkbox-input {
  /* Standardgröße (ca. 16 px); kein transform nötig */
  width: 16px;
  height: 16px;
  cursor: pointer;
  margin-top: 2px;              /* feiner optischer Ausgleich */
}

/* ---------- Label-Text ---------- */
.t7-checkbox-label {
  font-size: 0.95rem;
  line-height: 1.4;
  cursor: pointer;
  margin: 0;
}

.t7-checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}