/* =========================================================
   Changelog-Seite
   ========================================================= */

.changelog-list {
    display: flex;
    flex-direction: column;
    gap: 24px;

    margin-top: 38px;
}


/* =========================================================
   Changelog-Eintrag
   ========================================================= */

.changelog-entry {
    padding: 30px 32px;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: rgba(74, 163, 255, 0.055);
}


/* =========================================================
   Changelog-Kopfzeile
   Datum + Kategorie
   ========================================================= */

.changelog-entry-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;

    margin-bottom: 30px;
}

.changelog-date {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.changelog-tag {
    display: inline-flex;
    align-items: center;

    padding: 5px 9px;

    color: var(--text);
    background: rgba(74, 163, 255, 0.08);

    border: 1px solid rgba(74, 163, 255, 0.28);
    border-radius: 999px;

    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* =========================================================
   Changelog-Titel
   Bewusst passend zur neuen Headline-Optik
   ========================================================= */

.changelog-entry h2 {
    display: inline-flex;
    align-items: center;
    position: relative;

    margin: 0 0 24px;
    padding: 9px 16px 9px 18px;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            rgba(74, 163, 255, 0.24),
            rgba(74, 163, 255, 0.08),
            rgba(74, 163, 255, 0.00)
        );

    border-left: 5px solid rgba(74, 163, 255, 0.9);
    border-radius: 8px;

    font-size: 1.28rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.01em;

    text-shadow: 0 0 14px rgba(74, 163, 255, 0.18);
}

.changelog-entry h2::before {
    content: "";

    position: absolute;
    left: 0;
    top: -16px;

    width: 950px;
    height: 2px;

    background: rgba(74, 163, 255, 0.60);
    border-radius: 999px;
}


/* =========================================================
   Changelog-Liste
   ========================================================= */

.changelog-entry ul {
    margin: 0;
    padding-left: 22px;

    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.changelog-entry li {
    margin-bottom: 8px;
}

.changelog-entry li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   Code / Inline technische Begriffe
   ========================================================= */

.changelog-entry code {
    padding: 2px 6px;

    color: var(--text);
    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;

    font-size: 0.9em;
}