/* ============================================================================
   resono-work · app.css

   Wörtlich aus den Prototypen übernommen:
     design-referenz/Matching Tool Intern.dc.html
     design-referenz/Resono Admin Backend.dc.html

   Die Prototypen arbeiten mit Inline-Styles. Hier stehen dieselben Werte als
   Klassen — keine Farbe, kein Abstand, kein Radius wurde verändert.
   Bewusst KEIN globales box-sizing: die Prototypen setzen border-box nur an
   einer Stelle (Passwortfeld), und ein globaler Wert würde Feldbreiten
   verschieben.
   ========================================================================= */

/* ---------------------------------------------------------------- Schrift */
/* Space Grotesk lokal — kein Google-CDN (DSGVO). Variable Font, deckt 400–700. */

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/space-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/space-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------------------------------------------------------------- Tokens */

:root {
  --bg: #FAF8F4;
  --dark: #1A1720;
  --green: #2E8A5F;
  --green-link-hover: #1F6B45;
  --green-btn-hover: #3EA878;
  --grey: #6E6880;
  --accent: #9BD4A8;
  --mint: #8FD8B0;
  --error: #C0392B;
  --white: #FFFFFF;
  --ink-2: #4E4860;
  --ink-3: #3A3548;
  --muted: #A8A2B4;
  --blue: #2F6FB5;
  --line: rgba(26, 23, 32, .08);
  --line-strong: rgba(26, 23, 32, .14);
}

/* ---------------------------------------------------------------- Basis */

html, body {
  margin: 0;
  padding: 0;
  background: #FAF8F4;
  color: #1A1720;
  font-family: 'Space Grotesk', sans-serif;
}
a { color: #2E8A5F; text-decoration: none; }
a:hover { color: #1F6B45; text-decoration: underline; }
button { font-family: 'Space Grotesk', sans-serif; }
input, select, textarea { font-family: 'Space Grotesk', sans-serif; color: #1A1720; }
img { max-width: 100%; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.6); }
  to   { opacity: 1; transform: scale(1); }
}

.page { min-height: 100vh; background: #FAF8F4; }

/* Das hidden-Attribut muss jede Layout-Regel schlagen. Ohne diese Zeile
   ueberschreibt etwa .modal-backdrop { display: flex } das display:none aus
   dem Browser-Standard — die Dialoge waeren dann immer sichtbar. */
[hidden] { display: none !important; }

/* Sichtbarer Fokus für Tastaturbedienung. Im Prototyp nicht vorhanden,
   ohne ihn wäre die Anwendung aber nicht bedienbar. Nur :focus-visible,
   damit sich für Mausnutzer nichts ändert. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #2E8A5F;
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------- Header */

.hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 32px;
}
.hdr--admin { max-width: 1060px; }

.logo {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  color: #1A1720;
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: none;
}
.logo:hover { text-decoration: none; color: #1A1720; }
.logo__accent { color: #2E8A5F; }
.logo__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #6E6880;
  margin-left: 10px;
}
.logo__badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  background: #1A1720;
  border-radius: 999px;
  padding: 4px 10px;
  margin-left: 10px;
}

.hdr__right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #6E6880;
}

.usermenu { position: relative; }
.usermenu__trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #6E6880;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 12px;
  transition: all .2s;
}
.usermenu__trigger:hover { background: rgba(26, 23, 32, .05); }
.usermenu__arrow { font-size: 11px; color: #6E6880; transition: transform .2s; }
.usermenu[data-open="1"] .usermenu__arrow { transform: rotate(180deg); }

.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E8A5F, #9BD4A8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}
.avatar--flat { background: #1A1720; }

.usermenu__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #FFFFFF;
  border: 1px solid rgba(26, 23, 32, .1);
  border-radius: 14px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 18px 44px rgba(26, 23, 32, .16);
  z-index: 80;
  animation: fadeUp .18s ease both;
}
.usermenu__head {
  padding: 10px 12px 12px;
  border-bottom: 1px solid rgba(26, 23, 32, .08);
  margin-bottom: 6px;
}
.usermenu__name { font-size: 14px; font-weight: 700; color: #1A1720; }
.usermenu__mail { font-size: 12.5px; color: #6E6880; }
.usermenu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #1A1720;
  cursor: pointer;
  transition: all .15s;
  box-sizing: border-box;
  text-decoration: none;
}
.usermenu__item:hover { background: rgba(26, 23, 32, .05); color: #1A1720; text-decoration: none; }
.usermenu__item--danger { color: #C0392B; }
.usermenu__item--danger:hover { background: rgba(192, 57, 43, .07); color: #C0392B; }
.usermenu__sep { height: 1px; background: rgba(26, 23, 32, .08); margin: 6px 0; }

/* ---------------------------------------------------------------- Tabs (Admin) */

.tabsbar { max-width: 1060px; margin: 0 auto; padding: 0 32px 8px; }
.tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid rgba(26, 23, 32, .1);
  padding-bottom: 0;
}
.tab {
  border: none;
  background: none;
  padding: 12px 18px;
  font-size: 14.5px;
  font-weight: 700;
  color: #6E6880;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.tab:hover { color: #1A1720; text-decoration: none; }
.tab[aria-current="page"] { color: #1A1720; border-bottom-color: #2E8A5F; }

/* ---------------------------------------------------------------- Screens */

.screen-login { min-height: 100vh; display: grid; grid-template-columns: 1.05fr 1fr; }
.screen-dash      { max-width: 980px;  margin: 0 auto; padding: 22px 32px 110px; animation: fadeUp .5s ease both; }
.screen-jobnew    { max-width: 640px;  margin: 0 auto; padding: 44px 32px 110px; animation: fadeUp .5s ease both; }
.screen-jobdetail { max-width: 980px;  margin: 0 auto; padding: 36px 32px 110px; animation: fadeUp .5s ease both; }
.screen-settings  { max-width: 640px;  margin: 0 auto; padding: 44px 32px 110px; animation: fadeUp .5s ease both; }
.screen-team      { max-width: 720px;  margin: 0 auto; padding: 44px 32px 110px; animation: fadeUp .5s ease both; }
.screen-invite    { max-width: 600px;  margin: 0 auto; padding: 80px 32px 110px; text-align: center; animation: fadeUp .5s ease both; }
.screen-applyform { max-width: 560px;  margin: 0 auto; padding: 48px 32px 110px; animation: fadeUp .5s ease both; }
.screen-quiz      { max-width: 860px;  margin: 0 auto; padding: 44px 32px 110px; animation: fadeUp .4s ease both; }
.screen-result    { max-width: 640px;  margin: 0 auto; padding: 56px 32px 110px; text-align: center; animation: fadeUp .5s ease both; }
.screen-admin     { max-width: 1060px; margin: 0 auto; padding: 28px 32px 110px; animation: fadeUp .4s ease both; }
.screen-admin--narrow { max-width: 640px; }

/* ---------------------------------------------------------------- Login */

.login__panel {
  background: #1A1720;
  color: #FAF8F4;
  padding: 52px 56px 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.login__glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 138, 95, .5), transparent 68%);
  top: -160px; right: -180px;
  pointer-events: none;
}
.login__brand { font-size: 22px; font-weight: 700; position: relative; }
.login__brand .logo__accent { color: #8FD8B0; }
.login__brandtag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(250, 248, 244, .45);
  margin-top: 6px;
}
.login__copy { position: relative; max-width: 420px; }
.login__copy h1 {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1.4px;
  margin: 0 0 18px;
  text-wrap: balance;
}
.login__copy p {
  margin: 0 0 34px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 248, 244, .68);
}
.login__points { display: flex; flex-direction: column; gap: 14px; }
.login__point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(250, 248, 244, .85);
}
.login__check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(143, 216, 176, .16);
  color: #8FD8B0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.login__legal { position: relative; font-size: 12.5px; color: rgba(250, 248, 244, .4); }

.login__form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 40px 130px;
}
.login__formbox { width: 100%; max-width: 392px; animation: fadeUp .5s ease both; }
.login__formbox h2 {
  font-size: 32px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0 0 8px;
}
.login__lead { margin: 0 0 30px; font-size: 15px; color: #6E6880; line-height: 1.6; }
.login__fields { display: flex; flex-direction: column; gap: 18px; }
.login__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.login__foot {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(26, 23, 32, .1);
  font-size: 14px;
  color: #6E6880;
  line-height: 1.6;
}

.checkline {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 13.5px;
  color: #4E4860;
  cursor: pointer;
}
.checkline input[type="checkbox"] { accent-color: #2E8A5F; width: 16px; height: 16px; }

.pw-wrap { position: relative; display: flex; align-items: center; }
.pw-wrap .input {
  flex: 1;
  width: 100%;
  padding: 14px 74px 14px 16px;
  box-sizing: border-box;
}
.pw-toggle {
  position: absolute;
  right: 8px;
  border: none;
  background: none;
  color: #6E6880;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 8px;
  transition: all .15s;
}
.pw-toggle:hover { color: #2E8A5F; background: rgba(46, 138, 95, .08); }

/* ---------------------------------------------------------------- Typografie */

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #2E8A5F;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.eyebrow--danger { color: #C0392B; }
.eyebrow--tight { margin-bottom: 10px; }
.eyebrow--card { margin-bottom: 18px; }
.eyebrow--card-sm { margin-bottom: 14px; }
.eyebrow--card-md { margin-bottom: 16px; }

.h-40 { font-size: 40px; line-height: 1.08; font-weight: 700; letter-spacing: -1.2px; margin: 0 0 8px; }
.h-36 { font-size: 36px; line-height: 1.1;  font-weight: 700; letter-spacing: -1px;   margin: 0 0 10px; }
.h-36--detail { line-height: 1.08; letter-spacing: -1.2px; margin: 0 0 6px; }
.h-36--plain  { margin: 0 0 30px; }
.h-38 { font-size: 38px; line-height: 1.1;  font-weight: 700; letter-spacing: -1px;   margin: 0 0 10px; }
.h-44 { font-size: 44px; line-height: 1.08; font-weight: 700; letter-spacing: -1.2px; margin: 0 0 10px; }
.h-46 { font-size: 46px; line-height: 1.06; font-weight: 700; letter-spacing: -1.5px; margin: 0 0 16px; text-wrap: balance; }

.lead { margin: 0 0 30px; font-size: 15.5px; color: #6E6880; line-height: 1.6; }
.lead--tight { margin: 0; }
.lead--wide  { margin: 0 0 34px; }
.section-title { font-size: 17px; font-weight: 600; letter-spacing: -.2px; margin-bottom: 12px; }
.section-title--lg { font-size: 19px; letter-spacing: -.3px; margin-bottom: 14px; }
.section-title__hint { font-size: 13px; font-weight: 600; color: #6E6880; }

.backlink {
  border: none;
  background: none;
  color: #6E6880;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 28px;
  display: inline-block;
  text-decoration: none;
}
.backlink:hover { color: #1A1720; text-decoration: none; }
.backlink--24 { margin-bottom: 24px; }
.backlink--30 { margin-bottom: 30px; }
.backlink--0  { margin-bottom: 0; }

/* ---------------------------------------------------------------- Karten */

.card {
  background: #FFFFFF;
  border: 1px solid rgba(26, 23, 32, .08);
  border-radius: 18px;
  padding: 26px;
  margin-bottom: 20px;
}
.card--24 { margin-bottom: 24px; }
.card--26 { margin-bottom: 26px; padding: 24px; }
.card--last { margin-bottom: 24px; }
.card--plain { margin-bottom: 0; }
.card--16 { border-radius: 16px; padding: 20px 22px; margin-bottom: 0; }

.kpis { display: grid; gap: 14px; margin-bottom: 30px; }
.kpis--3 { grid-template-columns: repeat(3, 1fr); }
.kpis--4 { grid-template-columns: repeat(4, 1fr); margin-bottom: 28px; }
.kpi {
  background: #FFFFFF;
  border: 1px solid rgba(26, 23, 32, .08);
  border-radius: 16px;
  padding: 20px 22px;
}
.kpis--4 .kpi { padding: 18px 20px; }
.kpi__value { font-size: 34px; font-weight: 700; letter-spacing: -1px; color: #2E8A5F; }
.kpis--4 .kpi__value { font-size: 30px; }
.kpi__value--dark { color: #1A1720; }
.kpi__label { font-size: 13.5px; font-weight: 600; color: #6E6880; }
.kpis--4 .kpi__label { font-size: 13px; }

.note-green {
  background: rgba(46, 138, 95, .08);
  border: 1px solid rgba(46, 138, 95, .3);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #2E8A5F;
}
.note-green--16 { border-radius: 16px; padding: 18px 20px; font-size: 13px; line-height: 1.6; color: #4E4860; }
.note-green--14 { border-radius: 14px; padding: 16px 20px; font-size: 14.5px; line-height: 1.6; }
.note-green strong { color: #2E8A5F; }
.note-green__body { color: #4E4860; }

.hint-small { font-size: 12.5px; color: #6E6880; line-height: 1.5; }
.footnote { margin-top: 18px; font-size: 12.5px; line-height: 1.6; color: #6E6880; }

/* ---------------------------------------------------------------- Buttons */

.btn {
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: #2E8A5F;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  transition: all .25s;
}
.btn-primary:hover { background: #3EA878; color: #fff; }
.btn-primary--lift:hover { background: #3EA878; transform: translateY(-2px); }
.btn-primary--wide { padding: 15px 26px; font-size: 15px; }
.btn-primary--cta  { padding: 17px 34px; font-size: 16px; }
.btn-primary--save { padding: 16px 30px; font-size: 15.5px; }
.btn-primary--top4 { margin-top: 4px; }
.btn-primary--top10 { margin-top: 10px; }
.btn-primary--top14 { margin-top: 14px; }
.btn-primary--block { display: block; width: 100%; box-sizing: border-box; }

.btn-sm {
  background: #2E8A5F;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: all .2s;
}
.btn-sm:hover { background: #3EA878; color: #fff; }
.btn-sm--13 { padding: 13px 20px; font-size: 13.5px; }
.btn-sm--11 { padding: 11px 18px; font-size: 13.5px; }
.btn-sm--12 { padding: 12px 22px; font-size: 14px; }

.btn-dark {
  background: #1A1720;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: all .2s;
}
.btn-dark:hover { background: #2E8A5F; color: #fff; }
.btn-dark--pad { padding: 10px 16px; font-size: 13px; }

.btn-ghost {
  border: 1.5px solid rgba(26, 23, 32, .14);
  background: transparent;
  color: #1A1720;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s;
}
.btn-ghost:hover { border-color: #1A1720; color: #1A1720; }
.btn-ghost--sm  { padding: 9px 14px;  font-size: 12.5px; white-space: nowrap; }
.btn-ghost--xs  { padding: 8px 14px;  font-size: 12.5px; }
.btn-ghost--md  { padding: 10px 16px; font-size: 13.5px; }

.btn-outline {
  background: #FFFFFF;
  color: #1A1720;
  border: 1.5px solid rgba(26, 23, 32, .14);
  border-radius: 12px;
  padding: 15px;
  font-size: 14.5px;
  font-weight: 600;
  transition: all .2s;
}
.btn-outline:hover { border-color: #2E8A5F; background: rgba(46, 138, 95, .04); color: #1A1720; }

.btn-link {
  border: none;
  background: none;
  color: #2E8A5F;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}
.btn-link:hover { color: #1F6B45; text-decoration: none; }

.btn-icon {
  border: 1.5px solid rgba(26, 23, 32, .12);
  background: transparent;
  color: #6E6880;
  border-radius: 10px;
  width: 36px; height: 36px;
  font-size: 15px;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
  line-height: 1;
}
.btn-icon:hover { border-color: #C0392B; color: #C0392B; }
.btn-icon--34 { width: 34px; height: 34px; font-size: 14px; }
.btn-icon--38 { width: 38px; height: 38px; font-size: 16px; }
.btn-icon--38:hover { border-color: #C0392B; color: #C0392B; background: rgba(192, 57, 43, .06); }
.btn-icon--mail {
  border: 1.5px solid rgba(46, 138, 95, .35);
  background: rgba(46, 138, 95, .06);
  color: #2E8A5F;
  width: 38px; height: 38px;
  font-size: 15px;
}
.btn-icon--mail:hover { background: #2E8A5F; color: #fff; border-color: rgba(46, 138, 95, .35); }
.btn-icon[disabled] { opacity: .3; cursor: not-allowed; }
.btn-icon[disabled]:hover { border-color: rgba(26, 23, 32, .12); color: #6E6880; background: transparent; }

.btn-danger {
  border: none;
  background: #C0392B;
  color: #fff;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}
.btn-danger[disabled] { background: rgba(192, 57, 43, .35); cursor: not-allowed; }

/* ---------------------------------------------------------------- Formulare */

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #6E6880;
}
.field--dialog { gap: 6px; }

.input, .select, .textarea {
  border: 1.5px solid rgba(26, 23, 32, .14);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  background: #FFFFFF;
  outline: none;
}
.select { padding: 13px 14px; }
.input:focus, .select:focus, .textarea:focus { border-color: #2E8A5F; }
.input--login { padding: 14px 16px; transition: border-color .2s; }
.input--error { border-color: #C0392B; }
.input--sm { padding: 12px 14px; font-size: 14.5px; }
.input--xs { padding: 10px 14px; font-size: 13.5px; }
.input--readonly { background: #FAF8F4; color: #6E6880; }
.select--sm { padding: 10px 12px; font-size: 13.5px; }
.textarea { resize: vertical; line-height: 1.55; padding: 12px 14px; font-size: 14.5px; }

.formstack { display: flex; flex-direction: column; gap: 20px; }
.formstack--18 { gap: 18px; }
.formstack--16 { gap: 16px; }
.formstack--14 { gap: 14px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.grid-inline { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: end; }
.grid-inline--10 { gap: 10px; }

.alert-error {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(192, 57, 43, .07);
  border: 1px solid rgba(192, 57, 43, .3);
  border-radius: 11px;
  padding: 12px 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #C0392B;
  animation: fadeUp .2s ease both;
}
.alert-error__mark { flex: none; font-weight: 700; }
.alert-error ul { margin: 0; padding-left: 18px; }

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #A8A2B4;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(26, 23, 32, .12);
}

/* Umschalter im Admin (Plattform-Einstellungen) */
.toggle {
  border: none;
  background: rgba(26, 23, 32, .2);
  border-radius: 999px;
  width: 46px; height: 26px;
  position: relative;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.toggle__knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: left .2s;
}
.toggle[aria-pressed="true"] { background: #2E8A5F; }
.toggle[aria-pressed="true"] .toggle__knob { left: 23px; }

/* Der Umschalter als echtes Formularfeld: die Checkbox liegt unsichtbar über
   dem Schalter, damit er ohne JavaScript funktioniert und per Tastatur
   erreichbar bleibt. Aussehen unverändert zum Prototyp. */
.toggle-wrap {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 26px;
  flex: none;
}
.toggle-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.toggle-input + .toggle { pointer-events: none; }
.toggle-input:checked + .toggle { background: #2E8A5F; }
.toggle-input:checked + .toggle .toggle__knob { left: 23px; }
.toggle-input:focus-visible + .toggle { outline: 3px solid #2E8A5F; outline-offset: 2px; }
.toggle-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}
.toggle-row__title { font-size: 14.5px; font-weight: 600; }
.toggle-row__desc { font-size: 12.5px; color: #6E6880; }

/* ---------------------------------------------------------------- Dashboard */

.dash-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.stack-14 { display: flex; flex-direction: column; gap: 14px; }
.stack-12 { display: flex; flex-direction: column; gap: 12px; }
.stack-10 { display: flex; flex-direction: column; gap: 10px; }
.stack-8  { display: flex; flex-direction: column; gap: 8px; }
.stack-20 { display: flex; flex-direction: column; gap: 20px; }

.joblist-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(26, 23, 32, .08);
  border-radius: 18px;
  padding: 22px 26px;
  transition: all .25s;
}
.joblist-item:hover { border-color: rgba(46, 138, 95, .5); transform: translateY(-2px); }
.joblist-item__head { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.joblist-item__title { font-size: 21px; font-weight: 600; letter-spacing: -.3px; }
.joblist-item__meta { font-size: 13.5px; font-weight: 600; color: #6E6880; margin-bottom: 10px; }
.joblist-item__stats { display: flex; gap: 16px; font-size: 13.5px; color: #4E4860; flex-wrap: wrap; }
.joblist-item__stats strong { color: #1A1720; }
.joblist-item__stats .val-green { color: #2E8A5F; }

.badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
  color: #6E6880;
  background: rgba(26, 23, 32, .06);
}
.badge--green { color: #2E8A5F; background: rgba(46, 138, 95, .12); }
.badge--green-strong { color: #1F6B45; background: rgba(46, 138, 95, .14); }
.badge--inline { margin-left: 6px; }
.badge--warn {
  color: #C0392B;
  background: rgba(192, 57, 43, .1);
}
.badge--count {
  font-size: 12px;
  color: #6E6880;
  background: rgba(26, 23, 32, .05);
  padding: 5px 12px;
  letter-spacing: 0;
}

/* ---------------------------------------------------------------- Fragensets */

.qset {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  text-align: left;
  background: #FFFFFF;
  border: 1.5px solid rgba(26, 23, 32, .1);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all .2s;
  width: 100%;
  box-sizing: border-box;
}
.qset:hover { border-color: #2E8A5F; }
.qset:focus-within { border-color: #2E8A5F; }
/* Der Auswahlzustand haengt an einer versteckten Checkbox, damit die Auswahl
   auch ohne JavaScript funktioniert und per Tastatur bedienbar bleibt. */
.qset:has(input:checked) { border-color: #2E8A5F; }
.qset[aria-pressed="true"] { border-color: #2E8A5F; }
.qset__previews { display: flex; gap: 4px; }
.qset__preview {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}
.qset__name { display: block; font-size: 15px; font-weight: 600; color: #1A1720; margin-bottom: 2px; }
.qset__desc { display: block; font-size: 13px; color: #6E6880; }
.qset__check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(26, 23, 32, .12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.qset:has(input:checked) .qset__check { background: #2E8A5F; }
.qset[aria-pressed="true"] .qset__check { background: #2E8A5F; }

.field-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #6E6880;
}
.field-block__hint { font-size: 13px; font-weight: 400; color: #6E6880; margin-top: -6px; }

/* ---------------------------------------------------------------- Stellendetail */

.detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.detail-head__meta { font-size: 14px; font-weight: 600; color: #6E6880; }

.invitebox {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  background: #1A1720;
  color: #FAF8F4;
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 28px;
}
.invitebox__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #8FD8B0;
  margin-bottom: 6px;
}
.invitebox__url {
  font-size: 14.5px;
  font-family: monospace;
  color: rgba(250, 248, 244, .85);
  word-break: break-all;
}

.applicant {
  display: grid;
  grid-template-columns: 56px 1fr auto auto auto auto;
  gap: 18px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(26, 23, 32, .08);
  border-radius: 16px;
  padding: 16px 22px;
}
.applicant--open { opacity: .6; }
.applicant__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}
.applicant__head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 3px; flex-wrap: wrap; }
.applicant__name { font-size: 18px; font-weight: 600; letter-spacing: -.2px; }
.applicant__meta { font-size: 13px; font-weight: 600; color: #6E6880; }
.applicant__why {
  margin: 8px 0 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #4E4860;
  max-width: 440px;
}
.applicant__why strong { color: #2E8A5F; }
.applicant__score { text-align: right; min-width: 88px; }
.applicant__scorevalue { font-size: 30px; font-weight: 700; letter-spacing: -1px; color: #2E8A5F; }
.applicant__scorevalue--open { color: #A8A2B4; }
.applicant__scoresub { font-size: 11.5px; font-weight: 700; letter-spacing: 1px; color: #6E6880; }
.applicant__actions { display: flex; gap: 8px; align-items: center; }

/* ---------------------------------------------------------------- Team / Listen */

.rowcard {
  display: grid;
  gap: 16px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(26, 23, 32, .08);
  border-radius: 14px;
  padding: 14px 18px;
}
.rowcard--member  { grid-template-columns: 46px 1fr auto auto; }
.rowcard--company { grid-template-columns: 46px 1fr auto auto auto; }
.rowcard--paused  { opacity: .65; }
.rowcard__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.rowcard--company .rowcard__avatar { border-radius: 12px; font-size: 14px; }
.rowcard__name { font-size: 15.5px; font-weight: 600; }
.rowcard__sub  { font-size: 13px; color: #6E6880; }
.rowcard__side { font-size: 12.5px; font-weight: 600; color: #6E6880; white-space: nowrap; }

.rowcard-flat {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  background: #FAF8F4;
  border-radius: 12px;
  padding: 10px 14px;
}
.rowcard-flat__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}
.rowcard-flat--wide { grid-template-columns: 40px 1fr auto; }
.rowcard-flat__name { font-size: 14px; font-weight: 600; }
.rowcard-flat__sub  { font-size: 12.5px; color: #6E6880; }
.rowcard-flat__actions { display: flex; align-items: center; gap: 8px; }

/* Rechtevergabe im Admin-Team */
.permgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.permitem {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  background: #FAF8F4;
  border: 1px solid rgba(26, 23, 32, .08);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all .2s;
}
.permitem:hover { border-color: rgba(46, 138, 95, .5); }
.permitem input[type="checkbox"] { accent-color: #2E8A5F; width: 16px; height: 16px; margin: 2px 0 0; }
.permitem__label { display: block; font-size: 13.5px; font-weight: 600; color: #1A1720; }
.permitem__hint  { display: block; font-size: 12px; line-height: 1.45; color: #6E6880; margin-top: 2px; }
.permitem--super { grid-column: 1 / -1; background: rgba(46, 138, 95, .08); border-color: rgba(46, 138, 95, .3); }

/* Werkzeugleiste auf der Bildkachel */
.imgcard__tools { display: grid; grid-template-columns: 1fr auto; gap: 6px; align-items: center; }
.imgcard__tools .btn-ghost--xs { width: 100%; box-sizing: border-box; }

.logo-tile {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2E8A5F, #9BD4A8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
}
.logo-row { display: flex; align-items: center; gap: 16px; }

/* ---------------------------------------------------------------- Bewerber */

.invite-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid rgba(26, 23, 32, .1);
  border-radius: 999px;
  padding: 8px 18px 8px 8px;
  margin-bottom: 34px;
}
.invite-chip__avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E8A5F, #9BD4A8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.invite-chip__text { font-size: 14px; font-weight: 600; color: #4E4860; }
.invite-lead {
  margin: 0 auto 12px;
  font-size: 16.5px;
  color: #6E6880;
  line-height: 1.6;
  max-width: 460px;
}
.invite-lead strong { color: #1A1720; }
.invite-lead--2 { margin: 0 auto 40px; font-size: 15px; }
.invite-note { margin-top: 16px; font-size: 13px; color: #6E6880; }

.quiz-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.quiz-counter { font-size: 13px; font-weight: 700; color: #6E6880; letter-spacing: 1px; }
.quiz-calib { display: flex; justify-content: center; margin-bottom: 18px; }
.quiz-calib__pill {
  background: rgba(46, 138, 95, .1);
  border: 1px solid rgba(46, 138, 95, .35);
  color: #2E8A5F;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}
.progress {
  height: 4px;
  background: rgba(26, 23, 32, .1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 48px;
}
.progress__bar {
  height: 100%;
  background: linear-gradient(90deg, #2E8A5F, #8FD8B0);
  border-radius: 999px;
  transition: width .5s cubic-bezier(.2, .8, .2, 1);
}
.quiz-question {
  font-size: 38px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0 0 8px;
  text-align: center;
  text-wrap: balance;
}
.quiz-sub { text-align: center; margin: 0 0 42px; font-size: 15px; color: #6E6880; }
.quiz-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.quiz-hint { text-align: center; margin: 34px 0 0; font-size: 13px; color: #A8A2B4; }

.tile {
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #FAF8F4;
  outline: 3px solid transparent;
  outline-offset: 4px;
  box-shadow: 0 10px 30px rgba(26, 23, 32, .12);
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
  display: block;
  width: 100%;
}
.tile:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(26, 23, 32, .2); }
.tile__img { display: block; width: 100%; height: 100%; object-fit: cover; }
.tile__check {
  position: absolute;
  top: 12px; right: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #1A1720;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  opacity: 0;
  transition: opacity .2s;
}
.quiz-grid[data-picked="1"] .tile { opacity: .4; }
.quiz-grid[data-picked="1"] .tile:hover { transform: none; box-shadow: 0 10px 30px rgba(26, 23, 32, .12); }
.tile[aria-pressed="true"] {
  outline-color: #2E8A5F;
  opacity: 1 !important;
  transform: scale(1.03);
}
.tile[aria-pressed="true"]:hover { transform: scale(1.03); }
.tile[aria-pressed="true"] .tile__check { opacity: 1; animation: popIn .3s ease; }

/* ---------------------------------------------------------------- Auswertung */

.score-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: #FFFFFF;
  border: 2px solid #2E8A5F;
  border-radius: 20px;
  padding: 18px 36px;
  margin-bottom: 26px;
}
.score-badge__value { font-size: 64px; font-weight: 700; letter-spacing: -2px; color: #2E8A5F; }
.score-badge__pct { font-size: 26px; font-weight: 700; color: #2E8A5F; }
.score-badge__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #6E6880;
  margin-left: 10px;
}
.radarbox {
  background: #FFFFFF;
  border: 1px solid rgba(26, 23, 32, .08);
  border-radius: 20px;
  padding: 10px;
  display: inline-block;
}
.radarbox svg { display: block; }
.radar-legend {
  display: flex;
  gap: 18px;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 700;
  padding-bottom: 8px;
}
.radar-legend__you { color: #2F6FB5; }
.radar-legend__job { color: #2E8A5F; }
.radar-label { text-anchor: middle; font: 600 13px 'Space Grotesk'; fill: #6E6880; }

.bullets { display: flex; flex-direction: column; gap: 10px; margin: 26px 0 30px; text-align: left; }
.bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #FFFFFF;
  border: 1px solid rgba(26, 23, 32, .08);
  border-radius: 12px;
  padding: 15px 18px;
}
.bullet__mark {
  width: 24px; height: 24px;
  flex: none;
  border-radius: 50%;
  background: rgba(46, 138, 95, .14);
  color: #2E8A5F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.bullet__text { font-size: 14.5px; line-height: 1.55; color: #3A3548; }

/* ---------------------------------------------------------------- Dialoge */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 32, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  animation: fadeUp .2s ease both;
  padding: 24px;
}
.modal {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  max-width: 520px;
  width: calc(100% - 48px);
  box-shadow: 0 30px 80px rgba(26, 23, 32, .3);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-sizing: border-box;
}
.modal--narrow { max-width: 460px; }
.modal__title { font-size: 22px; font-weight: 700; letter-spacing: -.5px; margin-bottom: 18px; }
.modal__title--tight { margin-bottom: 10px; }
.modal__text { margin: 0 0 18px; font-size: 14.5px; line-height: 1.6; color: #4E4860; }
.modal__fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.modal__actions { display: flex; gap: 10px; justify-content: flex-end; }
.modal__confirm {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.5;
  color: #4E4860;
  background: #FAF8F4;
  border-radius: 12px;
  padding: 13px 15px;
  margin-bottom: 20px;
  cursor: pointer;
}
.modal__confirm input[type="checkbox"] { margin-top: 2px; accent-color: #C0392B; }

/* ---------------------------------------------------------------- Toast */

.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1A1720;
  color: #FAF8F4;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(26, 23, 32, .3);
  z-index: 110;
  animation: fadeUp .3s ease both;
  max-width: calc(100% - 48px);
  text-align: center;
}
.toast--error { background: #C0392B; }

/* ---------------------------------------------------------------- Admin */

.admin-grid { display: grid; grid-template-columns: 1fr 340px; gap: 26px; align-items: start; }
.admin-headrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 16px;
  flex-wrap: wrap;
}

.qcard {
  background: #FFFFFF;
  border: 1.5px solid rgba(26, 23, 32, .08);
  border-radius: 16px;
  padding: 18px 20px;
}
.qcard--open { border-color: rgba(46, 138, 95, .5); }
.qcard__head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
}
.qcard--open .qcard__head { margin-bottom: 16px; }
.qcard__title { font-size: 15.5px; font-weight: 600; margin-bottom: 2px; }
.qcard__text { font-size: 13px; color: #6E6880; }
.qcard__tools { display: flex; gap: 6px; }

.imggrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.imgcard { border-radius: 12px; overflow: hidden; border: 1px solid rgba(26, 23, 32, .1); }
.imgcard__thumb { position: relative; aspect-ratio: 4 / 3; background: #FAF8F4; }
.imgcard__thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.imgcard__body { padding: 8px; background: #FFFFFF; }
.imgcard__name { font-size: 11px; font-weight: 700; color: #6E6880; margin-bottom: 4px; }

.weightlist { display: flex; flex-direction: column; gap: 5px; }
.weightrow {
  display: grid;
  grid-template-columns: 12px 1fr 34px;
  gap: 6px;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #6E6880;
}
.weightrow__dot { width: 12px; height: 12px; border-radius: 50%; }
.weightrow__value { text-align: right; font-variant-numeric: tabular-nums; }
.weightrow input[type="range"] { width: 100%; accent-color: #2E8A5F; margin: 0; }

.catrow {
  display: grid;
  grid-template-columns: 14px 1fr auto auto;
  gap: 10px;
  align-items: center;
  background: #FAF8F4;
  border-radius: 10px;
  padding: 9px 12px;
}
.catrow__dot { width: 14px; height: 14px; border-radius: 50%; }
.catrow__name { font-size: 14px; font-weight: 600; }
.catrow__count { font-size: 12px; font-weight: 600; color: #6E6880; }
.catrow__remove {
  border: none;
  background: none;
  color: #A8A2B4;
  font-size: 13px;
  cursor: pointer;
  padding: 2px;
}
.catrow__remove:hover { color: #C0392B; }
.catrow__remove[disabled] { opacity: .3; cursor: not-allowed; }

.addrow { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.sidecard {
  background: #FFFFFF;
  border: 1px solid rgba(26, 23, 32, .08);
  border-radius: 16px;
  padding: 20px 22px;
}
.sidecard p { margin: 0 0 14px; font-size: 13px; line-height: 1.55; color: #6E6880; }
.card p.card__lead { margin: 0 0 16px; font-size: 13px; line-height: 1.55; color: #6E6880; }

/* ---------------------------------------------------------------- Installer */

.install-shell {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 24px 110px;
}
.install-box { width: 100%; max-width: 640px; animation: fadeUp .5s ease both; }
.install-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.install-step {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #6E6880;
  background: rgba(26, 23, 32, .05);
  border-radius: 999px;
  padding: 6px 13px;
}
.install-step--done { color: #1F6B45; background: rgba(46, 138, 95, .14); }
.install-step--current { color: #fff; background: #2E8A5F; }

.checklist { display: flex; flex-direction: column; gap: 8px; }
.checkitem {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  align-items: center;
  background: #FAF8F4;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
}
.checkitem__mark {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: rgba(46, 138, 95, .14);
  color: #2E8A5F;
}
.checkitem--bad .checkitem__mark { background: rgba(192, 57, 43, .1); color: #C0392B; }
.checkitem__name { font-weight: 600; }
.checkitem__value { font-size: 12.5px; font-weight: 600; color: #6E6880; }

/* ---------------------------------------------------------------- Fehlerseite */

.errorpage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  text-align: center;
}
.errorpage__code {
  font-size: 12px;
  font-weight: 700;
  color: #2E8A5F;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.errorpage h1 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0 0 12px;
}
.errorpage p {
  margin: 0 auto 28px;
  font-size: 15.5px;
  color: #6E6880;
  line-height: 1.6;
  max-width: 440px;
}

/* ---------------------------------------------------------------- Responsive */

@media (max-width: 900px) {
  .screen-login { grid-template-columns: 1fr; }
  .login__panel { padding: 40px 28px 56px; }
  .login__copy h1 { font-size: 34px; }
  .login__form { padding: 40px 24px 80px; }
  .admin-grid { grid-template-columns: 1fr; }
  .kpis--4 { grid-template-columns: repeat(2, 1fr); }
  .imggrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .hdr, .hdr--admin { padding: 20px 20px; }
  .tabsbar { padding: 0 20px 8px; }
  .tabs { overflow-x: auto; }
  .screen-dash, .screen-jobnew, .screen-jobdetail, .screen-settings,
  .screen-team, .screen-invite, .screen-applyform, .screen-quiz,
  .screen-result, .screen-admin { padding-left: 20px; padding-right: 20px; }
  .kpis--3, .kpis--4 { grid-template-columns: 1fr; }
  .grid-2, .grid-2-1, .grid-inline, .grid-inline--10 { grid-template-columns: 1fr; }
  .joblist-item { grid-template-columns: 1fr; }
  .applicant { grid-template-columns: 56px 1fr; row-gap: 12px; }
  .applicant__score { text-align: left; }
  .applicant svg, .applicant__score, .applicant__actions { grid-column: 2; }
  .rowcard--member, .rowcard--company { grid-template-columns: 46px 1fr; row-gap: 10px; }
  .rowcard__side, .rowcard .btn-ghost--sm, .rowcard .btn-icon { grid-column: 2; }
  .quiz-grid { grid-template-columns: 1fr; }
  .h-40, .h-38 { font-size: 30px; }
  .h-44, .h-46 { font-size: 32px; }
  .invitebox { grid-template-columns: 1fr; }
  .dash-head { align-items: flex-start; }
  .score-badge { padding: 14px 22px; }
  .score-badge__value { font-size: 48px; }
  .radarbox { max-width: 100%; }
  .radarbox svg { max-width: 100%; height: auto; }
}
