/**
 * Gravity Forms — Bestaetigung nach dem Absenden.
 *
 * Nach dem Absenden ersetzt Gravity Forms das Formular durch
 * #gform_confirmation_wrapper_<id>. Das <form>-Element und damit auch
 * data-formid="<id>" sind dann weg — formularspezifisches CSS, das auf
 * form[data-formid] scoped ist, greift nicht mehr.
 *
 * Diese Datei gibt der Bestaetigung deshalb global ein lesbares
 * Standard-Aussehen: dunkle Schrift auf hellem Grund, als Hinweisbox.
 * Sections mit dunklem Grund ueberschreiben das mit hoeherer Spezifitaet
 * (siehe kontaktformular-page.css fuer Formular 3 und
 * blocks/contact-form/style.css fuer den Kontaktformular-Block).
 */

.gform_confirmation_wrapper {
    font-family: var(--thch-font-body, "Aptos", system-ui, sans-serif);
}

.gform_confirmation_message {
    color: var(--thch-color-primary, #1D245D) !important;
    background: var(--thch-color-white, #FFFFFF) !important;
    border-left: 4px solid var(--thch-color-accent, #0066FF) !important;
    border-radius: 0.5rem !important;
    padding: 1.5rem !important;
    margin: 0 !important;
    font-family: var(--thch-font-body, "Aptos", system-ui, sans-serif);
    font-size: var(--thch-text-base, 1.125rem);
    line-height: 1.6;
}

.gform_confirmation_message a {
    color: var(--thch-color-accent, #0066FF);
}
