/**
 * hana+nils · Büro für Gestaltung
 * https://hananils.de · buero@hananils.de
 */

.pagination {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-base-large);
    font-size: var(--text-size-small);
}

.pagination a {
    color: rgba(0, 0, 0, 0.3);
}

.pagination a:not([href]),
.pagination a:not([href]):hover {
    text-decoration: none;
}

.pagination a[href] {
    color: #000;
}

.pagination a:first-of-type::before,
.pagination a:last-of-type::after {
    content: '←';
    display: inline-block;
    text-decoration: none;
    padding: 0 0.7rem 0 0;
}

.pagination a:last-of-type::after {
    content: '→';
    padding: 0 0 0 0.7rem;
}
