.category-post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.nav-previous,
.nav-next {
    flex: 1;
    text-align: center;
}

.nav-previous {
    padding-right: 20px;
}

.nav-next {
    padding-left: 20px;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.category-post-navigation a {
    text-decoration: none;
    color: #0073aa;
    display: block;
}

.category-post-navigation a:hover {
    color: #005177;
}

.nav-label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.nav-title {
    font-size: 16px;
}

@media (max-width: 600px) {
    .category-post-navigation {
        flex-direction: column;
        gap: 20px;
    }

    //.nav-previous,
    //.nav-next {
    //    text-align: center;
    //}
} 