/* ===================================================================
   AERONA SPACE – ERKLÄRSEITEN
   Gemeinsame Bausteine von werbung.html und unternehmen.html:
   die verworfenen Wege, die Regelliste, die grosse Frage und der
   Block mit dem, was offen ist.
   =================================================================== */

/* ---------- Verworfene und gewählte Wege ---------- */
.erk-wege {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.erk-weg {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.6rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: 16px;
    min-width: 0;
}

/* Der gewählte Weg hebt sich ab, die verworfenen bleiben gedämpft. */
.erk-weg--gewaehlt {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.24);
}

.erk-weg h3 {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.erk-weg--gewaehlt h3 {
    color: #e2e8f0;
}

.erk-weg p {
    color: #94a3b8;
    font-size: 0.89rem;
    line-height: 1.75;
    flex-grow: 1;
}

.erk-weg__urteil {
    margin-top: 1.1rem;
    align-self: flex-start;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 100px;
}

.erk-weg__urteil--nein {
    color: #64748b;
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.erk-weg__urteil--ja {
    color: #4ade80;
    background: rgba(34, 197, 94, 0.13);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* ---------- Regelliste ---------- */
.erk-regeln {
    display: grid;
    gap: 0.8rem;
}

.erk-regel {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.4rem 1.6rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 16px;
}

.erk-regel i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.13);
    color: #93c5fd;
    font-size: 1rem;
}

.erk-regel h3 {
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.erk-regel p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.78;
}

/* ---------- Die grosse Frage ---------- */
.erk-gross {
    padding: 2.2rem 1.8rem;
    margin-bottom: 1.6rem;
    text-align: center;
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.22);
    border-radius: 18px;
    color: #fcd34d;
    font-size: clamp(1.15rem, 3.4vw, 1.7rem);
    font-weight: 800;
    line-height: 1.4;
}

.erk-antwort {
    max-width: 720px;
}

.erk-antwort p {
    color: #94a3b8;
    font-size: 0.98rem;
    line-height: 1.9;
    margin-bottom: 1.1rem;
}

/* ---------- Was offen ist ---------- */
.erk-offen {
    max-width: 720px;
}

.erk-offen ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.erk-offen li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 1rem;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.85;
}

.erk-offen li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.7);
}

.erk-offen p {
    color: #94a3b8;
    font-size: 0.98rem;
    line-height: 1.9;
    margin-bottom: 1.1rem;
}

@media (max-width: 768px) {
    .erk-wege {
        grid-template-columns: 1fr;
    }

    .erk-regel {
        padding: 1.2rem 1.2rem;
        gap: 0.9rem;
    }
}

/* ---------- Grössenvergleich ---------- */
.gr-vergleich {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.gr-zeile {
    display: grid;
    grid-template-columns: 190px 1fr 150px;
    gap: 1rem;
    align-items: center;
}

.gr-name {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 0;
}

.gr-balken {
    height: 14px;
    border-radius: 7px;
    background: rgba(148, 163, 184, 0.1);
    overflow: hidden;
}

.gr-balken span {
    display: block;
    height: 100%;
    border-radius: 7px;
    min-width: 5px;
}

.gr-zeile--gross .gr-balken span {
    background: rgba(148, 163, 184, 0.45);
}

/* Aerona in Blau: der eine Strich, um den es geht. */
.gr-zeile--klein .gr-name {
    color: #93c5fd;
}

.gr-zeile--klein .gr-balken span {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.gr-wert {
    color: #94a3b8;
    font-size: 0.84rem;
    font-weight: 700;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.gr-zeile--klein .gr-wert {
    color: #93c5fd;
}

@media (max-width: 620px) {
    .gr-zeile {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .gr-wert {
        text-align: left;
    }
}
