/* Post Navigation (nächter vorheriger Beitrag) */
.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    justify-items: center;
    text-decoration: none;
}

.post-navigation {
    width: 100%;
}

.nav-next {
    display: flex;
    margin-left: auto;
}

.nav-next a {
    text-decoration: none;
}

.nav-next::after {
    content: url('../images/naechster.svg');
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-left: 8px;
}

.nav-previous {
    display: flex;
}

.nav-previous a {
    text-decoration: none;
}

.nav-previous::before {
    content: url('../images/vorheriger.svg');
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 8px;
}