/* ===================================================================
   „WAS ES KOSTEN WIRD" — DIE DREI STUFEN

   Kostenlos, mittel, groß. Sie standen in drei verschieden gefärbten
   Rahmen: grün, neutral, violett.

   ## Warum das weg ist

   Die Seite sagt in ihrem eigenen Vorsatz, sie sei „bewusst ohne
   Kauf-Gestaltung: es gibt nichts zu buchen, also auch keine
   Buchen-Knöpfe". Das war halb eingelöst. Die Knöpfe fehlten, aber die
   Farben taten, was Knöpfe tun: Sie hoben eine Stufe hervor. Grün liest
   sich als „nimm die", Violett als „das ist die richtige" — je nachdem,
   was man gewohnt ist. Beides ist eine Empfehlung ohne Satz dazu.

   Drei gleiche Scheiben, drei verschiedene Preise. Der Preis ist mit
   Abstand das Größte auf der Karte; er braucht keinen Rahmen, der ihm
   zustimmt.
   =================================================================== */

:root[data-thema] .pr-stufen {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

:root[data-thema] .pr-stufe {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.8rem 1.7rem;
    border-width: 1px;
    border-style: solid;
    border-radius: var(--k-rund-gross);
    background: var(--k-vertieft);
    min-width: 0;
}

:root[data-thema] .pr-stufe__kopf {
    padding-bottom: 1.1rem;
    margin-bottom: 1.1rem;
    border-bottom: 1px solid var(--k-rand-dicke);
}

:root[data-thema] .pr-stufe__name {
    margin-bottom: 0.6rem;
    color: var(--k-text-still);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

:root[data-thema] .pr-stufe__preis {
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: clamp(2rem, 6vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    color: var(--k-text);
}

:root[data-thema] .pr-stufe__dazu {
    margin-top: 0.35rem;
    color: var(--k-text-still);
    font-size: 0.82rem;
    font-weight: 600;
}

:root[data-thema] .pr-liste {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

:root[data-thema] .pr-liste li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.65rem;
    color: var(--k-text-leise);
    font-size: 0.9rem;
    line-height: 1.65;
}

:root[data-thema] .pr-liste li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1em;
    font-size: 0.72rem;
    background-image: var(--k-verlauf);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

:root[data-thema] .pr-liste li.pr-liste__minus::before {
    content: "\f068";
    background-image: none;
    -webkit-text-fill-color: var(--k-text-still);
    color: var(--k-text-still);
}

:root[data-thema] .pr-liste__stark {
    color: var(--k-text);
    font-weight: 700;
}

:root[data-thema] .pr-stufe__text {
    margin-top: 1.1rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--k-rand-dicke);
    color: var(--k-text-still);
    font-size: 0.84rem;
    line-height: 1.7;
}

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