.archive-blog-pangasius {
    .blog-categories {
        li {
            @apply px-3 py-2 mb-3 mr-3 font-black uppercase bg-secondary-300 cursor-pointer text-primary font-primary transition-colors duration-300;

            &:hover {
                @apply bg-primary text-white;
            }

            &:last-child {
                @apply mr-0;
            }
        }
    }

    /* Pagination */
    .pagination {
        @apply border-t border-gray;


        a {
            @apply transition-colors duration-300;

            &:hover{
                @apply text-secondary;
            }
        }

        .pagination-numbers {
            .page-numbers {

                &.current {
                    @apply text-secondary;
                }
            }
        }
    }
}