/* ===================================================================
   DIE PRODUKTTAFEL — DIE FEINEN TEILE

   Raster und Kacheln stehen in `farben-koennen.css`. Hier: die Mitte
   mit dem Rad, der Farbstreifen darunter, die schwarze Kachel und das
   Kleingedruckte.

   Getrennt, weil beide Dateien sonst über dreihundert Zeilen kämen —
   und weil die Trennung inhaltlich stimmt: Dort steht, WIE die Tafel
   liegt, hier, WAS darauf zu sehen ist.
   =================================================================== */

:root[data-thema] .fk-mitte {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0.5rem 0.25rem;
}

:root[data-thema] .fk-kopf {
    margin-bottom: 0.5rem;
    text-align: center;
}

:root[data-thema] .fk-anriss {
    max-width: 46ch;
    margin: 0 0 1.4rem;
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--k-text-still);
}

:root[data-thema] .fk-rad {
    position: relative;
    width: min(220px, 62vw);
    aspect-ratio: 1;
    flex: none;
}

:root[data-thema] .fk-rad-ring,
:root[data-thema] .fk-rad-scheibe,
:root[data-thema] .fk-rad-feld {
    position: absolute;
    display: block;
}

:root[data-thema] .fk-rad-ring {
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(#f00 0deg, #ff0 60deg, #0f0 120deg,
            #0ff 180deg, #00f 240deg, #f0f 300deg, #f00 360deg);
    -webkit-mask-image: radial-gradient(transparent 76.8%, #000 77.2%);
    mask-image: radial-gradient(transparent 76.8%, #000 77.2%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

:root[data-thema] .fk-rad-scheibe {
    inset: 11.4%;
    border-radius: 50%;
    background: var(--k-verlauf);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

:root[data-thema] .fk-rad-feld {
    top: 50%;
    left: 50%;
    width: 45.5%;
    height: 45.5%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background:
        linear-gradient(to top, #000, transparent),
        linear-gradient(to right, #fff, transparent),
        hsl(217, 91%, 60%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

:root[data-thema] .fk-rad-punkt {
    position: absolute;
    left: 62%;
    top: 30%;
    width: 12px;
    height: 12px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

:root[data-thema] .fk-palette {
    width: 100%;
    margin-top: 1.4rem;
}

:root[data-thema] .fk-palette-reihen {
    display: flex;
    justify-content: center;
    gap: clamp(0.35rem, 1vw, 0.6rem);
}

:root[data-thema] .fk-palette-spalte {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

:root[data-thema] .fk-palette-spalte i {
    display: block;
    width: clamp(9px, 1.6vw, 13px);
    height: clamp(9px, 1.6vw, 13px);
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

:root[data-thema] .fk-kachel--schwarz {
    border-color: rgba(255, 255, 255, 0.09);
    background: #0b0d16;
    background-image: none;
    color: #f5f6fa;
}

:root[data-thema] .fk-kachel--schwarz .fk-klein {
    color: rgba(245, 246, 250, 0.62);
}

:root[data-thema] .fk-gross--hell {
    background: var(--k-verlauf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

:root[data-thema] .fk-fussnote {
    grid-column: 1 / -1;
    margin: clamp(0.6rem, 1.2vw, 1rem) 0 0;
    padding-top: 0.9rem;
    border-top: 1px solid var(--k-rand-seite);
    font-size: 0.68rem;
    line-height: 1.55;
    text-align: justify;
    color: var(--k-text-still);
    opacity: 0.85;
}
