/* ===================================================================
   AERONA SPACE – AERONA OFFICE, Teil 4: die zweite Reihe

   Achtzehn Programme alle gleich groß darzustellen wäre gelogen: Die
   ersten acht sind der Kern, die übrigen zehn sind weitergedachte
   Möglichkeiten. Deshalb hier eine knappere Darstellung – kleiner,
   dichter, ohne den Anspruch der großen Karten.
   =================================================================== */

.of-zwischen {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin: 3.2rem 0 0.6rem;
    font-size: 1.18rem;
    font-weight: 750;
    color: #e2e8f0;
}

/* Feine Linie, die den Rest der Zeile füllt */
.of-zwischen::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(167, 139, 250, 0.3), transparent);
}

.of-zwischen__zahl {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a78bfa;
    background: rgba(167, 139, 250, 0.12);
    border: 1px solid rgba(167, 139, 250, 0.26);
    padding: 2px 8px;
    border-radius: 5px;
}

.of-liste {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.7rem;
    margin-top: 1.6rem;
}

.of-eintrag {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.95rem 1.05rem;
    border-radius: 11px;
    background: rgba(15, 23, 42, 0.38);
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: border-color 0.22s ease, background 0.22s ease;
}

.of-eintrag:hover {
    border-color: rgba(167, 139, 250, 0.3);
    background: rgba(30, 41, 59, 0.5);
}

.of-eintrag__symbol {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 0.85rem;
    color: #c4b5fd;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
}

.of-eintrag__kopf {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.of-eintrag__name {
    font-size: 0.97rem;
    font-weight: 700;
    color: #f1f5f9;
}

.of-eintrag__statt {
    font-size: 0.75rem;
    font-weight: 600;
    color: #a78bfa;
}

.of-eintrag__text {
    font-size: 0.86rem;
    line-height: 1.55;
    color: #94a3b8;
    margin: 0;
}

/* Hinweis, dass diese Reihe noch unverbindlicher ist als die erste */
.of-liste__fuss {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #7f8ea3;
}

/* ---------- Dritte Stufe: nur noch Namen ----------
   Zwölf Gedanken, die zu weit weg sind für eine Beschreibung. Sie
   bekommen deshalb auch keine – nur den Namen und wogegen sie
   anträten. Wer hier ausführlich würde, täuschte Nähe vor. */

.of-fern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.5rem;
}

.of-pille {
    display: inline-flex;
    align-items: baseline;
    gap: 0.45rem;
    padding: 0.5rem 0.85rem;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.45);
    border: 1px dashed rgba(148, 163, 184, 0.22);
    transition: border-color 0.2s ease;
}

.of-pille:hover {
    border-color: rgba(167, 139, 250, 0.4);
}

.of-pille__name {
    font-size: 0.88rem;
    font-weight: 650;
    color: #cbd5e1;
}

.of-pille__statt {
    font-size: 0.73rem;
    color: #7f8ea3;
}

@media (max-width: 560px) {
    .of-zwischen {
        font-size: 1.06rem;
        margin-top: 2.6rem;
    }

    .of-pille {
        padding: 0.42rem 0.7rem;
    }
}
