/* ===================================================================
   AERONA SPACE – POSTS (Grundgerüst)

   Alles, was im Werbe-Studio für den Auftritt nach außen entstanden
   ist: Bilder und Videos, chronologisch, mit Entstehungsdatum.

   Bewusst kein Instagram-Nachbau. Die Seite zeigt, was gemacht wurde
   und wann – keine erfundenen Likes, keine Kommentare, keine
   Reichweitenzahlen. Was hier steht, ist nachprüfbar.

   Zweiter Teil in posts-karte.css: die einzelnen Beiträge.
   =================================================================== */

.po-main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 7rem 1.5rem 6rem;
    overflow-x: clip;
}

/* ---------- Kopfbereich ---------- */

.po-hero {
    position: relative;
    margin-bottom: 3.5rem;
    padding-bottom: 2.6rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.po-hero::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0;
    width: min(420px, 100%);
    height: 260px;
    background: radial-gradient(circle at 30% 40%, rgba(56, 189, 248, 0.14), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.po-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #7dd3fc;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 4px 11px;
    border-radius: 6px;
    margin-bottom: 1.4rem;
}

.po-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 1.2rem;
    background: linear-gradient(120deg, #f8fafc 32%, #7dd3fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.po-unter {
    max-width: 66ch;
    font-size: 1.06rem;
    line-height: 1.75;
    color: #cbd5e1;
    margin: 0 0 2rem;
}

/* ---------- Die Zahlen ---------- */

.po-zahlen {
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem;
}

.po-zahl__wert {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #bae6fd;
    line-height: 1;
}

.po-zahl__text {
    margin-top: 0.4rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #94a3b8;
}

/* ---------- Hinweis, was diese Seite nicht zeigt ---------- */

.po-hinweis {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    max-width: 74ch;
    margin-top: 2.2rem;
    padding: 1.05rem 1.25rem;
    border-radius: 12px;
    background: rgba(56, 189, 248, 0.06);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: #bae6fd;
    font-size: 0.94rem;
    line-height: 1.65;
}

.po-hinweis i {
    margin-top: 0.25rem;
    color: #38bdf8;
    flex-shrink: 0;
}

.po-hinweis strong {
    color: #e0f2fe;
}

/* ---------- Abschnitte ---------- */

.po-block {
    margin-bottom: 4rem;
}

.po-block__titel {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    color: #f1f5f9;
    margin: 0 0 0.7rem;
}

.po-block__unter {
    max-width: 68ch;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0 0 1.6rem;
}

/* ---------- Der Zeitstrang ---------- */

.po-strang {
    position: relative;
    padding-left: 2.2rem;
}

/* Die senkrechte Linie, an der die Beiträge hängen */
.po-strang::before {
    content: "";
    position: absolute;
    inset-inline-start: 7px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg,
            rgba(56, 189, 248, 0.5),
            rgba(56, 189, 248, 0.14) 60%,
            transparent);
}

.po-tag {
    position: relative;
    margin-bottom: 2.6rem;
}

/* Der Punkt auf der Linie */
.po-tag::before {
    content: "";
    position: absolute;
    inset-inline-start: -2.2rem;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0f172a;
    border: 3px solid #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.po-tag__datum {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.7rem;
    margin-bottom: 1.3rem;
}

.po-tag__wann {
    font-size: 1.02rem;
    font-weight: 750;
    color: #e2e8f0;
}

.po-tag__zahl {
    font-size: 0.75rem;
    font-weight: 650;
    color: #7dd3fc;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.24);
    padding: 2px 8px;
    border-radius: 5px;
}

@media (max-width: 640px) {
    .po-main {
        padding: 5.5rem 1.1rem 4rem;
    }

    .po-strang {
        padding-left: 1.6rem;
    }

    .po-tag::before {
        inset-inline-start: -1.6rem;
        width: 13px;
        height: 13px;
        border-width: 2px;
    }

    .po-zahlen {
        gap: 1.4rem 2rem;
    }
}
