/* ===== WELCHE KARTE FUER WELCHE AUFLOESUNG ===== */
/* dunkler Kopf mit Wahlknoepfen, darunter der Satz Zeilen, der dazu passt */

.aufl-mitte {
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 var(--abstand-x-mittel);
    width: 100%;
}

.aufl-kopf {
    background: #1e1e1e;
    color: #fff;
    padding: calc(var(--hoehe-kopf) + 72px) 0 58px;
}
.aufl-kopf .vortitel { color: #c8c3bd; margin-bottom: 12px; }
.aufl-kopf h1 { max-width: 20ch; }
.aufl-lead {
    color: #d9d5d0;
    font-size: 16px;
    line-height: 1.9;
    margin: 20px 0 38px;
    max-width: 68ch;
}

.wahl-reihe { display: flex; flex-wrap: wrap; gap: 12px; }
.wahl-reihe button {
    background: transparent;
    border: 1px solid #55514c;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    letter-spacing: .06em;
    padding: 14px 30px;
    transition: var(--uebergang);
}
.wahl-reihe button:hover { border-color: var(--ton-primaer); }
.wahl-reihe button.gewaehlt {
    background: var(--ton-primaer);
    border-color: var(--ton-primaer);
    color: #fff;
}

.aufl-matrix { padding: 52px 0 10px; }
.matrix-satz[hidden] { display: none; }
.matrix-zeile {
    align-items: baseline;
    border-bottom: 1px solid #e6e1dc;
    display: grid;
    gap: 10px 28px;
    grid-template-columns: 180px 120px 1fr;
    padding: 22px 0;
}
.matrix-zeile:first-child { border-top: 1px solid var(--ton-rand-kopf); }
.matrix-zeile .name { font-size: 18px; font-weight: 500; line-height: 1.4; }
.matrix-zeile .urteil {
    border-radius: 999px;
    display: inline-block;
    font-size: 12px;
    letter-spacing: .1em;
    line-height: 1.6;
    padding: 4px 16px;
    text-align: center;
    text-transform: uppercase;
}
.matrix-zeile .urteil.gut { background: #cc810022; color: #8a5700; }
.matrix-zeile .urteil.mittel { background: #58708620; color: #3f5668; }
.matrix-zeile .urteil.grau { background: #efece9; color: #776e67; }
.matrix-zeile .urteil.schlecht { background: #1e1e1e; color: #fff; }
.matrix-zeile .wort {
    color: var(--ton-text-grau);
    font-size: 15px;
    line-height: 1.85;
    min-width: 0;
}

.aufl-zahlen { padding: 70px 0 20px; }
.zahlen-vor {
    color: var(--ton-text-grau);
    font-size: 15px;
    line-height: 1.9;
    margin: 18px 0 32px;
    max-width: 74ch;
}
.zahlen-tabelle { border-collapse: collapse; width: 100%; }
.zahlen-tabelle th {
    border-bottom: 1px solid var(--ton-rand-kopf);
    color: var(--ton-text-still);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    padding: 0 16px 12px 0;
    text-align: left;
    text-transform: uppercase;
}
.zahlen-tabelle td {
    border-bottom: 1px solid #e6e1dc;
    font-size: 16px;
    padding: 16px 16px 16px 0;
}
.zahlen-tabelle td:first-child { font-weight: 500; width: 30%; }
.zahlen-tabelle tr:hover td { background: var(--ton-flaeche); }
.zahlen-fuss {
    color: var(--ton-text-still);
    font-size: 13px;
    line-height: 1.85;
    margin-top: 20px;
    max-width: 70ch;
}

.aufl-rest {
    display: flex;
    gap: 70px;
    margin: 90px auto 110px;
    max-width: 1180px;
    padding: 0 var(--abstand-x-mittel);
}
.rest-text { width: 58%; }
.rest-text p {
    color: var(--ton-text-grau);
    font-size: 15px;
    line-height: 1.95;
    margin: 16px 0 0;
}
.rest-text .aktion-container { margin-top: 34px; }
.rest-bild { width: 42%; }
.rest-bild img {
    border-radius: 18px 18px 0 0;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .aufl-kopf { padding: calc(var(--hoehe-kopf) + 40px) 0 40px; }
    .matrix-zeile { grid-template-columns: 1fr; gap: 6px; }
    .matrix-zeile .urteil { justify-self: start; }
    .aufl-rest { flex-direction: column; gap: 34px; margin: 60px auto 80px; }
    .rest-text,
    .rest-bild { width: 100%; }
    .rest-bild img { border-radius: 14px; max-height: 340px; }
}

@media screen and (max-width: 575px) {
    .wahl-reihe button { flex: 1 1 100%; padding: 12px 18px; }
    .zahlen-tabelle th:first-child,
    .zahlen-tabelle td:first-child { width: 40%; }
    .zahlen-tabelle td { font-size: 14px; padding-right: 8px; }
}
