/* ===================================================================
   AERONA SPACE – WAS ES KOSTEN WIRD, TEIL 2
   Fortsetzung von preise.css (300-Zeilen-Regel).
   Die Grenze zwischen kostenlos und Abo, Werbung, Unternehmen.
   =================================================================== */

/* ---------- Wo die Grenze verläuft ---------- */
.pr-grenze {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1rem;
}

.pr-seite {
    padding: 1.6rem 1.7rem;
    border-radius: 16px;
    min-width: 0;
}

.pr-seite--frei {
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.pr-seite--abo {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.22);
}

.pr-seite h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pr-seite--frei h3 {
    color: #4ade80;
}

.pr-seite--abo h3 {
    color: #c4b5fd;
}

.pr-seite ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pr-seite li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.6rem;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.7;
}

.pr-seite li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.pr-seite--frei li::before {
    background: #4ade80;
}

.pr-seite--abo li::before {
    background: #a855f7;
}

/* Der Satz, auf den es bei der Grenze ankommt. */
.pr-satz {
    margin-top: 1.2rem;
    padding: 1.3rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid rgba(59, 130, 246, 0.5);
    border-radius: 0 14px 14px 0;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.8;
}

.pr-satz strong {
    color: #e2e8f0;
}
/* ---------- Werbung und Unternehmen ---------- */
.pr-werbung,
.pr-firma {
    max-width: 720px;
}

.pr-werbung p,
.pr-firma p {
    color: #94a3b8;
    font-size: 0.98rem;
    line-height: 1.9;
    margin-bottom: 1.1rem;
}
/* ---------- Mobil ---------- */
@media (max-width: 768px) {
    .pr-main {
        padding: 5.5rem 1.1rem 4rem;
    }

    .pr-stufen,
    .pr-grenze {
        grid-template-columns: 1fr;
    }
}
