.pager {
    @apply mb-8 mt-8;
    @apply sm:text-center text-left;

    li {
        @apply mb-2 mr-1 inline-block;

        a {
            @apply px-3 py-1 block bg-white text-red border border-red no-underline font-semibold;

            &:hover {
                @apply bg-red text-white;
            }
        }

        &.active a {
            @apply bg-red text-white;
        }
    }
}
