/* ===================================================================
   „SICHERHEIT" — DIE EINZELTEILE

   Der Hinweis, die dreizehn Karten mit ihrem Zeichen, die drei Pläne
   und die technischen Kurzangaben darunter.
   =================================================================== */

:root[data-thema] .sec-hinweis {
    position: relative;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.3rem 1.5rem;
    border-width: 1px;
    border-style: solid;
    border-radius: var(--k-rund-mittel);
    background: var(--k-vertieft);
    color: var(--k-text-leise);
    font-size: 0.94rem;
    line-height: 1.78;
}

:root[data-thema] .sec-hinweis > i {
    flex-shrink: 0;
    margin-top: 0.3rem;
}

:root[data-thema] .sec-hinweis > i::before {
    background-image: var(--k-verlauf);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

:root[data-thema] .sec-hinweis strong {
    color: var(--k-text);
}

:root[data-thema] .sec-liste {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 0.9rem;
}

:root[data-thema] .sec-karte {
    position: relative;
    padding: 1.3rem 1.4rem;
    border-width: 1px;
    border-style: solid;
    border-radius: var(--k-rund-mittel);
    background: var(--k-vertieft);
    min-width: 0;
}

:root[data-thema] .sec-karte__kopf {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.6rem;
    color: var(--k-text);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.4;
}

:root[data-thema] .sec-karte__kopf > i {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

:root[data-thema] .sec-karte__kopf > i::before {
    background-image: var(--k-verlauf);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

:root[data-thema] .sec-karte p {
    margin-bottom: 0.8rem;
    color: var(--k-text-leise);
    font-size: 0.9rem;
    line-height: 1.75;
}

:root[data-thema] .sec-plan {
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: var(--k-rund-klein);
    background: var(--k-vertieft-tief);
    color: var(--k-text-leise);
    font-size: 0.86rem;
    line-height: 1.7;
}

:root[data-thema] .sec-technik {
    display: block;
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 0.76rem;
    color: var(--k-text-still);
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    :root[data-thema] .sec-liste {
        grid-template-columns: 1fr;
    }
}
