.pager__item {
    border-radius: 2rem;
    border: 1px solid var(--main-color);
    padding: 0;
    height: 2.25rem;
    width: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease-in-out;
    pointer-events: all;
    cursor: pointer;
    border-radius: 2rem;
}

.pager__item a {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    display: block;
    font-size: 0.8125rem;
    line-height: 2.25rem;
    height: 2.25rem;
    width: 2.25rem;
}

.pager__item span {
    font-size: 1.125rem;
}

.pager__item:hover,
.pager__item.is-active {
    background: var(--main-color);
}

.pager__item:hover a,
.pager__item.is-active a {
    color: var(--texto-branco);
}

.pager__item:not(.is-active):not(:hover) {
    background: var(--texto-branco);
}

.pager__item:not(.is-active):not(:hover) a {
    color: var(--main-color);
}

.pager__items {
    gap: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
}

.pager__item--first a,
.pager__item--previous a,
.pager__item--last a,
.pager__item--next a {
    line-height: 2rem;
}

@media screen and (max-width: 48rem) {
    .pager__items {
        margin-bottom: 3.75rem;
    }
}
