.pager__items
{
    display: flex;
    width: fit-content;
    margin: 0 auto;
    font-size: 1rem;
}

.pager__items a
{
    display: block;
    padding: 0.375em 0.75em;
    border: 1px solid var(--arta-vlight-grey);
    text-decoration: none;
    border-right-width: 0px;
}

.pager__items a:hover
{
    color: var(--gt-navy);
    background-color: var(--arta-vlight-grey);
}

.pager__item
{
    list-style: none;
}

.pager__item.is-active a
{
    background-color: var(--gt-navy);
    color: var(--gt-white);
}

.pager__item:first-child a
{
    border-top-left-radius: 0.375em;
    border-bottom-left-radius: 0.375em;
}   

.pager__item:last-child a
{
    border-top-right-radius: 0.375em;
    border-bottom-right-radius: 0.375em;
    border-right-width: 1px;
}