/* ===================================================================
   „SPIELE, DIE EINFACH NUR SPIELE SIND" — DIE EINZELTEILE

   Die Ausschlussliste, der Merksatz, die vier Spielgruppen und die
   zehn Bauregeln.
   =================================================================== */

:root[data-thema] .sp-liste {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1.1rem 2rem;
}

:root[data-thema] .sp-punkt {
    position: relative;
    display: flex;
    gap: 0.9rem;
    padding: 1.1rem 0;
}

:root[data-thema] .sp-punkt-zeichen {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 1.6rem;
    height: 1.6rem;
    margin-top: 0.1rem;
    border-radius: 50%;
    background: var(--k-vertieft);
    color: var(--k-text);
    font-size: 0.8rem;
}

:root[data-thema] .sp-punkt strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--k-text);
    font-size: 1rem;
    font-weight: 700;
}

:root[data-thema] .sp-punkt p {
    max-width: 46ch;
    margin: 0;
    color: var(--k-text-leise);
    font-size: 0.92rem;
    line-height: 1.68;
}

:root[data-thema] .sp-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: 1.04rem;
    line-height: 1.7;
}

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

:root[data-thema] .sp-gruppe {
    position: relative;
    padding: 1.4rem 1.5rem 1.5rem;
    border-width: 1px;
    border-style: solid;
    border-radius: var(--k-rund-gross);
    background: var(--k-vertieft);
}

:root[data-thema] .sp-gruppe-kopf {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--k-rand-dicke);
}

:root[data-thema] .sp-gruppe-zeichen {
    font-size: 1.3rem;
    line-height: 1;
    background-image: var(--k-verlauf);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

:root[data-thema] .sp-gruppe-kopf h3 {
    margin: 0;
    color: var(--k-text);
    font-size: 1.02rem;
    font-weight: 600;
}

:root[data-thema] .sp-spielliste {
    margin: 0;
    padding: 0;
    list-style: none;
}

:root[data-thema] .sp-spielliste li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--k-rand-seite);
}

:root[data-thema] .sp-spielliste li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

:root[data-thema] .sp-spielliste b {
    color: var(--k-text);
    font-size: 0.95rem;
    font-weight: 600;
}

:root[data-thema] .sp-spielliste span {
    color: var(--k-text-still);
    font-size: 0.84rem;
    line-height: 1.5;
}

:root[data-thema] .sp-regeln {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr));
    gap: 1.3rem 2rem;
}

:root[data-thema] .sp-regel {
    position: relative;
    display: flex;
    gap: 1rem;
}

:root[data-thema] .sp-regel-nr {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: var(--k-vertieft-tief);
    color: var(--k-text);
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

:root[data-thema] .sp-regel strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--k-text);
    font-size: 1rem;
    font-weight: 600;
}

:root[data-thema] .sp-regel p {
    max-width: 44ch;
    margin: 0;
    color: var(--k-text-leise);
    font-size: 0.92rem;
    line-height: 1.68;
}

@media (max-width: 720px) {
    :root[data-thema] .sp-gruppe {
        padding: 1.25rem 1.25rem 1.35rem;
    }
}
