/* ==================================================================
   Jobbörse

   Eine Anzeige ist eine Karte wie die Kästen auf der Startseite -
   gleiche Rundung, gleicher Rahmen, gleicher Schatten. Ab 1000px
   stehen zwei nebeneinander.
   ================================================================== */

.jobs {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    margin: 26px 0;
}

@media (min-width: 1000px) {
    .jobs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.job {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 4px solid var(--accent-alt);
    border-radius: calc(var(--radius) - 8px);
    box-shadow: 0 3px 3px rgba(0, 0, 0, .16);
    padding: 22px 24px 0;
    transition: box-shadow .16s;
}
.job:hover { box-shadow: 0 8px 18px rgba(0, 0, 0, .22); }

.job-kopf {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.job-kopf h2 { margin: 0; font-size: 1.14rem; line-height: 1.25; }

.job-abteilung {
    flex: 0 0 auto;
    padding: 3px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    font-size: .74rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.job-teaser {
    margin: 0 0 14px;
    font-weight: 700;
    line-height: 1.45;
}

.job-text p { margin: 0 0 12px; font-size: .9rem; line-height: 1.6; color: var(--muted); }

.job-titel {
    margin: 6px 0 8px;
    font-size: .95rem;
}

.job-liste {
    margin: 0 0 16px;
    padding-left: 20px;
    font-size: .88rem;
    line-height: 1.55;
}
.job-liste li { margin-bottom: 5px; }

/* Der Verwandtschaftsgrad steht unten und ist bewusst als Formularfeld
   einer Behoerde gesetzt - die Pointe braucht den Amtston. */
.job-fuss {
    margin: auto -24px 0;
    padding: 12px 24px 14px;
    border-top: 1px solid var(--border);
    background: color-mix(in srgb, var(--accent) 4%, var(--surface));
    border-radius: 0 0 calc(var(--radius) - 9px) calc(var(--radius) - 9px);
}
.job-marke {
    display: block;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
}
.job-fuss strong { font-size: .98rem; }
.job-hinweis {
    display: block;
    margin-top: 2px;
    font-size: .78rem;
    color: var(--muted);
}

.notice-bewerbung { margin-top: 26px; }
