/* OS 31-Jul-2026 - Articles listing pagination */
.articles-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 60px;
}

.articles-pagination a,
.articles-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    font-family: 'biennale', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #3A3532;
    text-decoration: none;
    transition: background 0.2s ease;
}

.articles-pagination a:hover {
    background: rgba(0, 0, 0, 0.06);
}

.articles-pagination .current {
    background: #000000;
    color: #ffffff;
}

.articles-pagination .dots {
    background: none;
    min-width: auto;
    padding: 0 6px;
}
