/* Pagination */

.listing-pagination,
.pagination,
.nav-links {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.nav-links {
    gap: 4px;
}

.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nav-links .page-numbers:hover {
    background: #f0f0f0;
    border-color: #c73e3a;
    color: #c73e3a;
    text-decoration: none;
}

.nav-links .page-numbers.current {
    background: #c73e3a;
    border-color: #c73e3a;
    color: #fff;
}

.nav-links .page-numbers.dots {
    border: none;
    background: none;
}

.nav-links .prev,
.nav-links .next {
    font-weight: 500;
}

/* Post navigation */
.post-navigation {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.post-navigation .nav-links {
    justify-content: space-between;
}

.post-navigation .nav-links a {
    color: #c73e3a;
    text-decoration: none;
    font-size: 0.9rem;
}

.post-navigation .nav-links a:hover {
    text-decoration: underline;
}
