.page-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
        margin-top: 32px;
    }
    .page-nav a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: .9rem;
        font-weight: 600;
        padding: 10px 24px;
        border: 2px solid #e5e5e5;
        color: #e5e5e5;
        text-decoration: none;
        transition: background-color .2s, color .2s;
    }
    .page-nav a:hover,
    .page-nav a:focus {
        background-color: #e5e5e5;
        color: #111;
        text-decoration: none;
    }
    .page-nav a svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
        flex-shrink: 0;
    }
    .scroll-target {
        display: block;
        position: relative;
        top: -40px;
        visibility: hidden;
    }