    @media (max-width: 991.98px) {
        .navigation {
            display: none
        }

        .view {
            margin-left: auto;
        }
    }

    @media only screen and (max-width: 425px) {
        .category {
            font-size: 24px !important;
        }

        .card-body {
            padding: 1rem 1rem !important;
        }

        .blog-carousel {
            padding: 0 !important;
        }
    }

    .article:hover {
        box-shadow: rgba(11, 43, 158, 0.35) 0px 10px 20px;
    }

    .category {
        margin: 0px 24px 0px 0px;
    }

    .blog-navigation {
        display: flex;
    }

    .card-img-top {
        transition: all 0.35s ease-in-out;
    }

    .article {
        transition: box-shadow 0.3s ease-in-out;
    }

    .article:hover .card-img-top {
        transform: scale(1.1);
    }

    .article:hover {
        box-shadow: rgba(11, 43, 158, 0.35) 0 10px 20px !important;
    }

    .card-img-top {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .view {
        white-space: nowrap;
        border-radius: 10px;
        font-weight: 600;
        line-height: 1.5;
        padding: 8px 20px;
        display: inline-block;
        background: var(--color-primary);
        color: #fff;
        text-decoration: none;
        transition: .3s;
    }

    .view:hover {
        background-color: var(--color-secondary);
        text-decoration: none;
        color: #fff;
    }

    .page-link {
        cursor: pointer;
    }

    .pagination {
        display: flex !important;
    }

    .blog-carousel {
        padding: 20px;
        display: flex;
        overflow: auto;
        position: relative;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .page-item:first-child .page-link {
        border-top-left-radius: 7px !important;
        border-bottom-left-radius: 7px !important;
        border-top-right-radius: 7px !important;
        border-bottom-right-radius: 7px !important;
    }

    .page-item:last-child .page-link {
        border-top-left-radius: 7px !important;
        border-bottom-left-radius: 7px !important;
        border-top-right-radius: 7px !important;
        border-bottom-right-radius: 7px !important;
    }

    .page-item:not(:first-child) .page-link {
        margin-left: 2px !important;
    }
