body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}
/* =========================================================
   FUH Auth UI (Login, Registrierung, Passwort vergessen)
   Bereinigt: redundantes zusammengeführt, Reihenfolge klar
   ========================================================= */

/* ---------- Background + Overlay ---------- */
body.fuh-auth{
    min-height: 100vh;
    margin: 0;
    background-image: url("/files/fuh/ui/login-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Variablen (angelehnt an KiWiWo) */
    --card-bg: rgba(10, 55, 85, 0.18);
    --card-border: rgba(120, 210, 255, 0.28);
    --card-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
    --card-radius: 26px;

    --field-bg: rgba(10, 30, 50, 0.35);
    --field-border: rgba(140, 220, 255, 0.28);

    --text: #eaf7ff;
}

body.fuh-auth::before{
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
    z-index: 0;
}

/* Theme-Hintergründe neutralisieren */
body.fuh-auth #wrapper,
body.fuh-auth #container,
body.fuh-auth #main,
body.fuh-auth #main .inside{
    background: transparent !important;
}

/* Karte im Viewport zentrieren */
body.fuh-auth #main .inside{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

/* ---------- Auth Card (Module) ---------- */
body.fuh-auth .mod_login,
body.fuh-auth .mod_registration,
body.fuh-auth .mod_lostPassword{
    position: relative;
    z-index: 1;

    /* “spätere Regeln obsiegen” -> finale Breite wie bei dir */
    width: min(560px, 94vw) !important;
    max-width: none !important;

    margin: 0 auto;
    padding: 26px 26px 22px;

    border-radius: var(--card-radius);
    background: var(--card-bg);
    border: 2px solid rgba(120, 210, 255, 0.38);

    box-shadow:
            0 22px 70px rgba(0,0,0,0.35),
            0 0 26px rgba(80, 220, 255, 0.18),
            inset 0 0 0 1px rgba(255,255,255,0.10);

    backdrop-filter: blur(10px);
    color: var(--text);
    box-sizing: border-box;
}

/* Glow links/rechts */
body.fuh-auth .mod_login::before,
body.fuh-auth .mod_login::after,
body.fuh-auth .mod_registration::before,
body.fuh-auth .mod_registration::after,
body.fuh-auth .mod_lostPassword::before,
body.fuh-auth .mod_lostPassword::after{
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    width: 26px;
    border-radius: 26px;
    pointer-events: none;

    background: rgba(80, 220, 255, 0.55);
    filter: blur(14px);
    opacity: 1;
}

body.fuh-auth .mod_login::before,
body.fuh-auth .mod_registration::before,
body.fuh-auth .mod_lostPassword::before{
    left: -18px;
    box-shadow: 0 0 40px rgba(80, 220, 255, 0.65);
}

body.fuh-auth .mod_login::after,
body.fuh-auth .mod_registration::after,
body.fuh-auth .mod_lostPassword::after{
    right: -18px;
    box-shadow: 0 0 40px rgba(80, 220, 255, 0.65);
}

/* ---------- Login Branding ---------- */
body.fuh-auth .mod_login .kiwiwo-login-intro{
    margin: -2px 0 18px;
}

body.fuh-auth .mod_login .kiwiwo-auth-brand{
    width: min(342px, 86%);
    margin: 0 auto 15px;

    display: grid;
    grid-template-columns: minmax(34px, 1fr) auto minmax(34px, 1fr);
    align-items: center;
    gap: 14px;
}

body.fuh-auth .mod_login .kiwiwo-auth-brand__line{
    display: block;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(218, 244, 255, 0.34),
        transparent
    );
}

body.fuh-auth .mod_login .kiwiwo-auth-brand__name{
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
}

body.fuh-auth .mod_login .kiwiwo-auth-brand__kiwiwo{
    color: rgba(244, 251, 255, 0.95);
}

body.fuh-auth .mod_login .kiwiwo-auth-brand__study{
    color: #62d8cf;
    font-weight: 500;
}

body.fuh-auth .mod_login .kiwiwo-auth-heading{
    margin: 0 !important;
    padding: 0 !important;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.35;
    letter-spacing: 0;
    text-align: center;

    color: rgba(238, 248, 253, 0.92);
    text-shadow: 0 1px 10px rgba(0, 20, 36, 0.22);
}

/* ---------- Form Layout ---------- */
body.fuh-auth .mod_login form,
body.fuh-auth .mod_registration form,
body.fuh-auth .mod_lostPassword form{
    max-width: none !important; /* Theme darf nicht verengen */
    margin: 0 auto;
}

body.fuh-auth .mod_login form .widget,
body.fuh-auth .mod_registration form .widget,
body.fuh-auth .mod_lostPassword form .widget{
    position: relative;
    margin: 0 0 14px 0;
}

/* Inputs */
body.fuh-auth .mod_login input[type="text"],
body.fuh-auth .mod_login input[type="email"],
body.fuh-auth .mod_login input[type="password"],
body.fuh-auth .mod_registration input[type="text"],
body.fuh-auth .mod_registration input[type="email"],
body.fuh-auth .mod_registration input[type="password"],
body.fuh-auth .mod_registration input[type="tel"],
body.fuh-auth .mod_registration input[type="number"],
body.fuh-auth .mod_registration input[type="url"],
body.fuh-auth .mod_lostPassword input[type="text"],
body.fuh-auth .mod_lostPassword input[type="email"],
body.fuh-auth .mod_lostPassword input[type="password"]{
    width: 100% !important;
    box-sizing: border-box !important;

    border-radius: 14px !important;
    border: 1px solid var(--field-border) !important;
    background: var(--field-bg) !important;
    color: var(--text) !important;

    padding: 12px 14px 12px 44px !important; /* Platz für linkes Icon */
    font-size: 16px !important;
    outline: none !important;
}

body.fuh-auth input::placeholder{
    color: rgba(234, 247, 255, 0.7);
}

/* ---------- Left Icons (User + Lock) ---------- */
body.fuh-auth .mod_login form .widget::before,
body.fuh-auth .mod_registration form .widget::before,
body.fuh-auth .mod_lostPassword form .widget::before{
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    opacity: 0.9;

    background-repeat: no-repeat;
    background-size: 18px 18px;

    /* Default: User */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23cfefff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

/* Passwort-Icon (Schloss) */
body.fuh-auth .mod_login form .widget.widget-password::before,
body.fuh-auth .mod_login form .widget-password::before,
body.fuh-auth .mod_registration form .widget.widget-password::before,
body.fuh-auth .mod_registration form .widget-password::before,
body.fuh-auth .mod_lostPassword form .widget.widget-password::before,
body.fuh-auth .mod_lostPassword form .widget-password::before{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23cfefff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
}

/* Keine Icons bei Checkbox, Captcha und Submit */
body.fuh-auth .widget.widget-checkbox::before,
body.fuh-auth .widget.widget-captcha::before,
body.fuh-auth .widget.widget-submit::before{
    content: none !important;
    background: none !important;
}

/* Login: Icon-Layer darf Klick auf Auge nicht blockieren */
body.fuh-auth .mod_login .widget-text::before,
body.fuh-auth .mod_login .widget-password::before,
body.fuh-auth .mod_login .widget::before{
    pointer-events: none !important;
}

/* Registrierung: Icon am Input ausrichten, auch wenn Hint/Fehlertext darüber steht */
body.fuh-auth .mod_registration .widget::before{
    top: auto !important;
    bottom: 27px !important;               /* Mitte eines 54px Inputs */
    transform: translateY(50%) !important;
}

/* ---------- Checkbox ---------- */
body.fuh-auth .widget.widget-checkbox,
body.fuh-auth .widget.widget-checkbox fieldset,
body.fuh-auth .widget.widget-checkbox .checkbox_container,
body.fuh-auth .widget.widget-checkbox span{
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* ---------- Submit Button ---------- */
body.fuh-auth .widget.widget-submit{
    display: flex;
    justify-content: center;
    margin-top: 14px !important;
}

body.fuh-auth button.submit,
body.fuh-auth input[type="submit"]{
    width: auto !important;
    min-width: 220px;

    border: 0;
    border-radius: 12px;
    padding: 12px 26px !important;

    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--text);
    cursor: pointer;

    background: linear-gradient(180deg, rgba(20, 140, 210, 0.95), rgba(10, 90, 150, 0.95));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Button-Icons sicher entfernen */
body.fuh-auth button.submit::before,
body.fuh-auth button.submit::after,
body.fuh-auth input[type="submit"]::before,
body.fuh-auth input[type="submit"]::after{
    content: none !important;
    background: none !important;
}

/* ---------- Links ---------- */
body.fuh-auth a{
    color: rgba(234, 247, 255, 0.95);
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.fuh-auth a:hover{
    text-decoration: none;
}

body.fuh-auth .kiwiwo-authlinks{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-top: 14px;
}

body.fuh-auth .kiwiwo-authlinks a{
    display: inline-block;
    white-space: nowrap;
}

/* (Optional) falls irgendwo noch formfooter genutzt wird */
body.fuh-auth .mod_login .formfooter,
body.fuh-auth .mod_registration .formfooter,
body.fuh-auth .mod_lostPassword .formfooter{
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 10px;
    font-size: 14px;
}

/* ---------- Password Toggle (Auge) ---------- */
body.fuh-auth .pw-wrap{
    position: relative;
}

body.fuh-auth .pw-wrap input{
    position: relative;
    z-index: 1;
    padding-right: 56px !important; /* Platz fürs Auge */
}

/* Standard: SVG-Button */
body.fuh-auth .pw-toggle{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);

    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 0;                 /* SVG, keine Schrift */
    line-height: 1;

    border: 0;
    background: transparent;
    color: rgba(255,255,255,0.95);
    cursor: pointer;

    z-index: 10 !important;
    pointer-events: auto !important;
}

body.fuh-auth .pw-toggle svg{
    width: 20px;
    height: 20px;
    display: block;
}

body.fuh-auth .pw-toggle:hover{
    color: #ffffff;
    filter: brightness(1.05);
}

/* ---------- Landingpages (Text-Card) ---------- */
body.fuh-auth .fuh-authcard{
    position: relative;
    z-index: 1;

    width: min(560px, 94vw);
    margin: 0 auto;
    padding: 26px 26px 22px;

    border-radius: 26px;
    background: rgba(10, 55, 85, 0.18);
    border: 2px solid rgba(120, 210, 255, 0.28);
    box-shadow: 0 22px 70px rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);

    color: #eaf7ff;
}

/* ---------- Mobile / S20 Fix ---------- */
html, body{
    height: 100%;
    background: #000; /* verhindert weiße Ränder */
}

@media (max-width: 600px){
    body.fuh-auth .mod_login .kiwiwo-login-intro{
        margin-top: 0;
        margin-bottom: 16px;
    }

    body.fuh-auth .mod_login .kiwiwo-auth-brand{
        width: min(300px, 90%);
        gap: 10px;
        margin-bottom: 13px;
    }

    body.fuh-auth .mod_login .kiwiwo-auth-brand__name{
        font-size: 16px;
    }

    body.fuh-auth .mod_login .kiwiwo-auth-heading{
        font-size: 16px !important;
    }

    body.fuh-auth{
        background-size: cover !important;
        background-position: center top !important;
        background-color: #000 !important;
    }

    body.fuh-auth #main .inside{
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px !important;
    }

    body.fuh-auth .mod_login,
    body.fuh-auth .mod_registration,
    body.fuh-auth .mod_lostPassword{
        width: calc(100vw - 28px) !important;
        max-width: 520px !important;
        margin: 0 !important;
        padding: 18px 16px 16px !important;
        border-radius: 18px !important;
    }

    body.fuh-auth .kiwiwo-authlinks{
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin-top: 12px;
    }

    body.fuh-auth .kiwiwo-authlinks a{
        font-size: 14px;
        white-space: nowrap;
    }
}


/* =========================================================
   Info-Popup: "Angemeldet bleiben"
   Das Hinweisfeld liegt bewusst im normalen Dokumentfluss.
   Dadurch wächst die Login-Karte beim Öffnen mit und der
   Hinweis wird weder abgeschnitten noch überlagert Buttons.
   ========================================================= */

body.fuh-auth .widget.widget-checkbox{
    position: relative;
}

body.fuh-auth .kiwiwo-autologin-row{
    display: inline-flex !important;
    align-items: center;
    gap: 9px;
    flex-wrap: nowrap;
}

body.fuh-auth .kiwiwo-autologin-row label{
    margin: 0;
}

body.fuh-auth .kiwiwo-info-trigger{
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 1px solid rgba(180, 235, 255, 0.45);
    border-radius: 50%;
    background: rgba(20, 80, 110, 0.38);
    color: #eaf7ff;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);

    transition:
        background 0.18s ease,
        transform 0.18s ease,
        border-color 0.18s ease;
}

body.fuh-auth .kiwiwo-info-trigger:hover,
body.fuh-auth .kiwiwo-info-trigger:focus-visible{
    background: rgba(35, 120, 160, 0.48);
    border-color: rgba(190, 245, 255, 0.65);
    transform: translateY(-1px);
    outline: none;
}

/*
 * Wichtig:
 * Nicht absolut positionieren. Das Popup nimmt beim Öffnen
 * Platz ein und vergrößert dadurch die Login-Karte.
 */
body.fuh-auth .kiwiwo-info-popup{
    position: relative;
    width: min(390px, 100%);
    margin: 12px 0 2px;
    z-index: 30;
    display: none;
    box-sizing: border-box;
}

body.fuh-auth .kiwiwo-info-popup.is-open{
    display: block;
}

body.fuh-auth .kiwiwo-info-popup__inner{
    position: relative;
    padding: 16px 42px 15px 18px;

    border-radius: 16px;
    background: rgba(8, 34, 55, 0.88);
    border: 1px solid rgba(140, 220, 255, 0.32);

    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.25),
        0 0 18px rgba(80, 220, 255, 0.10);

    backdrop-filter: blur(10px);
    color: #eaf7ff;
    box-sizing: border-box;
}

/* Kleine Spitze zum Info-Button */
body.fuh-auth .kiwiwo-info-popup__inner::before{
    content: "";
    position: absolute;
    top: -7px;
    left: 177px;

    width: 14px;
    height: 14px;

    background: rgba(8, 34, 55, 0.96);
    border-left: 1px solid rgba(140, 220, 255, 0.32);
    border-top: 1px solid rgba(140, 220, 255, 0.32);

    transform: rotate(45deg);
}

body.fuh-auth .kiwiwo-info-popup__title{
    display: block;
    margin: 0 0 8px;

    font-size: 14px;
    line-height: 1.35;
    color: #ffffff;
}

body.fuh-auth .kiwiwo-info-popup p{
    margin: 0 0 9px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(234, 247, 255, 0.94);
}

body.fuh-auth .kiwiwo-info-popup p:last-child{
    margin-bottom: 0;
}

body.fuh-auth .kiwiwo-info-popup__close{
    position: absolute;
    top: 8px;
    right: 8px;

    width: 28px;
    height: 28px;
    padding: 0;

    border: 0;
    border-radius: 50%;
    background: transparent;
    color: rgba(234, 247, 255, 0.92);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

body.fuh-auth .kiwiwo-info-popup__close:hover,
body.fuh-auth .kiwiwo-info-popup__close:focus-visible{
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

/* Sicherheit gegen Theme-Regeln, die Popups abschneiden könnten */
body.fuh-auth .mod_login,
body.fuh-auth .mod_login form,
body.fuh-auth .mod_login .formbody,
body.fuh-auth .mod_login .widget.widget-checkbox,
body.fuh-auth .mod_login .checkbox_container{
    overflow: visible !important;
}

@media (max-width: 600px){
    body.fuh-auth .kiwiwo-info-popup{
        width: 100%;
        margin-top: 12px;
    }

    body.fuh-auth .kiwiwo-info-popup__inner{
        padding: 15px 40px 14px 15px;
    }

    body.fuh-auth .kiwiwo-info-popup__inner::before{
        left: 172px;
    }
}


/* =========================================================
   Registrierung: Hilfe zu FernUni-E-Mail und Passwort
   ========================================================= */

body.fuh-auth .mod_registration .kiwiwo-registration-help,
body.fuh-auth .mod_registration .kiwiwo-registration-password-hint{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: rgba(234, 247, 255, 0.90);
}

body.fuh-auth .mod_registration .kiwiwo-registration-help{
    margin: 3px 0 7px;
    font-size: 12.5px;
    line-height: 1.42;
}

body.fuh-auth .mod_registration .kiwiwo-registration-help__line{
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

body.fuh-auth .mod_registration .kiwiwo-registration-help__line > span{
    min-width: 0;
}

body.fuh-auth .mod_registration .kiwiwo-registration-help__secondary{
    margin-top: 3px;
    color: rgba(218, 240, 250, 0.76);
}

body.fuh-auth .mod_registration .kiwiwo-registration-info-trigger{
    width: 21px;
    height: 21px;
    flex-basis: 21px;
    margin-top: -1px;
    font-size: 12px;
}

body.fuh-auth .mod_registration .kiwiwo-registration-password-hint{
    margin: 3px 0 7px;
    font-size: 12.5px;
    line-height: 1.35;
    color: rgba(218, 240, 250, 0.78);
}

/*
 * Das Registrierungs-Popup liegt wie beim Login im normalen
 * Dokumentfluss. Die Karte wächst beim Öffnen nach unten.
 */
body.fuh-auth .mod_registration .kiwiwo-registration-info-popup{
    width: min(440px, 100%);
    margin: 10px 0 2px;
}

body.fuh-auth .mod_registration .kiwiwo-registration-info-popup
.kiwiwo-info-popup__inner{
    padding: 16px 42px 15px 18px;
}

body.fuh-auth .mod_registration .kiwiwo-registration-info-popup
.kiwiwo-info-popup__inner::before{
    left: 28px;
}

body.fuh-auth .kiwiwo-info-popup__subtitle{
    display: block;
    margin: 13px 0 6px;
    font-size: 14px;
    line-height: 1.35;
    color: #ffffff;
}

/*
 * Die vorhandene Registrierungs-Icon-Logik richtet die Icons
 * über den unteren Rand des Widgets am jeweiligen Input aus.
 * Weil die neuen Hinweise vor dem Input stehen, bleibt die
 * Ausrichtung stabil.
 */
body.fuh-auth .mod_registration,
body.fuh-auth .mod_registration form,
body.fuh-auth .mod_registration .formbody,
body.fuh-auth .mod_registration .widget{
    overflow: visible !important;
}

/*
 * Auf niedrigen Displays darf die größere Registrierung nicht
 * vertikal mittig oben aus dem sichtbaren Bereich rutschen.
 */
@media (max-height: 720px){
    body.fuh-auth:has(.mod_registration) #main .inside{
        align-items: flex-start;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 600px){
    body.fuh-auth .mod_registration .kiwiwo-registration-help{
        font-size: 12px;
    }

    body.fuh-auth .mod_registration .kiwiwo-registration-help__line{
        gap: 6px;
    }

    body.fuh-auth .mod_registration .kiwiwo-registration-info-popup{
        width: 100%;
    }
}

/* =========================================================
   Login · KiWiWo Lernfonds
   ========================================================= */
body.fuh-auth .kiwiwo-learning-fund-link{
    display:flex;
    align-items:center;
    gap:9px;
    margin:14px 0 0;
    padding:9px 11px;
    border:1px solid rgba(199,239,239,.23);
    border-radius:13px;
    background:rgba(255,255,255,.08);
    color:#eefcff;
    text-decoration:none;
    transition:background .15s ease,border-color .15s ease,transform .15s ease;
}
body.fuh-auth .kiwiwo-learning-fund-link:hover{
    background:rgba(255,255,255,.13);
    border-color:rgba(199,239,239,.42);
    transform:translateY(-1px);
}
body.fuh-auth .kiwiwo-learning-fund-link__heart{flex:0 0 auto;font-size:18px;line-height:1}
body.fuh-auth .kiwiwo-learning-fund-link__copy{display:grid;gap:1px;min-width:0}
body.fuh-auth .kiwiwo-learning-fund-link__copy strong{font-size:12.5px;line-height:1.35;color:#fff}
body.fuh-auth .kiwiwo-learning-fund-link__copy small{font-size:11.5px;line-height:1.35;color:rgba(226,245,251,.78)}
body.fuh-auth .kiwiwo-learning-fund-link__arrow{margin-left:auto;color:#c9f5ef;font-weight:900}

/* Registrierung: AGB und Datenschutzhinweis */
body.fuh-auth .mod_registration .kiwiwo-registration-legal{
    margin:4px 0 18px;
    padding:14px 15px;
    border:1px solid rgba(172,224,231,.78);
    border-radius:14px;
    background:rgba(239,250,251,.82);
    color:#315b70;
    font-size:12px;
    line-height:1.48;
}
body.fuh-auth .mod_registration .kiwiwo-registration-legal__label{
    display:grid;
    grid-template-columns:18px 1fr;
    gap:10px;
    align-items:start;
    cursor:pointer;
}
body.fuh-auth .mod_registration .kiwiwo-registration-legal__label input{
    width:17px;
    height:17px;
    margin:2px 0 0;
    accent-color:#0f9f8f;
}
body.fuh-auth .mod_registration .kiwiwo-registration-legal a{
    color:#0b7588;
    font-weight:800;
    text-decoration:underline;
    text-underline-offset:2px;
}
body.fuh-auth .mod_registration .kiwiwo-registration-legal__hint{
    margin:8px 0 0 28px;
    color:#6a8292;
    font-size:10px;
}
body.fuh-auth .mod_registration .kiwiwo-registration-legal__error{
    margin:9px 0 0 28px;
    color:#a63f4a;
    font-weight:800;
}


html, body {
    background-color: #fff;
}

.error-page{
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 24px 56px;
}

.error-page__card{
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(220,232,245,.9);
    border-radius: 28px;
    box-shadow: 0 14px 36px rgba(16,33,51,.10);
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.error-page__code{
    font-size: clamp(64px, 12vw, 120px);
    line-height: 1;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #1b4c7a 0%, #22c7c2 60%, #66f0b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-page__title{
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    color: #16395c;
}

.error-page__text{
    max-width: 720px;
    margin: 0 auto 22px;
    font-size: 18px;
    line-height: 1.6;
    color: #42627f;
}

.error-page__actions{
    margin-bottom: 26px;
}

.error-page__button{
    display: inline-block;
    padding: 12px 18px;
    border-radius: 14px;
    background: #1b4c7a;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(27,76,122,.20);
}

.error-page__button:hover{
    background: #215b91;
}

.error-page__media img{
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 700px){
    .error-page{
        padding: 24px 16px 40px;
    }

    .error-page__card{
        padding: 24px 18px;
        border-radius: 22px;
    }

    .error-page__text{
        font-size: 16px;
    }
}
*{box-sizing:border-box}.withdrawalPage{margin:0;min-height:100vh;background:#f3f8fb;color:#173047;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}.withdrawal{width:min(760px,calc(100% - 32px));margin:0 auto;padding:40px 0 70px}.withdrawal__brand{display:inline-flex;align-items:center;margin:0 0 22px;text-decoration:none}.withdrawal__brand img{width:auto;height:50px}.withdrawal__card{background:#fff;border:1px solid #dce8ef;border-radius:24px;padding:clamp(24px,5vw,42px);box-shadow:0 18px 48px rgba(32,72,102,.08)}.withdrawal__eyebrow{margin:0 0 8px;color:#187c91;font-size:12px;font-weight:850;letter-spacing:.08em;text-transform:uppercase}.withdrawal h1{margin:0 0 14px;font-size:clamp(28px,5vw,40px);line-height:1.1;color:#102a40}.withdrawal p{line-height:1.65;color:#50677a}.withdrawal__icon{display:grid;place-items:center;width:56px;height:56px;margin-bottom:18px;border-radius:18px;background:#e7f7f1;color:#13745f;font-size:28px;font-weight:900}.withdrawal__message{margin:20px 0;padding:14px 16px;border-radius:14px;font-weight:700}.withdrawal__message--error{background:#fff0ed;border:1px solid #f0b8ad;color:#8a392e}.withdrawal__facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:24px 0}.withdrawal__facts div{padding:14px;border-radius:14px;background:#f5f9fb}.withdrawal__facts dt{font-size:12px;font-weight:800;color:#6a7f90}.withdrawal__facts dd{margin:6px 0 0;font-weight:800;color:#173047}.withdrawal__form{display:grid;gap:18px;margin-top:24px}.withdrawal__field{display:grid;gap:7px;font-weight:750}.withdrawal__field input{width:100%;min-height:46px;padding:10px 12px;border:1px solid #cbdbe5;border-radius:12px;font:inherit;color:#173047;background:#fff}.withdrawal__field input:focus{outline:3px solid rgba(35,154,172,.16);border-color:#239aac}.withdrawal__fieldset{margin:0;padding:0;border:0}.withdrawal__fieldset legend{margin-bottom:10px;font-weight:850}.withdrawal__choice{display:flex;gap:12px;align-items:flex-start;margin:9px 0;padding:13px 14px;border:1px solid #d8e5ed;border-radius:14px;background:#fbfdfe;cursor:pointer}.withdrawal__choice input{margin-top:3px}.withdrawal__choice span{display:grid;gap:3px}.withdrawal__choice small{color:#6b7f8e}.withdrawal__button{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 18px;border:0;border-radius:13px;background:#167f91;color:#fff;font:inherit;font-weight:850;text-decoration:none;cursor:pointer}.withdrawal__button--danger{background:#9f4134}.withdrawal__button--secondary{background:#ecf4f8;color:#234b65}.withdrawal__fineprint{margin:24px 0 0;font-size:13px}.withdrawal__summary{margin:20px 0;padding:16px 18px;border-radius:15px;background:#f5f9fb}.withdrawal__summary ul{margin:8px 0 0;padding-left:20px}@media(max-width:650px){.withdrawal{padding-top:24px}.withdrawal__facts{grid-template-columns:1fr}.withdrawal__card{border-radius:18px}.withdrawal__brand img{height:42px}}

/* Rechtliche Ergänzungen 07.09.2026 */
.withdrawal__brand{gap:10px;color:#102a43;font-weight:900}
.withdrawal__brandMark{width:40px;height:40px;display:grid;place-items:center;border-radius:14px 10px 15px 11px;background:linear-gradient(135deg,#0c6f8f,#11a4a1 55%,#6fd6b8);color:#fff;font-weight:900;transform:rotate(-4deg);box-shadow:0 8px 20px rgba(15,159,143,.18)}
.withdrawal__brandWord{display:flex;gap:4px;align-items:baseline;font-size:20px;letter-spacing:-.03em}.withdrawal__brandWord strong{font-weight:900}.withdrawal__brandWord span{color:#0f9f8f;font-weight:850}
.withdrawal__summary{display:grid;gap:7px}.withdrawal__summary>strong{margin-top:7px}.withdrawal__summary>span{font-size:13px;color:#50677a}
.withdrawal__legalNote{margin:0;padding:13px 14px;border:1px solid #d7e9ed;border-radius:13px;background:#f5fbfc;font-size:12px;line-height:1.55}.withdrawal__legalNote a,.withdrawal__fineprint a{color:#0b7487;font-weight:800;text-underline-offset:2px}
.withdrawalFooter{width:min(760px,calc(100% - 32px));margin:-38px auto 0;padding:0 0 38px;display:flex;justify-content:space-between;gap:22px;align-items:center;color:#718697;font-size:12px}.withdrawalFooter nav{display:flex;gap:14px;flex-wrap:wrap}.withdrawalFooter a{color:#557488;text-decoration:none;font-weight:750}.withdrawalFooter a:hover{text-decoration:underline}.withdrawalFooter p{margin:0;white-space:nowrap}
@media(max-width:650px){.withdrawal__brandMark{width:36px;height:36px}.withdrawal__brandWord{font-size:18px}.withdrawalFooter{margin-top:-42px;align-items:flex-start;flex-direction:column}.withdrawalFooter p{white-space:normal}}

/* =========================================================
   KiWiWo Study – öffentliche Startseite
   Eigenständig zur fuh-auth Oberfläche.
   ========================================================= */

:root{
    --landing-navy:#102a43;
    --landing-blue:#0e7490;
    --landing-cyan:#0ea5b7;
    --landing-teal:#0f9f8f;
    --landing-mint:#78d8c7;
    --landing-sky:#e9f8fc;
    --landing-ice:#f5fbfd;
    --landing-text:#1f425d;
    --landing-muted:#617b8f;
    --landing-border:#d7edf2;
    --landing-shadow:0 18px 60px rgba(24,73,96,.12);
    --landing-radius:28px;
    --landing-container:1180px;
}

body.fuh-auth.kiwiwo-public-landing-page,
body.fuh-auth:has(.kiwiwoLanding){
    margin:0;
    min-height:100vh;
    background:#fff !important;
    background-image:none !important;
    color:var(--landing-text);
    overflow-x:clip;
    font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

body.fuh-auth.kiwiwo-public-landing-page::before,
body.fuh-auth:has(.kiwiwoLanding)::before{
    display:none !important;
}

body.fuh-auth.kiwiwo-public-landing-page #wrapper,
body.fuh-auth.kiwiwo-public-landing-page #container,
body.fuh-auth.kiwiwo-public-landing-page #main,
body.fuh-auth.kiwiwo-public-landing-page #main .inside,
body.fuh-auth:has(.kiwiwoLanding) #wrapper,
body.fuh-auth:has(.kiwiwoLanding) #container,
body.fuh-auth:has(.kiwiwoLanding) #main,
body.fuh-auth:has(.kiwiwoLanding) #main .inside{
    width:100% !important;
    max-width:none !important;
    min-height:0 !important;
    margin:0 !important;
    padding:0 !important;
    display:block !important;
    background:#fff !important;
}

body.fuh-auth.kiwiwo-public-landing-page #main,
body.fuh-auth:has(.kiwiwoLanding) #main{
    float:none !important;
}

body.fuh-auth.kiwiwo-public-landing-page .mod_article,
body.fuh-auth:has(.kiwiwoLanding) .mod_article{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:0 !important;
}

.kiwiwoLanding,
.kiwiwoLanding *{
    box-sizing:border-box;
}

.kiwiwoLanding{
    width:100vw;
    margin-left:calc(50% - 50vw);
    color:var(--landing-text);
    background:#fff;
    line-height:1.55;
    position:relative;
    z-index:1;
}

.kiwiwoLanding a{color:inherit;text-decoration:none}
.kiwiwoLanding button{font:inherit}
.kiwiwoLanding h1,
.kiwiwoLanding h2,
.kiwiwoLanding h3,
.kiwiwoLanding p{margin-top:0}

.landingContainer{
    width:min(var(--landing-container),calc(100% - 48px));
    margin-inline:auto;
}

.landingHeader{
    position: fixed;
    top:0 !important;
    left:0;
    right:0;
    width:100%;
    z-index:1000 !important;
    isolation:isolate;
    background:#fff;
    -webkit-backdrop-filter:blur(18px) saturate(160%);
    backdrop-filter:blur(18px) saturate(160%);
    border-bottom:1px solid #d7edf2;
    box-shadow:0 1px 0 rgba(16,42,67,.03);
    transition:box-shadow .2s ease,background .2s ease;
}

.landingHeader.is-scrolled{
    background:#fff;
    box-shadow:0 10px 30px rgba(31,66,93,.12);
}

.landingHeader__inner{
    height:74px;
    position:relative;
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:28px;
    align-items:center;
}

.landingBrand{
    display:inline-flex;
    align-items:center;
    gap:10px;
    min-width:max-content;
}

.landingBrand__mark{
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border-radius:14px 10px 15px 11px;
    background:linear-gradient(135deg,#0c6f8f 0%,#11a4a1 55%,#6fd6b8 100%);
    box-shadow:0 8px 20px rgba(15,159,143,.22);
    transform:rotate(-4deg);
    position:relative;
    overflow:hidden;
}

.landingBrand__mark::after{
    content:"";
    width:21px;
    height:21px;
    border:2px solid rgba(255,255,255,.3);
    border-radius:50%;
    position:absolute;
    right:-8px;
    top:-6px;
}

.landingBrand__k{
    color:#fff;
    font-size:19px;
    font-weight:900;
    font-style:normal;
    transform:rotate(4deg);
}

.landingBrand__wordmark{
    display:flex;
    align-items:baseline;
    gap:4px;
    color:var(--landing-navy);
    font-size:20px;
    letter-spacing:-.03em;
}

.landingBrand__wordmark strong{font-weight:900}
.landingBrand__wordmark span{color:var(--landing-teal);font-weight:800}
.landingBrand__wordmark small{display:none}

.landingNav{
    display:flex;
    justify-content:center;
    gap:24px;
    font-size:14px;
    font-weight:800;
    color:var(--landing-navy) !important;
}

.kiwiwoLanding .landingNav a{
    padding:10px 6px;
    position:relative;
    color:#214f67 !important;
    opacity:1 !important;
    font-weight:800 !important;
    text-shadow:none !important;
    border-radius:10px;
    transition:color .18s ease,background .18s ease;
}

.kiwiwoLanding .landingNav a:hover,
.kiwiwoLanding .landingNav a:focus-visible{
    color:#087f88 !important;
    background:#eef9fa;
    outline:none;
}

.landingNav a::after{
    content:"";
    position:absolute;
    left:0;right:100%;bottom:4px;
    height:2px;
    border-radius:99px;
    background:linear-gradient(90deg,var(--landing-blue),var(--landing-teal));
    transition:right .18s ease;
}
.landingNav a:hover::after,.landingNav a:focus-visible::after{right:0}

.landingHeader__actions{display:flex;align-items:center;gap:10px}
.landingTextButton{
    border:0;background:transparent;color:var(--landing-navy);font-weight:800;cursor:pointer;padding:10px 12px;border-radius:12px;
}
.landingTextButton:hover,.landingTextButton:focus-visible{background:#eef9fb;outline:none}

.landingButton{
    min-height:48px;
    padding:0 22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border:0;
    border-radius:16px;
    background:linear-gradient(135deg,#0c8798,#11a487);
    color:#fff !important;
    font-weight:850;
    box-shadow:0 12px 26px rgba(14,133,145,.18);
    cursor:pointer;
    transition:transform .18s ease,box-shadow .18s ease;
}
.landingButton:hover,.landingButton:focus-visible{transform:translateY(-2px);box-shadow:0 16px 32px rgba(14,133,145,.24);outline:none}
.landingButton--small{min-height:42px;padding:0 18px;border-radius:14px;font-size:14px}
.landingButton--secondary{
    color:var(--landing-navy)!important;
    background:#fff;
    border:1px solid #b8dfe6;
    box-shadow:none;
}
.landingButton--secondary:hover,.landingButton--secondary:focus-visible{background:#f2fbfc;box-shadow:0 10px 22px rgba(20,82,105,.08)}

.landingNavToggle{display:none}

.landingHero{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 12% 12%,rgba(121,218,204,.24),transparent 25%),
        radial-gradient(circle at 88% 20%,rgba(116,208,235,.24),transparent 28%),
        linear-gradient(180deg,#f9fdfe 0%,#fff 100%);
    border-bottom:1px solid #e8f3f6;
}

.landingHero__grid{
    min-height:610px;
    padding:86px 0 78px;
    display:grid;
    grid-template-columns:minmax(0,1.02fr) minmax(420px,.98fr);
    gap:62px;
    align-items:center;
}

.landingEyebrow{
    margin-bottom:12px!important;
    color:#0d7993;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.12em;
}

.landingHero h1{
    margin-bottom:22px;
    color:var(--landing-navy);
    font-size:clamp(42px,5.2vw,70px);
    line-height:1.02;
    letter-spacing:-.045em;
    font-weight:930;
}
.landingHero h1 span{
    background:linear-gradient(90deg,#0c7f9a,#0ca08e 72%);
    background-clip:text;-webkit-background-clip:text;color:transparent;
}
.landingHero__lead{
    max-width:680px;
    margin-bottom:28px!important;
    color:#4f6e83;
    font-size:18px;
    line-height:1.72;
}
.landingHero__actions{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:24px}
.landingPlayMini{width:24px;height:24px;border-radius:50%;display:grid;place-items:center;background:#dff6f7;color:#0a8892;font-size:9px}
.landingHero__trust{display:flex;gap:18px;flex-wrap:wrap;color:#627c8e;font-size:13px;font-weight:700}
.landingHero__trust b{color:#0ba08f;margin-right:5px}

.landingHero__visual{position:relative}
.landingVideo{
    width:100%;
    min-height:235px;
    border:1px solid #cce7ed;
    border-radius:24px;
    padding:0;
    overflow:hidden;
    position:relative;
    background:#eaf7fa;
    text-align:left;
    cursor:pointer;
    box-shadow:0 16px 38px rgba(27,78,100,.13);
    transition:transform .18s ease,box-shadow .18s ease;
}
.landingVideo:hover,.landingVideo:focus-visible{transform:translateY(-3px);box-shadow:0 20px 44px rgba(27,78,100,.18);outline:3px solid rgba(14,165,183,.14);outline-offset:2px}
.landingVideo--hero{min-height:385px;border-radius:30px;background:#dff4f5}
.landingVideo__screen{position:absolute;inset:0 0 64px;display:block;background:linear-gradient(145deg,#ecfbfd,#dff3f6)}
.landingVideo__screen--hero{inset:0 0 70px;background:linear-gradient(145deg,#122f43 0%,#1a5264 48%,#76cfc8 100%)}
.landingVideo__screen--hero::before{
    content:"";position:absolute;inset:0;background:
    radial-gradient(circle at 77% 30%,rgba(255,255,255,.2),transparent 18%),
    linear-gradient(120deg,transparent 0 46%,rgba(255,255,255,.07) 46% 58%,transparent 58%);
}
.landingVideo__browserbar{height:34px;padding:12px 14px;display:flex;gap:6px;background:rgba(255,255,255,.1)}
.landingVideo__browserbar i{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.7)}
.landingVideo__heroUi{position:absolute;left:34px;right:34px;bottom:32px;display:grid;gap:12px;color:white}
.landingVideo__heroBadge{font-size:10px;letter-spacing:.14em;font-weight:900;color:#a9f1e6}
.landingVideo__heroTitle{font-size:28px;font-weight:900;letter-spacing:-.03em}
.landingVideo__heroProgress{height:10px;border-radius:999px;background:rgba(255,255,255,.18);overflow:hidden}
.landingVideo__heroProgress i{display:block;width:68%;height:100%;background:linear-gradient(90deg,#6ce4cd,#c8f8e9)}
.landingVideo__heroCards{display:grid;grid-template-columns:repeat(3,1fr);gap:9px}
.landingVideo__heroCards i{height:45px;border-radius:10px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.18)}
.landingVideo__play{
    position:absolute;left:50%;top:42%;transform:translate(-50%,-50%);
    width:72px;height:72px;border-radius:50%;display:grid;place-items:center;padding-left:4px;
    background:rgba(255,255,255,.95);color:#0b9a9c;font-size:24px;box-shadow:0 12px 32px rgba(15,58,77,.24);z-index:4;
}
.landingVideo:not(.landingVideo--hero) .landingVideo__play{width:56px;height:56px;font-size:18px;top:43%}
.landingVideo__caption{
    position:absolute;left:0;right:0;bottom:0;min-height:64px;padding:12px 16px;
    display:flex;align-items:center;justify-content:space-between;gap:12px;
    background:rgba(255,255,255,.96);color:var(--landing-navy);z-index:3;
}
.landingVideo__caption strong{font-size:14px}
.landingVideo__caption small{font-size:11px;color:#78909f;font-weight:700}
.landingNote{font-family:"Segoe Print","Bradley Hand",cursive;color:#27708f;font-size:18px;line-height:1.35;transform:rotate(-5deg)}
.landingNote--hero{position:absolute;right:-40px;top:-45px}

.landingProblem{padding:42px 0;background:#fff}
.landingProblem__grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.landingProblem__card{
    min-height:315px;
    padding:34px;
    border:1px solid var(--landing-border);
    border-radius:var(--landing-radius);
    overflow:hidden;
    position:relative;
    display:grid;grid-template-columns:1.05fr .95fr;gap:18px;align-items:center;
}
.landingProblem__card h2{margin-bottom:13px;color:var(--landing-navy);font-size:28px;line-height:1.18;letter-spacing:-.03em}
.landingProblem__card p:not(.landingEyebrow){color:#607b8e;margin-bottom:0}
.landingProblem__card--chaos{background:linear-gradient(135deg,#fbfdff,#f2f8fb)}
.landingProblem__card--solution{background:linear-gradient(135deg,#f2fbfc,#e8faf5)}
.landingChaos{height:220px;position:relative}
.landingChaos__paper{position:absolute;width:120px;height:145px;border-radius:12px;background:white;border:1px solid #c9dfe7;box-shadow:0 12px 25px rgba(42,87,105,.12);display:grid;place-items:center;color:#6e8798;font-weight:900}
.landingChaos__paper--1{left:18px;top:48px;transform:rotate(-8deg)}
.landingChaos__paper--2{left:65px;top:26px;transform:rotate(4deg)}
.landingChaos__paper--3{left:110px;top:65px;transform:rotate(10deg)}
.landingChaos__bubble{position:absolute;right:0;top:0;padding:9px 12px;border-radius:16px 16px 16px 3px;background:#fff;border:1px solid #c9e8ed;color:#286982;font-size:12px;font-weight:850;transform:rotate(4deg)}
.landingSolutionPoints{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.landingSolutionPoints span{min-height:96px;padding:14px;border-radius:18px;background:rgba(255,255,255,.76);border:1px solid rgba(168,224,219,.75);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center}
.landingSolutionPoints i{font-style:normal;color:#0c938e;font-size:25px;margin-bottom:4px}
.landingSolutionPoints b{color:#1b5265;font-size:13px}
.landingSolutionPoints small{color:#75909a;font-size:11px}

.landingPath{padding:54px 0 66px;background:linear-gradient(180deg,#fbfeff,#f4fbfc);border-block:1px solid #e2f1f4;scroll-margin-top:86px}
.landingSectionHead{max-width:760px;margin:0 auto 34px;text-align:center}
.landingSectionHead--left{margin-left:0;text-align:left}
.landingSectionHead h2,.landingEcosystem__head h2,.landingModules h2,.landingTrust h2,.landingFaq h2,.landingFinalCta h2{color:var(--landing-navy);font-size:clamp(30px,3vw,42px);line-height:1.12;letter-spacing:-.035em;margin-bottom:12px}
.landingSectionHead p:not(.landingEyebrow){color:#6b8293;margin-bottom:0;font-size:16px}
.landingPath__steps{list-style:none;padding:0;margin:34px 0 0;display:grid;grid-template-columns:repeat(7,1fr);gap:10px;counter-reset:none}
.landingPath__steps li{min-height:150px;padding:16px 10px;border-radius:20px;background:white;border:1px solid #d9edf0;text-align:center;position:relative;display:flex;flex-direction:column;align-items:center;box-shadow:0 7px 20px rgba(41,87,104,.06)}
.landingPath__steps li:not(:last-child)::after{content:"›";position:absolute;right:-10px;top:58px;color:#5abcc2;font-size:24px;font-weight:900;z-index:2}
.landingPath__steps li>span{position:absolute;left:10px;top:10px;width:22px;height:22px;display:grid;place-items:center;border-radius:50%;background:#e2f7f4;color:#087d7d;font-size:10px;font-weight:900}
.landingPath__steps i{width:44px;height:44px;border-radius:15px;background:linear-gradient(135deg,#16a0a4,#27b59a);color:#fff;display:grid;place-items:center;font-size:18px;font-style:normal;margin:4px 0 10px}
.landingPath__steps strong{color:#214c61;font-size:13px;margin-bottom:5px}
.landingPath__steps small{color:#78909f;font-size:10px;line-height:1.35}

.landingFeatures{padding:78px 0;background:#fff;scroll-margin-top:86px}
.landingFeatureGrid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.landingFeature{min-height:345px;padding:22px;border-radius:26px;border:1px solid #d9edf1;display:grid;grid-template-columns:minmax(0,1fr) minmax(230px,.86fr);gap:18px;align-items:stretch;background:#f9fcfd;box-shadow:0 10px 34px rgba(45,89,109,.06)}
.landingFeature--blue{background:linear-gradient(135deg,#f7fcff,#edf8ff)}
.landingFeature--violet{background:linear-gradient(135deg,#fbfaff,#f3f2ff)}
.landingFeature--cyan{background:linear-gradient(135deg,#f8fdff,#ecf9fb)}
.landingFeature--green{background:linear-gradient(135deg,#f8fdf9,#eefaf4)}
.landingFeature--teal{background:linear-gradient(135deg,#f7fdfc,#eefaf8)}
.landingFeature--mint{background:linear-gradient(135deg,#fbfefc,#effbf4)}
.landingFeature__content{padding:4px 0}
.landingFeature__icon{width:42px;height:42px;border-radius:14px;display:grid;place-items:center;margin-bottom:14px;background:#dff4f7;color:#0a8695;font-weight:900;font-size:18px}
.landingFeature h3{color:var(--landing-navy);font-size:21px;line-height:1.2;letter-spacing:-.02em;margin-bottom:10px}
.landingFeature p{color:#5f788b;font-size:14px;line-height:1.6;margin-bottom:12px}
.landingFeature ul{margin:0;padding:0;list-style:none;display:grid;gap:6px;color:#4b6d80;font-size:12px}
.landingFeature li::before{content:"✓";color:#0b9b8d;font-weight:900;margin-right:7px}
.landingFeature .landingVideo{min-height:280px;align-self:stretch}

.landingMock{padding:20px 16px 76px!important;display:flex;flex-direction:column;gap:9px;justify-content:center;align-items:stretch;color:#315a6f}
.landingMock b{font-size:14px;line-height:1.35;color:#234b60}
.landingMock i,.landingMock em{font-style:normal;font-size:11px;padding:8px 10px;border-radius:10px;background:white;border:1px solid #d5e8ed;color:#527385}
.landingMock--flashcard b{padding:34px 10px;text-align:center;background:white;border-radius:14px;border:1px solid #d2e9ef}
.landingMock--flashcard i{height:8px;padding:0;background:linear-gradient(90deg,#13a3a5 65%,#dceff2 65%);border:0}
.landingMock--flashcard em{text-align:center;color:#0b8e92;font-weight:850}
.landingMock--quiz i:nth-of-type(2){border-color:#77d6bd;background:#edfdf6;color:#0a8069;font-weight:800}
.landingMock--exam em{align-self:flex-end;color:#cb4e59;font-weight:900}
.landingMock--exam i{height:11px;padding:0;background:#cfe5eb;border:0}
.landingMock--progress{align-items:center;justify-content:center}
.landingMock--progress strong{width:92px;height:92px;border-radius:50%;display:grid;place-items:center;border:10px solid #27b39f;background:white;color:#1c6672;font-size:22px}
.landingMock--progress i{height:14px;width:72%;padding:0;background:linear-gradient(90deg,#63c8ce,#bceee7);border:0}
.landingMock--chat i:last-child{margin-left:18px;background:#e8faf4;border-color:#bae9d9}
.landingMock--plan i{display:block}

.landingEcosystem{padding:44px 0 58px;background:#f6fbfc;border-block:1px solid #e3f1f4}
.landingEcosystem__head{display:flex;align-items:end;justify-content:space-between;gap:28px;margin-bottom:24px}
.landingEcosystem__head p:not(.landingEyebrow){color:#6b8392;max-width:360px;text-align:right}
.landingEcosystem__items{display:grid;grid-template-columns:repeat(8,1fr);gap:10px}
.landingEcosystem__items span{min-height:112px;padding:13px 8px;border-radius:18px;background:#fff;border:1px solid #dceef1;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center}
.landingEcosystem__items i{font-style:normal;width:36px;height:36px;border-radius:12px;background:#e4f7f6;color:#0a8a8d;display:grid;place-items:center;margin-bottom:7px;font-weight:900}
.landingEcosystem__items b{font-size:11px;color:#244f63}
.landingEcosystem__items small{font-size:9px;color:#8196a2}

.landingModules{padding:72px 0;background:#fff;scroll-margin-top:86px}
.landingModules__grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:48px;align-items:center}
.landingModules__intro p:not(.landingEyebrow){color:#667f91;line-height:1.72;margin-bottom:0}
.landingModuleChips{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.landingModuleChip{min-height:72px;padding:13px 14px;border-radius:17px;border:1px solid #d9edf0;background:linear-gradient(135deg,#fbfeff,#f2fafb);display:flex;flex-direction:column;justify-content:center}
.landingModuleChip strong{color:#125d73;font-size:13px;margin-bottom:3px}
.landingModuleChip small{color:#657f90;font-size:10px;line-height:1.35}

.landingPricing{padding:76px 0;background:linear-gradient(180deg,#f4fbfc,#eff9f9);border-block:1px solid #dceef1;scroll-margin-top:86px}
.landingPricing__grid{display:grid;grid-template-columns:1fr 1fr .9fr;gap:18px;align-items:stretch}
.landingPriceCard,.landingPriceNote{padding:26px;border-radius:24px;background:#fff;border:1px solid #d6e9ed;box-shadow:0 12px 30px rgba(39,82,101,.07)}
.landingPriceCard--primary{border-color:#9ddfd8;box-shadow:0 16px 34px rgba(16,147,133,.11)}
.landingPriceCard__badge{display:inline-flex;padding:6px 10px;border-radius:999px;background:#eaf8f7;color:#087c7e;font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.landingPriceCard__price{display:flex;align-items:flex-start;gap:4px;margin:17px 0 0;color:#0b8f8a}
.landingPriceCard__price strong{font-size:50px;line-height:.95;letter-spacing:-.05em}
.landingPriceCard__price span{font-weight:900;font-size:20px}
.landingPriceCard>p{color:#6a8392;font-size:13px;margin:8px 0 18px}
.landingPriceCard ul{list-style:none;padding:0;margin:0;display:grid;gap:8px;color:#547284;font-size:12px}
.landingPriceCard li{display:flex;gap:8px}.landingPriceCard li b{color:#0a9a89}
.landingPriceNote{background:linear-gradient(145deg,#1b5e70,#0e8a80);color:white;display:flex;flex-direction:column;justify-content:center}
.landingPriceNote>span{font-size:34px;color:#bdf7e9;margin-bottom:12px}
.landingPriceNote h3{font-size:22px;line-height:1.2;margin-bottom:10px;color:#fff}
.landingPriceNote p{font-size:13px;color:#d9f4f1;line-height:1.65;margin-bottom:16px}
.landingPriceNote a{font-weight:900;color:#fff;text-decoration:underline;text-underline-offset:3px}

.landingTrustFaq{padding:76px 0;background:#fff;scroll-margin-top:86px}
.landingTrustFaq__grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:42px}
.landingTrust{padding:32px;border-radius:28px;background:linear-gradient(145deg,#f6fbff,#edf9f8);border:1px solid #d8ecef;position:relative;overflow:hidden}
.landingTrust__shield{width:56px;height:56px;border-radius:18px;display:grid;place-items:center;background:linear-gradient(135deg,#1596ad,#19a88d);color:white;font-size:25px;font-weight:900;margin-bottom:22px}
.landingTrust>p:not(.landingEyebrow){color:#5e798b;line-height:1.72}
.landingTrust__facts{display:grid;gap:9px;margin-top:22px;color:#466a7d;font-size:13px;font-weight:700}
.landingTrust__facts b{color:#0a9a88;margin-right:7px}
.landingFaq h2{margin-bottom:18px}
.landingFaq details{border-bottom:1px solid #dbe9ed;padding:0}
.landingFaq summary{list-style:none;cursor:pointer;padding:17px 44px 17px 0;color:#284e62;font-weight:800;position:relative}
.landingFaq summary::-webkit-details-marker{display:none}
.landingFaq summary::after{content:"+";position:absolute;right:8px;top:12px;width:28px;height:28px;border-radius:50%;display:grid;place-items:center;background:#eaf7f7;color:#0b8587;font-size:18px}
.landingFaq details[open] summary::after{content:"−"}
.landingFaq details p{padding:0 42px 18px 0;margin:0;color:#627d8f;font-size:14px;line-height:1.65}

.landingFinalCta{padding:0 0 38px;background:#fff}
.landingFinalCta__inner{padding:42px 46px;border-radius:30px;background:
    radial-gradient(circle at 90% 0,rgba(174,244,225,.35),transparent 33%),
    linear-gradient(135deg,#eaf8fc,#eefaf4);border:1px solid #d4ecef;display:flex;align-items:center;justify-content:space-between;gap:36px;position:relative;overflow:hidden}
.landingFinalCta__inner>div:first-child{max-width:730px}
.landingFinalCta__inner p:not(.landingEyebrow){color:#607d8f;margin-bottom:0}
.landingFinalCta__actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}

.landingFooter{padding:28px 0 34px;background:#f7fbfc;border-top:1px solid #e0eef1}
.landingFooter__inner{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    gap:30px;
    align-items:center;
}

.landingFooter__inner > .landingBrand{
    justify-self:start;
}

.landingFooter__inner > nav{
    justify-self:center;
}

.landingFooter__inner > p{
    justify-self:end;
}
.landingBrand--footer .landingBrand__mark{width:34px;height:34px}
.landingBrand--footer .landingBrand__wordmark{position:relative;padding-bottom:13px;font-size:17px}
.landingBrand--footer .landingBrand__wordmark small{display:block;position:absolute;left:0;bottom:0;white-space:nowrap;color:#718797;font-size:8px;font-weight:700;letter-spacing:.01em}
.landingFooter nav{display:flex;gap:18px;font-size:11px;font-weight:750;color:#668092}
body.fuh-auth .kiwiwoLanding .landingFooter nav a,
body.fuh-auth:has(.kiwiwoLanding) .landingFooter nav a{
    color:#587487 !important;
    text-decoration:none;
    opacity:1;
}

body.fuh-auth .kiwiwoLanding .landingFooter nav a:hover,
body.fuh-auth .kiwiwoLanding .landingFooter nav a:focus-visible,
body.fuh-auth:has(.kiwiwoLanding) .landingFooter nav a:hover,
body.fuh-auth:has(.kiwiwoLanding) .landingFooter nav a:focus-visible{
    color:#0b8587 !important;
    text-decoration:underline;
}
.landingFooter nav a:hover{text-decoration:underline}
.landingFooter p{margin:0;color:#8497a2;font-size:10px}

.landingVideoToast{
    position:fixed;right:24px;bottom:24px;z-index:110;width:min(390px,calc(100vw - 32px));padding:18px 46px 18px 18px;border-radius:18px;background:#143f52;color:white;box-shadow:0 18px 50px rgba(10,47,63,.28);border:1px solid rgba(255,255,255,.12)
}
.landingVideoToast[hidden]{display:none}
.landingVideoToast strong{display:block;margin-bottom:4px;font-size:14px}
.landingVideoToast span{display:block;color:#d4edf0;font-size:12px;line-height:1.45}
.landingVideoToast button{position:absolute;right:9px;top:9px;width:28px;height:28px;border:0;border-radius:50%;background:rgba(255,255,255,.1);color:white;cursor:pointer}

/* Login als Modal auf der Startseite. Ohne JS bleibt das Login normal sichtbar. */
body.fuh-auth.kiwiwo-public-landing-page .kiwiwo-login-modal-close,
body.fuh-auth:has(.kiwiwoLanding) .kiwiwo-login-modal-close{display:none}

body.fuh-auth.kiwiwo-public-landing-page.kiwiwo-public-landing-enhanced .mod_login{
    display:none;
}

body.fuh-auth.kiwiwo-public-landing-page.kiwiwo-public-landing-enhanced.kiwiwo-public-login-open .mod_login{
    display:block !important;
    position:fixed !important;
    z-index:130 !important;
    inset:50% auto auto 50% !important;
    transform:translate(-50%,-50%) !important;
    width:min(560px,calc(100vw - 34px)) !important;
    max-height:calc(100vh - 40px);
    overflow:auto !important;
    margin:0 !important;
}

body.fuh-auth.kiwiwo-public-landing-page.kiwiwo-public-login-open .mod_login .kiwiwo-login-modal-close{
    display:grid;
    place-items:center;
    position:absolute;
    z-index:20;
    right:13px;
    top:13px;
    width:34px;
    height:34px;
    padding:0;
    border:1px solid rgba(214,244,255,.3);
    border-radius:50%;
    background:rgba(9,48,70,.58);
    color:white;
    font-size:24px;
    cursor:pointer;
}

.kiwiwoPublicLoginBackdrop{
    position:fixed;inset:0;z-index:120;border:0;background:rgba(7,27,39,.66);backdrop-filter:blur(7px);cursor:pointer
}
.kiwiwoPublicLoginBackdrop[hidden]{display:none}
body.kiwiwo-public-login-open{overflow:hidden}

@media (max-width:1100px){
    .landingHeader__inner{gap:18px}.landingNav{gap:15px}
    .landingHero__grid{grid-template-columns:1fr 1fr;gap:36px}
    .landingFeature{grid-template-columns:1fr}.landingFeature .landingVideo{min-height:235px}
    .landingEcosystem__items{grid-template-columns:repeat(4,1fr)}
    .landingPricing__grid{grid-template-columns:1fr 1fr}.landingPriceNote{grid-column:1/-1}
}

@media (max-width:900px){
    .landingContainer{width:min(var(--landing-container),calc(100% - 32px))}
    .landingHeader__inner{height:68px;grid-template-columns:auto auto 1fr}.landingNavToggle{display:flex;width:40px;height:40px;border:0;background:#edf8fa;border-radius:12px;flex-direction:column;justify-content:center;align-items:center;gap:4px;cursor:pointer}.landingNavToggle span{width:18px;height:2px;background:#24546a;border-radius:99px}
    .landingNav{display:none;position:absolute;left:16px;right:16px;top:76px;padding:12px;border-radius:18px;background:#fff;border:1px solid #d8ebef;box-shadow:0 18px 40px rgba(28,69,88,.16);flex-direction:column;gap:0}.landingNav.is-open{display:flex}.kiwiwoLanding .landingNav a{padding:12px 13px;border-radius:10px;color:#173f58 !important}.kiwiwoLanding .landingNav a:hover,.kiwiwoLanding .landingNav a:focus-visible{background:#eef9fa;color:#087f88 !important}.landingNav a::after{display:none}
    .landingHeader__actions{
        justify-self:end;
        display:flex;
        align-items:center;
        gap:6px;
    }

    .landingTextButton{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        padding:8px 6px;
        font-size:13px;
        white-space:nowrap;
    }
    .landingHero__grid{min-height:0;padding:64px 0;grid-template-columns:1fr}.landingHero__visual{max-width:680px;width:100%}.landingNote--hero{right:0;top:-36px}
    .landingProblem__grid,.landingTrustFaq__grid,.landingModules__grid{grid-template-columns:1fr}
    .landingPath__steps{grid-template-columns:repeat(4,1fr)}.landingPath__steps li:not(:last-child)::after{display:none}
    .landingFeatureGrid{grid-template-columns:1fr}
    .landingEcosystem__head{align-items:flex-start;flex-direction:column}.landingEcosystem__head p:not(.landingEyebrow){text-align:left}
    .landingFinalCta__inner{align-items:flex-start;flex-direction:column}.landingFinalCta__actions{justify-content:flex-start}
    .landingFooter__inner{grid-template-columns:1fr;text-align:center;justify-items:center}.landingFooter nav{flex-wrap:wrap;justify-content:center}
}

@media (max-width:680px){
    .landingContainer{width:min(var(--landing-container),calc(100% - 24px))}
    .landingHeader__inner{grid-template-columns:auto auto 1fr;gap:8px}.landingBrand__wordmark{font-size:17px}.landingBrand__mark{width:34px;height:34px}.landingHeader__actions .landingButton{padding:0 12px;font-size:12px}.landingNavToggle{justify-self:end}
    .landingHero__grid{padding:52px 0}.landingHero h1{font-size:clamp(38px,11vw,52px)}.landingHero__lead{font-size:16px}.landingHero__actions{flex-direction:column;align-items:stretch}.landingButton{width:100%}.landingHero__trust{display:grid;gap:8px}
    .landingVideo--hero{min-height:330px}.landingVideo__heroUi{left:20px;right:20px}.landingVideo__heroTitle{font-size:23px}.landingVideo__play{width:62px;height:62px}
    .landingProblem__card{grid-template-columns:1fr;padding:24px}.landingChaos{height:190px}.landingProblem__card h2{font-size:25px}
    .landingPath__steps{grid-template-columns:1fr 1fr}.landingPath__steps li{min-height:135px}
    .landingFeatures{padding:58px 0}.landingFeature{padding:18px}.landingFeature h3{font-size:19px}
    .landingEcosystem__items{grid-template-columns:repeat(2,1fr)}
    .landingModuleChips{grid-template-columns:1fr}
    .landingPricing__grid{grid-template-columns:1fr}.landingPriceNote{grid-column:auto}.landingPriceCard,.landingPriceNote{padding:22px}
    .landingTrustFaq{padding:58px 0}.landingTrust{padding:24px}
    .landingFinalCta__inner{padding:30px 24px}
    .landingFooter nav{gap:12px}
    .landingNote--hero{display:none}
    .landingHeader__actions{
        gap:4px;
    }

    .landingTextButton{
        padding:7px 4px;
        font-size:12px;
    }

    .landingHeader__actions .landingButton{
        min-height:40px;
        padding:0 10px;
        font-size:12px;
    }
}

@media (prefers-reduced-motion:reduce){
    .kiwiwoLanding *{scroll-behavior:auto!important;transition:none!important}
}

*{box-sizing:border-box}
.learningFundPage{margin:0;min-height:100vh;background:linear-gradient(180deg,#f1f8fb 0%,#f7fbf9 100%);color:#173047;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}
.learningFund{width:min(900px,calc(100% - 32px));margin:0 auto;padding:40px 0 72px}
.learningFund__brand{display:inline-flex;align-items:center;margin:0 0 22px;text-decoration:none}
.learningFund__brand img{width:auto;height:50px}
.learningFund__hero,.learningFund__card{background:#fff;border:1px solid #dce8ef;border-radius:24px;padding:clamp(24px,5vw,42px);box-shadow:0 18px 48px rgba(32,72,102,.08)}
.learningFund__hero{position:relative;overflow:hidden}
.learningFund__hero::after{content:"";position:absolute;right:-90px;top:-90px;width:260px;height:260px;border-radius:50%;background:radial-gradient(circle,rgba(68,196,174,.18),rgba(68,196,174,0) 70%);pointer-events:none}
.learningFund__heart{display:grid;place-items:center;width:58px;height:58px;margin-bottom:18px;border-radius:18px;background:#e9f8f4;font-size:28px}
.learningFund__eyebrow{margin:0 0 8px;color:#187c91;font-size:12px;font-weight:850;letter-spacing:.08em;text-transform:uppercase}
.learningFund h1,.learningFund h2{margin:0;color:#102a40;line-height:1.12}
.learningFund h1{font-size:clamp(30px,5vw,44px)}
.learningFund h2{font-size:clamp(23px,4vw,31px)}
.learningFund__lead,.learningFund__sectionHead p{max-width:720px;line-height:1.7;color:#50677a}
.learningFund__balance{display:grid;gap:4px;width:min(470px,100%);margin-top:28px;padding:18px 20px;border:1px solid #bfe3db;border-radius:18px;background:linear-gradient(135deg,#eefaf6,#eff8fc)}
.learningFund__balance span{font-size:13px;font-weight:800;color:#497083}
.learningFund__balance strong{font-size:clamp(30px,5vw,42px);line-height:1.15;color:#176a63}
.learningFund__balance small{color:#5d7484;line-height:1.45}
.learningFund__stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin:16px 0}
.learningFund__stats div{display:grid;gap:7px;padding:17px 18px;border:1px solid #dbe7ed;border-radius:17px;background:rgba(255,255,255,.78)}
.learningFund__stats span{font-size:12px;line-height:1.35;color:#647b8c;font-weight:750}
.learningFund__stats strong{font-size:22px;color:#183d58}
.learningFund__card{margin-top:16px}
.learningFund__card--help{background:linear-gradient(135deg,#fff,#f4fbf8)}
.learningFund__sectionHead p:last-child{margin-bottom:0}
.learningFund__amounts{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.learningFund__amounts a,.learningFund__button{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 18px;border:1px solid #c4dfe4;border-radius:13px;background:#f5fbfc;color:#185a6b;font-weight:850;text-decoration:none;transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease}
.learningFund__amounts a:hover,.learningFund__button:hover{transform:translateY(-1px);border-color:#71b9bd;box-shadow:0 8px 20px rgba(30,99,112,.10)}
.learningFund__amounts a.learningFund__amounts--highlight{background:#167f91;color:#fff;border-color:#167f91;gap:8px}
.learningFund__amounts small{font-size:11px;padding:2px 6px;border-radius:999px;background:rgba(255,255,255,.18)}
.learningFund__button{margin-top:22px;background:#167f91;color:#fff;border-color:#167f91}
.learningFund__fineprint{margin:18px 0 0;color:#6b7f8e;font-size:13px;line-height:1.55}
.learningFund__motto{text-align:center;margin:28px 0 0;color:#214f67;font-size:16px}
@media(max-width:760px){.learningFund__stats{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:520px){.learningFund{padding-top:24px}.learningFund__brand img{height:42px}.learningFund__hero,.learningFund__card{border-radius:18px}.learningFund__stats{grid-template-columns:1fr 1fr}.learningFund__amounts a{flex:1 1 calc(50% - 5px)}.learningFund__amounts a:last-child{flex-basis:100%}}

/* Lernfonds-Antrag */
.learningFund__hero--application{margin-bottom:16px}.learningFund__backLink{display:inline-flex;margin-top:18px;color:#27687a;text-decoration:none;font-weight:800}.learningFund__message{margin:0 0 16px;padding:13px 16px;border-radius:12px;font-weight:750}.learningFund__message.is-success{background:#ecfdf5;border:1px solid #a7e2c5;color:#166534}.learningFund__message.is-error{background:#fff1f0;border:1px solid #f2b4ad;color:#8c352c}.learningFund__card--compact{padding-block:20px}.learningFundApplication__form{display:grid;gap:18px;margin-top:22px}.learningFundApplication__identity{display:grid;grid-template-columns:150px 1fr;gap:12px}.learningFundApplication__identity label,.learningFundApplication__reason{display:grid;gap:6px}.learningFundApplication__identity span,.learningFundApplication__reason>span{font-size:12px;font-weight:850;color:#496579}.learningFundApplication__identity input,.learningFundApplication__reason textarea{width:100%;padding:11px 12px;border:1px solid #c9dbe3;border-radius:10px;background:#fff;color:#173047;font:inherit}.learningFundApplication__identity input[readonly]{background:#f4f8fa;color:#526a7c}.learningFundApplication__reason textarea{min-height:150px;resize:vertical;line-height:1.55}.learningFundApplication__reason small{color:#6b7f8e}.learningFundApplication__privacy{padding:13px 15px;border-radius:11px;background:#f4f9fb;color:#536e80;font-size:13px;line-height:1.55}.learningFundApplication__privacy a{color:#176d7d}.learningFund__button--submit{justify-self:start;border:0;cursor:pointer;font:inherit}.learningFundApplication__statusRow{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-top:16px;color:#647b8c;font-size:13px}.learningFundApplication__status{display:inline-flex;padding:5px 10px;border-radius:999px;font-size:12px;font-weight:850;background:#eef4f6;color:#506b7d}.learningFundApplication__status.is-pending{background:#fff7df;color:#7a5a0a}.learningFundApplication__status.is-success{background:#eaf8f2;color:#176a52}.learningFundApplication__credit{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-top:18px}.learningFundApplication__credit div{display:grid;gap:5px;padding:13px 14px;border-radius:12px;background:#eff8f5}.learningFundApplication__credit span{font-size:11px;color:#647b8c}.learningFundApplication__credit strong{font-size:16px;color:#176a63}@media(max-width:680px){.learningFundApplication__identity{grid-template-columns:1fr}.learningFundApplication__credit{grid-template-columns:1fr 1fr}}@media(max-width:420px){.learningFundApplication__credit{grid-template-columns:1fr}}


/* Geschützter Lernfonds-Antrag innerhalb der User-Shell */
.learningFundInternal{display:grid;gap:16px;width:100%;max-width:1180px;margin:0 auto;padding:4px 0 28px;color:#173047}
.learningFundInternal__hero{display:flex;align-items:flex-start;gap:18px;position:relative;padding:24px 26px;border:1px solid #dce8ef;border-radius:20px;background:linear-gradient(135deg,#fff,#f2fbf8);box-shadow:0 14px 34px rgba(32,72,102,.07)}
.learningFundInternal__hero .learningFund__heart{flex:0 0 auto;margin:0}
.learningFundInternal__hero h1{margin:0;color:#102a40;font-size:clamp(25px,3.2vw,36px);line-height:1.15}
.learningFundInternal__hero p:not(.learningFund__eyebrow){max-width:780px;margin:9px 0 0;color:#50677a;line-height:1.65}
.learningFundInternal__publicLink{margin-left:auto;white-space:nowrap;color:#27687a;text-decoration:none;font-size:13px;font-weight:800}
.learningFundInternal__card{padding:24px 26px;border:1px solid #dce8ef;border-radius:18px;background:#fff;box-shadow:0 12px 30px rgba(32,72,102,.06)}
.learningFundInternal__card--compact{padding-block:18px}
.learningFundInternal .learningFund__sectionHead p{max-width:850px}
.learningFundInternal .learningFund__button{margin-top:18px}
@media(max-width:760px){.learningFundInternal__hero{display:grid;padding:20px}.learningFundInternal__publicLink{margin-left:0}.learningFundInternal__card{padding:20px}}

/* Lernfonds-Antrag: Semester-/Modulauswahl und Fondsstatus */
.learningFundApplication__fundNotice{display:grid;gap:5px;margin:18px 0;padding:14px 16px;border:1px solid #cfe1e7;border-radius:12px;background:#f3f9fb;color:#35566a}.learningFundApplication__fundNotice strong{color:#1b5f70}.learningFundApplication__fundNotice span{font-size:13px;line-height:1.5}.learningFundApplication__fundNotice.is-empty{border-color:#e7cda5;background:#fff9ef;color:#725626}.learningFundApplication__fundNotice.is-empty strong{color:#8a5a13}.learningFundApplication__modules{margin:18px 0 0;padding:16px;border:1px solid #d5e2e8;border-radius:13px;background:#fbfdfe}.learningFundApplication__modules legend{padding:0 6px;font-size:14px;font-weight:850;color:#274b62}.learningFundApplication__moduleGrid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;margin:7px 0 9px}.learningFundApplication__moduleOption{display:flex!important;align-items:flex-start;gap:10px;padding:12px 13px;border:1px solid #d8e4ea;border-radius:11px;background:#fff;cursor:pointer}.learningFundApplication__moduleOption input{width:auto!important;min-height:0!important;margin-top:3px;accent-color:#168795}.learningFundApplication__moduleOption span{display:grid;gap:2px}.learningFundApplication__moduleOption strong{font-size:13px;color:#173b55}.learningFundApplication__repeatBadge{display:inline-flex;align-items:center;margin-left:7px;padding:2px 7px;border-radius:999px;background:#eef8f4;color:#176a52;font-size:10px;font-weight:850;vertical-align:middle}.learningFundApplication__moduleOption small{font-size:11px;color:#708391}.learningFundApplication__modules>small{display:block;color:#6f8190;font-size:11px;line-height:1.45}.learningFundApplication__requested{display:grid;grid-template-columns:max-content minmax(0,1fr);gap:7px 14px;margin:16px 0;padding:13px 15px;border-radius:11px;background:#f5f9fb}.learningFundApplication__requested span{font-size:11px;font-weight:800;color:#718493}.learningFundApplication__requested strong{font-size:13px;color:#25485f}.learningFund__button--submit:disabled{opacity:.5;cursor:not-allowed}@media(max-width:680px){.learningFundApplication__moduleGrid{grid-template-columns:1fr}.learningFundApplication__requested{grid-template-columns:1fr;gap:3px}.learningFundApplication__requested span:not(:first-child){margin-top:7px}}

.glossaryPage{max-width:1040px;margin:0 auto;padding:22px}.glossaryHero{margin-bottom:18px}.glossaryHero__eyebrow{font-size:12px;text-transform:uppercase;letter-spacing:.12em;color:#79d5c5}.glossaryHero h1{color:#fff;margin:3px 0;font-size:32px}.glossaryHero p{margin:0;color:rgba(255,255,255,.82)}.glossarySearch{display:flex;gap:8px;background:#fff;padding:12px;border-radius:14px;margin-bottom:12px}.glossarySearch__field{flex:1}.glossarySearch input{width:100%;border:1px solid #ccdbe3;border-radius:9px;padding:10px}.glossarySearch button,.glossarySearch a{border:0;border-radius:9px;padding:10px 13px;background:#1c7890;color:#fff;text-decoration:none;font-weight:700;display:inline-flex;align-items:center;justify-content:center}.glossarySearch a{background:#edf4f6;color:#31576a}.glossaryAlphabet{display:flex;flex-wrap:wrap;gap:6px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.11);border-radius:14px;padding:10px}.glossaryAlphabet__item{width:31px;height:31px;border-radius:8px;display:inline-flex;align-items:center;justify-content:center;text-decoration:none;background:#fff;color:#31576a;font-size:12px;font-weight:800}.glossaryAlphabet__item.is-active{background:#79d5c5;color:#153949}.glossaryAlphabet__item.is-disabled{opacity:.28;cursor:default}.glossaryMeta{color:rgba(255,255,255,.8);margin:10px 2px}.glossaryList{display:grid;gap:13px}.glossaryEntry{background:#fff;border:1px solid #dce7ef;border-radius:16px;padding:17px;box-shadow:0 8px 22px rgba(27,64,90,.06)}.glossaryEntry__head{display:flex;justify-content:space-between;gap:12px}.glossaryEntry__type{text-transform:uppercase;letter-spacing:.08em;font-size:11px;color:#52818b}.glossaryEntry h2{margin:3px 0 8px;color:#1d3a50}.glossaryEntry__verified{align-self:flex-start;border-radius:999px;padding:4px 8px;background:#e8f8f1;color:#1d6e53;font-size:11px;font-weight:700}.glossaryEntry__definition{font-size:16px;line-height:1.55;color:#253f52}.glossaryEntry__definition p:first-child{margin-top:0}.glossaryEntry__definition p:last-child{margin-bottom:0}.glossaryEntry__aliases{margin-top:10px;color:#607587;font-size:13px}.glossaryEntry__details{margin-top:12px;border-top:1px solid #e7eef2;padding-top:10px}.glossaryEntry__details summary{cursor:pointer;color:#27677b;font-weight:750;list-style:none}.glossaryEntry__details summary::-webkit-details-marker{display:none}.glossaryEntry__details summary::after{content:'＋';margin-left:6px}.glossaryEntry__details[open] summary::after{content:'−'}.glossaryEntry__explanation{padding-top:10px;line-height:1.6;color:#425b6c}.glossaryEntry__relations{margin-top:13px;padding-top:12px;border-top:1px solid #e7eef2;color:#38576a}.glossaryEntry__relations>strong{display:block;margin-bottom:7px;font-size:13px}.glossaryEntry__relationList{display:flex;gap:7px;flex-wrap:wrap}.glossaryEntry__relationList a{display:inline-flex;gap:5px;align-items:center;border-radius:999px;background:#edf7f6;padding:6px 9px;text-decoration:none;color:#31576a;font-size:12px}.glossaryEntry__relationList a span{color:#66808d}.glossaryEntry__context{display:flex;gap:6px;flex-wrap:wrap;margin-top:12px}.glossaryEntry__context span{border-radius:999px;background:#edf4f7;padding:4px 8px;font-size:11px;color:#4b6878}.glossaryNotice{background:#fff;border:1px solid #dce7ef;border-radius:14px;padding:15px;color:#31576a}.glossaryPagination{display:flex;justify-content:center;gap:14px;align-items:center;margin-top:18px}.glossaryPagination a,.glossaryPagination span{background:#fff;border-radius:999px;padding:7px 11px;text-decoration:none;color:#31576a}.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}@media(max-width:650px){.glossaryPage{padding:14px}.glossarySearch{flex-direction:column}.glossaryEntry__head{display:block}.glossaryEntry__verified{display:inline-flex;margin-bottom:8px}.glossaryAlphabet{gap:5px}.glossaryAlphabet__item{width:29px;height:29px}}

:root{
    --legal-navy:#102a43;
    --legal-blue:#0e7490;
    --legal-teal:#0f9f8f;
    --legal-text:#294e63;
    --legal-muted:#657f90;
    --legal-border:#d8ebef;
    --legal-bg:#f6fbfc;
    --legal-container:980px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body.legalPage{
    margin:0;
    min-height:100vh;
    color:var(--legal-text);
    background:#fff;
    font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    line-height:1.7;
}
a{color:#0b7487;text-underline-offset:3px}
a:hover{color:#079486}
.legalContainer{width:min(var(--legal-container),calc(100% - 40px));margin-inline:auto}

.legalHeader{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(255,255,255,.96);
    border-bottom:1px solid var(--legal-border);
    backdrop-filter:blur(14px);
}
.legalHeader__inner{height:70px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.legalBrand{display:inline-flex;align-items:center;gap:10px;text-decoration:none;color:var(--legal-navy)}
.legalBrand__mark{
    width:38px;height:38px;border-radius:14px 10px 15px 11px;display:grid;place-items:center;
    color:#fff;font-weight:900;background:linear-gradient(135deg,#0c6f8f,#11a4a1 55%,#6fd6b8);
    box-shadow:0 8px 20px rgba(15,159,143,.18);transform:rotate(-4deg)
}
.legalBrand__word{display:flex;gap:4px;align-items:baseline;font-size:20px;letter-spacing:-.03em}
.legalBrand__word strong{font-weight:900}.legalBrand__word span{color:var(--legal-teal);font-weight:850}
.legalHeader__nav{display:flex;gap:20px;align-items:center;font-size:14px;font-weight:800}
.legalHeader__nav a{text-decoration:none;color:#315b70}

.legalMain{padding:62px 0 76px;background:linear-gradient(180deg,#fbfeff 0,#fff 220px)}
.legalDocument{max-width:820px;margin:0 auto}
.legalDocument--wide{max-width:900px}
.legalDocument__hero{padding:36px 38px;margin-bottom:24px;border:1px solid var(--legal-border);border-radius:28px;background:linear-gradient(135deg,#f5fbfe,#edf9f7)}
.legalEyebrow{margin:0 0 8px;color:#0a8591;font-size:12px;font-weight:900;letter-spacing:.11em;text-transform:uppercase}
.legalDocument__hero h1{margin:0 0 10px;color:var(--legal-navy);font-size:clamp(34px,5vw,54px);line-height:1.05;letter-spacing:-.04em}
.legalDocument__hero p:last-child{margin:0;color:var(--legal-muted);font-size:16px}

.legalDocument section{padding:28px 30px;margin:0 0 16px;border:1px solid #e0edf0;border-radius:22px;background:#fff;box-shadow:0 8px 28px rgba(37,82,102,.045)}
.legalDocument h2{margin:0 0 12px;color:var(--legal-navy);font-size:22px;line-height:1.28;letter-spacing:-.02em}
.legalDocument p{margin:0 0 13px}.legalDocument p:last-child{margin-bottom:0}
.legalHint{padding:14px 16px;border-radius:14px;background:#eff9f8;border:1px solid #cfece7;color:#285e67}
.legalActionBox{display:flex;align-items:center;justify-content:space-between;gap:28px;background:linear-gradient(135deg,#eefafa,#e9f8f3)!important;border-color:#bfe7df!important}
.legalActionBox h2{margin-bottom:6px}.legalActionBox p{color:#58788a}
.legalButton{min-height:46px;padding:0 20px;border-radius:14px;display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;text-decoration:none!important;color:#fff!important;font-weight:850;background:linear-gradient(135deg,#0d8798,#0fa384);box-shadow:0 12px 24px rgba(14,133,145,.16)}
.legalFormSample{padding:20px;border:1px dashed #a8cfd7;border-radius:16px;background:#f9fcfd}
.legalFormSample p{margin:0 0 12px}.legalFormSample p:last-child{margin-bottom:0}

.legalFooter{padding:28px 0;border-top:1px solid var(--legal-border);background:var(--legal-bg)}
.legalFooter__inner{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:24px}
.legalFooter .legalBrand--footer{justify-self:start}
.legalBrand--footer .legalBrand__mark{width:34px;height:34px}
.legalBrand__footerText{display:flex;flex-direction:column;align-items:flex-start;line-height:1.1}
.legalBrand--footer .legalBrand__word{font-size:17px}
.legalBrand__footerText small{margin-top:4px;color:#718797;font-size:8px;font-weight:700;letter-spacing:.01em;white-space:nowrap}
.legalFooter nav{display:flex;gap:18px;flex-wrap:wrap;justify-content:center;justify-self:center;font-size:13px;font-weight:800}
.legalFooter nav a{text-decoration:none;color:#557488}
.legalFooter p{justify-self:end;margin:0;color:#8094a0;font-size:12px}

@media (max-width:900px){
    .legalFooter__inner{grid-template-columns:1fr;justify-items:center;text-align:center}
    .legalFooter .legalBrand--footer,.legalFooter nav,.legalFooter p{justify-self:center}
}

@media (max-width:700px){
    .legalContainer{width:min(var(--legal-container),calc(100% - 24px))}
    .legalHeader__inner{height:auto;min-height:66px;padding:10px 0}.legalHeader__nav{gap:10px;font-size:12px}
    .legalBrand__word{font-size:17px}.legalBrand__mark{width:34px;height:34px}
    .legalMain{padding:34px 0 54px}
    .legalDocument__hero{padding:28px 22px;border-radius:22px}
    .legalDocument section{padding:23px 20px;border-radius:18px}
    .legalActionBox{align-items:stretch;flex-direction:column}.legalButton{width:100%}
    .legalFooter__inner{grid-template-columns:1fr;justify-items:center;text-align:center}.legalFooter .legalBrand--footer,.legalFooter nav,.legalFooter p{justify-self:center}.legalFooter nav{gap:12px 16px}
}

