/* =========================================================
   GENERISCHE STATE-KLASSE
   ========================================================= */
.is-hidden {
	display: none !important;
}

/* =========================================================
   INITIALER ZUSTAND
   (alles außer dem Selfcheck ausgeblendet)
   ========================================================= */

/* Ergebnis-Headline */
.result-headline {
	display: block;
}
.result-headline.is-hidden {
	display: none !important;
}

/* Ergebnis-Container (grün / gelb / rot) */
.score-result {
	display: block;
}
.score-result.is-hidden {
	display: none !important;
}

/* CTA-Bereich (beide CTAs zusammen) */
.score-cta {
	display: block;
}
.score-cta.is-hidden {
	display: none !important;
}
/* Felder für E-Mailvorbereitung verstecken */
textarea[name="form_fields[selfcheck_answers]"] {
	display: none;
}

/* Alte Klasse (kann evtl. weg, wenn nicht mehr benötigt) */
.csa-name {
	color: #FF00BB;
}

/* Neue Klasse für die CTA Personalisierung */
.csa-text-highlight {
	color: #A84D97;
}

/* Feld-Highlight */
.csa-invalid {
	background-color: rgba(190, 0, 0, 0.08);
	border: 1px solid #be0000 !important;
	font-family: "Go", sans-serif !important;
}

.csa-error {
	margin-top: 6px;
	padding: 8px 10px;
	background-color: rgba(190, 0, 0, 0.08);
	border: 1px solid #be0000;
	color: #be0000;
	font-size: 0.9rem;
	border-radius: 4px;
	font-family: "Go", sans-serif !important;
	line-height: 1.4;
}