/* ===================================================================
   „JA, HIER ARBEITET EINE MASCHINE MIT" — DIE EINZELTEILE, TEIL 1

   Die Rechnung, die beiden Säulen, der Merksatz.
   =================================================================== */

:root[data-thema] .ki-rechnung {
    margin: 2rem 0 2.2rem;
    padding-left: 1.4rem;
    border-left: 1px solid var(--k-rand-dicke);
}

:root[data-thema] .ki-rechnung-zeile {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    justify-content: space-between;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--k-rand-dicke);
}

:root[data-thema] .ki-rechnung-zeile:last-child {
    border-bottom: 0;
}

:root[data-thema] .ki-rechnung-was {
    flex: 1 1 22rem;
    color: var(--k-text-leise);
    font-size: 0.97rem;
}

:root[data-thema] .ki-rechnung-wer {
    flex: 0 1 auto;
    color: var(--k-text);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

:root[data-thema] .ki-saeulen {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
    gap: 1.4rem;
}

:root[data-thema] .ki-saeule {
    position: relative;
    padding: 1.8rem 1.7rem;
    border-width: 1px;
    border-style: solid;
    border-radius: var(--k-rund-gross);
    background: var(--k-vertieft);
    overflow: hidden;
}

:root[data-thema] .ki-saeule::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    pointer-events: none;
}

:root[data-thema] .ki-saeule--maschine::before {
    background-image: var(--k-verlauf);
}

:root[data-thema] .ki-saeule--mensch::before {
    background: var(--k-rand-oben);
}

:root[data-thema] .ki-saeule-kopf {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

:root[data-thema] .ki-saeule-zeichen {
    font-size: 1.15rem;
    line-height: 1;
}

:root[data-thema] .ki-saeule h3 {
    margin: 0;
    color: var(--k-text);
    font-size: 1.12rem;
    font-weight: 700;
}

:root[data-thema] .ki-saeule ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

:root[data-thema] .ki-saeule li {
    position: relative;
    padding: 0.6rem 0 0.6rem 1.25rem;
    color: var(--k-text-leise);
    font-size: 0.95rem;
    line-height: 1.62;
    border-bottom: 1px solid var(--k-rand-dicke);
}

:root[data-thema] .ki-saeule li:last-child {
    border-bottom: 0;
}

:root[data-thema] .ki-saeule li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.13rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--k-text-still);
}

:root[data-thema] .ki-merksatz {
    position: relative;
    max-width: 62ch;
    margin: 2.2rem 0 0;
    padding: 1.15rem 1.4rem;
    border-width: 1px;
    border-style: solid;
    border-radius: var(--k-rund-mittel);
    background: var(--k-vertieft);
    color: var(--k-text);
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 720px) {
    :root[data-thema] .ki-rechnung-wer {
        white-space: normal;
    }

    :root[data-thema] .ki-saeule {
        padding: 1.4rem 1.25rem;
    }
}
