/**
 * Pagination styling aligned with the updated media/about design.
 */
.pagination {
    margin-top: 24px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.pagination__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination__list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 10px;
    background: #fff;
    color: #173750;
    border: 1px solid rgba(23, 55, 80, 0.18);
    font: 600 15px/1.1 'Open Sans', sans-serif, Arial;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pagination__list .current a {
    background: #173750;
    color: #fff;
    border-color: #173750;
    box-shadow: 0 8px 18px rgba(23, 55, 80, 0.2);
}

.pagination__list a:hover,
.pagination__list a:focus-visible {
    background: #173750;
    color: #fff;
    border-color: #173750;
    box-shadow: 0 8px 16px rgba(23, 55, 80, 0.18);
}

.pagination__list .disabled a,
.pagination__list .disabled a:hover {
    opacity: 0.45;
    cursor: default;
    box-shadow: none;
    background: #f6f8fb;
    border-color: rgba(23, 55, 80, 0.12);
    color: #6b7a8a;
}
