/* =========================================================
   NINE TAILS DIGITAL
   PREMIUM BLOG PAGE
========================================================= */

:root {
    --nt-primary: #071a35;
    --nt-primary-2: #0d2b52;
    --nt-orange: #ff5a00;
    --nt-orange-2: #ff7a18;
    --nt-text: #263548;
    --nt-muted: #7c8795;
    --nt-light: #f6f8fb;
    --nt-border: #e7ebf0;
    --nt-white: #ffffff;
    --nt-shadow: 0 15px 45px rgba(7, 26, 53, 0.08);
    --nt-shadow-hover: 0 22px 55px rgba(7, 26, 53, 0.14);
}


/* =========================================================
   BLOG MAIN AREA
========================================================= */

.section-pt-100.section-pb-150 {
    position: relative;
    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(255, 90, 0, 0.035),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcfe 100%
        );
}


/* =========================================================
   BLOG GRID
========================================================= */

.blog-card {
    position: relative;

    height: 100%;

    overflow: hidden;

    background: var(--nt-white) !important;

    border: 1px solid rgba(7, 26, 53, 0.07) !important;

    border-radius: 20px !important;

    box-shadow: var(--nt-shadow) !important;

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1),
        box-shadow .4s ease,
        border-color .4s ease;
}


.blog-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255, 90, 0, 0.18) !important;

    box-shadow: var(--nt-shadow-hover) !important;
}


/* =========================================================
   BLOG IMAGE
========================================================= */

.blog-card > div:first-child {
    position: relative;

    height: 230px !important;

    overflow: hidden;

    background: #edf1f5;
}


.blog-card > div:first-child::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(7, 26, 53, 0.16) 100%
        );

    opacity: 0;

    pointer-events: none;

    transition: opacity .4s ease;
}


.blog-card:hover > div:first-child::after {
    opacity: 1;
}


.blog-card img {
    width: 100% !important;

    height: 100% !important;

    object-fit: cover !important;

    transition:
        transform .65s cubic-bezier(.2,.8,.2,1),
        filter .4s ease !important;
}


.blog-card:hover img {
    transform: scale(1.07);

    filter: saturate(1.05);
}


/* =========================================================
   BLOG CONTENT
========================================================= */

.blog-card > .p-4 {
    position: relative;

    display: flex;

    flex-direction: column;

    padding: 27px 27px 25px !important;
}


.blog-card .d-flex.align-items-center.gap-3 {
    margin-bottom: 15px !important;

    gap: 10px !important;
}


/* =========================================================
   CATEGORY BADGE
========================================================= */

.blog-card .badge {
    display: inline-flex;

    align-items: center;

    min-height: 29px;

    padding: 6px 12px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--nt-orange),
            var(--nt-orange-2)
        ) !important;

    color: #fff !important;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .5px;

    text-transform: uppercase;

    box-shadow:
        0 5px 15px rgba(255, 90, 0, 0.16);
}


.blog-card .d-flex small {
    color: var(--nt-muted) !important;

    font-size: 11px !important;

    font-weight: 500;
}


/* =========================================================
   BLOG TITLE
========================================================= */

.blog-card h5 {
    margin-bottom: 11px !important;

    font-size: 18px !important;

    font-weight: 750 !important;

    line-height: 1.45 !important;

    letter-spacing: -.25px;
}


.blog-card h5 a {
    color: var(--nt-primary) !important;

    background-image:
        linear-gradient(
            var(--nt-orange),
            var(--nt-orange)
        );

    background-size: 0% 2px;

    background-repeat: no-repeat;

    background-position: 0 100%;

    transition:
        color .3s ease,
        background-size .35s ease;
}


.blog-card:hover h5 a {
    color: var(--nt-orange) !important;

    background-size: 100% 2px;
}


/* =========================================================
   EXCERPT
========================================================= */

.blog-card p {
    color: #6d7886 !important;

    font-size: 13px !important;

    line-height: 1.75 !important;

    margin-bottom: 21px !important;
}


/* =========================================================
   AUTHOR + READ MORE
========================================================= */

.blog-card > .p-4 > .d-flex:last-child {
    margin-top: auto;
}


.blog-card > .p-4 > .d-flex:last-child small {
    display: inline-flex;

    align-items: center;

    gap: 3px;

    color: #8993a0 !important;

    font-size: 11px !important;

    font-weight: 600;
}


.blog-card > .p-4 > .d-flex:last-child small i {
    color: var(--nt-orange);
}


/* =========================================================
   READ MORE BUTTON
========================================================= */

.blog-card .btn-warning {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    min-height: 36px;

    padding: 8px 15px;

    border: 0 !important;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--nt-orange),
            var(--nt-orange-2)
        ) !important;

    color: #fff !important;

    font-size: 11px;

    font-weight: 700;

    box-shadow:
        0 7px 18px rgba(255, 90, 0, 0.18);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.blog-card .btn-warning:hover {
    transform: translateX(3px);

    box-shadow:
        0 10px 25px rgba(255, 90, 0, 0.28);
}


.blog-card .btn-warning i {
    transition: transform .3s ease;
}


.blog-card .btn-warning:hover i {
    transform: translateX(4px);
}


/* =========================================================
   SEARCH RESULT MESSAGE
========================================================= */

.col-lg-8 > p.mb-4 {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 5px;

    padding: 13px 17px;

    margin-bottom: 25px !important;

    border: 1px solid var(--nt-border);

    border-radius: 12px;

    background: #fff;

    box-shadow: 0 8px 25px rgba(7, 26, 53, 0.04);

    font-size: 13px;
}


.col-lg-8 > p.mb-4 strong {
    color: var(--nt-primary);
}


.col-lg-8 > p.mb-4 a {
    color: var(--nt-orange) !important;

    font-weight: 700;
}


/* =========================================================
   SIDEBAR
========================================================= */

.sidebar {
    position: sticky;

    top: 100px;
}


/* =========================================================
   SIDEBAR WIDGET
========================================================= */

.sidebar-widget {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(7, 26, 53, 0.07) !important;

    border-radius: 18px !important;

    background: #fff;

    box-shadow:
        0 12px 35px rgba(7, 26, 53, 0.065);

    padding: 25px !important;
}


.sidebar-widget::before {
    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--nt-orange),
            var(--nt-orange-2),
            transparent
        );
}


/* =========================================================
   SIDEBAR SEARCH
========================================================= */

.search-card {
    padding: 9px !important;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8fafc
        );
}


.search-card form {
    position: relative;
}


.search-card .form-control {
    height: 52px;

    padding: 0 54px 0 17px;

    border: 1px solid #e3e8ee !important;

    border-radius: 12px !important;

    background: #f8fafc !important;

    color: var(--nt-text);

    font-size: 13px;

    box-shadow: none !important;

    transition:
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


.search-card .form-control:focus {
    border-color: rgba(255, 90, 0, 0.35) !important;

    background: #fff !important;

    box-shadow:
        0 0 0 4px rgba(255, 90, 0, 0.06) !important;
}


.search-card .form-control::placeholder {
    color: #9aa4af;

    font-size: 12px;
}


.search-card .search-button {
    position: absolute;

    top: 6px;

    right: 6px;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--nt-orange),
            var(--nt-orange-2)
        );

    color: #fff;

    cursor: pointer;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.search-card .search-button:hover {
    transform: translateY(-1px);

    box-shadow:
        0 7px 18px rgba(255, 90, 0, 0.25);
}


/* =========================================================
   SIDEBAR TITLES
========================================================= */

.sidebar-widget .title {
    position: relative;

    margin-bottom: 20px !important;

    padding-bottom: 13px;

    color: var(--nt-primary);

    font-size: 18px;

    font-weight: 750;

    letter-spacing: -.2px;
}


.sidebar-widget .title::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 38px;

    height: 3px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            var(--nt-orange),
            var(--nt-orange-2)
        );
}


/* =========================================================
   CATEGORY LIST
========================================================= */

.post-card .list-group {
    border: 0;
}


.post-card .list-group-item {
    padding: 11px 0 !important;

    border: 0 !important;

    border-bottom: 1px solid #edf0f3 !important;

    background: transparent !important;
}


.post-card .list-group-item:last-child {
    border-bottom: 0 !important;
}


.post-card .list-group-item a {
    display: inline-flex;

    align-items: center;

    color: #5f6c7b;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    transition:
        color .25s ease,
        transform .25s ease;
}


.post-card .list-group-item a:hover {
    color: var(--nt-orange);

    transform: translateX(4px);
}


.post-card .list-group-item a i {
    color: var(--nt-orange);

    font-size: 12px;
}


.post-card .list-group-item .badge {
    min-width: 27px;

    padding: 5px 8px;

    border-radius: 50px;

    background:
        rgba(255, 90, 0, 0.09) !important;

    color: var(--nt-orange) !important;

    font-size: 10px;

    font-weight: 700;
}


/* =========================================================
   RECENT POSTS
========================================================= */

.post-card ul.list-unstyled li {
    margin-bottom: 0 !important;

    padding: 13px 0 !important;

    border-bottom: 1px solid #edf0f3 !important;
}


.post-card ul.list-unstyled li:last-child {
    border-bottom: 0 !important;

    padding-bottom: 0 !important;
}


.post-card ul.list-unstyled li a {
    display: block;

    color: var(--nt-primary) !important;

    font-size: 13px !important;

    font-weight: 650 !important;

    line-height: 1.55;

    text-decoration: none !important;

    transition:
        color .25s ease,
        transform .25s ease;
}


.post-card ul.list-unstyled li a:hover {
    color: var(--nt-orange) !important;
}


.post-card ul.list-unstyled li small {
    display: inline-flex;

    align-items: center;

    margin-top: 7px;

    color: #98a1ac !important;

    font-size: 10px;

    font-weight: 500;
}


.post-card ul.list-unstyled li small i {
    color: var(--nt-orange);
}


/* =========================================================
   ABOUT / CTA SIDEBAR
========================================================= */

.about-banner.sidebar {
    position: relative;

    padding: 30px 25px !important;

    text-align: center;

    border: 0 !important;

    border-radius: 20px !important;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 122, 24, 0.3),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #071a35 0%,
            #0d2b52 65%,
            #102f59 100%
        ) !important;

    box-shadow:
        0 18px 45px rgba(7, 26, 53, 0.18);
}


.about-banner.sidebar::before {
    content: "";

    position: absolute;

    width: 130px;

    height: 130px;

    right: -60px;

    bottom: -60px;

    border-radius: 50%;

    border: 20px solid rgba(255, 90, 0, 0.1);
}


.about-banner.sidebar::after {
    content: "";

    position: absolute;

    width: 80px;

    height: 80px;

    left: -40px;

    top: -40px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.035);
}


.about-banner.sidebar img {
    position: relative;

    z-index: 2;

    width: auto;

    max-width: 145px !important;

    height: auto;

    margin-bottom: 4px;

    filter:
        drop-shadow(
            0 8px 18px rgba(0,0,0,.15)
        );
}


.about-banner.sidebar .title {
    position: relative;

    z-index: 2;

    padding-bottom: 0;

    margin-top: 12px !important;

    margin-bottom: 10px !important;

    color: #fff !important;

    font-size: 19px;

    line-height: 1.35;
}


.about-banner.sidebar .title::after {
    display: none;
}


.about-banner.sidebar p {
    position: relative;

    z-index: 2;

    margin-bottom: 20px;

    color: rgba(255,255,255,.72);

    font-size: 12px;

    line-height: 1.7;
}


.about-banner.sidebar .btn {
    position: relative;

    z-index: 2;

    min-height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0 !important;

    border-radius: 10px;

    font-size: 11px;

    font-weight: 700;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.about-banner.sidebar .btn-warning {
    background:
        linear-gradient(
            135deg,
            var(--nt-orange),
            var(--nt-orange-2)
        ) !important;

    color: #fff !important;
}


.about-banner.sidebar .btn-success {
    background:
        linear-gradient(
            135deg,
            #159957,
            #0b7d48
        ) !important;

    color: #fff !important;
}


.about-banner.sidebar .btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.18);
}


/* =========================================================
   PAGINATION
========================================================= */

.pagination {
    gap: 7px;

    margin: 0;
}


.pagination .page-item {
    margin: 0;
}


.pagination .page-link {
    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 1px solid #e4e9ef !important;

    border-radius: 10px !important;

    background: #fff;

    color: var(--nt-primary);

    font-size: 12px;

    font-weight: 700;

    box-shadow: 0 5px 15px rgba(7, 26, 53, 0.04);

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.pagination .page-link:hover {
    border-color: rgba(255, 90, 0, 0.3) !important;

    background: rgba(255, 90, 0, 0.06);

    color: var(--nt-orange);

    transform: translateY(-2px);
}


.pagination .page-item.active .page-link {
    border-color: transparent !important;

    background:
        linear-gradient(
            135deg,
            var(--nt-orange),
            var(--nt-orange-2)
        ) !important;

    color: #fff !important;

    box-shadow:
        0 8px 20px rgba(255, 90, 0, 0.22);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.col-lg-8 .text-center.py-5 {
    padding: 75px 30px !important;

    border: 1px solid var(--nt-border);

    border-radius: 20px;

    background: #fff;

    box-shadow: var(--nt-shadow);
}


.col-lg-8 .text-center.py-5 > i {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 85px;

    height: 85px;

    border-radius: 50%;

    background: rgba(255, 90, 0, 0.07);

    color: var(--nt-orange) !important;

    font-size: 38px !important;
}


.col-lg-8 .text-center.py-5 h4 {
    color: var(--nt-primary);

    font-weight: 750;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .blog-card > div:first-child {
        height: 215px !important;
    }

    .blog-card > .p-4 {
        padding: 23px !important;
    }

}


@media (max-width: 991px) {

    .sidebar {
        position: static;
    }

    .blog-card > div:first-child {
        height: 230px !important;
    }

}


@media (max-width: 767px) {

    .section-pt-100.section-pb-150 {
        padding-top: 65px;
        padding-bottom: 90px;
    }

    .blog-card {
        border-radius: 17px !important;
    }

    .blog-card > div:first-child {
        height: 220px !important;
    }

    .blog-card > .p-4 {
        padding: 22px !important;
    }

    .blog-card h5 {
        font-size: 17px !important;
    }

    .blog-card p {
        font-size: 12.5px !important;
    }

    .sidebar-widget {
        border-radius: 16px !important;
    }

    .about-banner.sidebar {
        padding: 27px 20px !important;
    }

}


@media (max-width: 575px) {

    .blog-card > div:first-child {
        height: 210px !important;
    }

    .blog-card > .p-4 {
        padding: 20px !important;
    }

    .blog-card h5 {
        font-size: 16px !important;
    }

    .blog-card .btn-warning {
        padding: 7px 12px;

        font-size: 10px;
    }

    .pagination {
        gap: 5px;
    }

    .pagination .page-link {
        width: 36px;

        height: 36px;

        font-size: 11px;
    }

}

/* =========================================================
   BLOG CLEAN STRUCTURE
========================================================= */

.blog-card-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #edf1f5;
}

.blog-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(7, 26, 53, 0.16)
    );
    opacity: 0;
    transition: opacity .4s ease;
}

.blog-card:hover .blog-card-image::after {
    opacity: 1;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.2,.8,.2,1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.07);
}


.blog-card-content {
    display: flex;
    flex-direction: column;
    height: calc(100% - 230px);
    padding: 27px;
}


.blog-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}


.blog-category {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 6px 12px;
    border-radius: 50px;

    background: linear-gradient(
        135deg,
        #ff5a00,
        #ff7a18
    );

    color: #fff !important;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;

    text-decoration: none;
}


.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: #8993a0;

    font-size: 11px;
    font-weight: 500;
}

.blog-date i {
    color: #ff5a00;
}


.blog-card-title {
    margin: 0 0 11px;
    font-size: 18px !important;
    font-weight: 750 !important;
    line-height: 1.45;
}


.blog-card-title a {
    color: #071a35 !important;
    text-decoration: none;
    transition: color .3s ease;
}

.blog-card-title a:hover {
    color: #ff5a00 !important;
}


.blog-card-excerpt {
    margin-bottom: 21px;
    color: #6d7886;
    font-size: 13px;
    line-height: 1.75;
}


.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
}


.blog-author {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: #8993a0;

    font-size: 11px;
    font-weight: 600;
}

.blog-author i {
    color: #ff5a00;
}


.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 15px;

    border-radius: 50px;

    background: linear-gradient(
        135deg,
        #ff5a00,
        #ff7a18
    );

    color: #fff !important;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 7px 18px rgba(255, 90, 0, .18);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.blog-read-more:hover {
    color: #fff !important;
    transform: translateX(3px);
    box-shadow: 0 10px 25px rgba(255, 90, 0, .28);
}

.blog-read-more i {
    transition: transform .3s ease;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}


/* =========================================================
   SEARCH RESULT
========================================================= */

.blog-search-result {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;

    padding: 13px 17px;
    margin-bottom: 25px;

    border: 1px solid #e7ebf0;
    border-radius: 12px;

    background: #fff;

    box-shadow: 0 8px 25px rgba(7, 26, 53, .04);

    color: #7c8795;
    font-size: 13px;
}

.blog-search-result strong {
    color: #071a35;
}

.blog-clear-search {
    margin-left: 8px;
    color: #ff5a00 !important;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================================
   SIDEBAR SEARCH
========================================================= */

.blog-sidebar-search {
    position: relative;
}

.blog-sidebar-search .form-control {
    height: 52px;
    padding: 0 54px 0 17px;

    border: 1px solid #e3e8ee;
    border-radius: 12px;

    background: #f8fafc;

    font-size: 13px;

    box-shadow: none;
}

.blog-sidebar-search .form-control:focus {
    border-color: rgba(255, 90, 0, .35);
    background: #fff;

    box-shadow:
        0 0 0 4px rgba(255, 90, 0, .06);
}


.blog-sidebar-search .search-button {
    position: absolute;
    top: 6px;
    right: 6px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #ff5a00,
        #ff7a18
    );

    color: #fff;
}


/* =========================================================
   CATEGORIES
========================================================= */

.post-card .list-group-item {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.post-card .list-group-item + .list-group-item {
    margin-top: 2px;
}

.post-card .list-group-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    padding: 11px 0;

    border-bottom: 1px solid #edf0f3;

    color: #5f6c7b;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color .25s ease,
        padding-left .25s ease;
}

.post-card .list-group-item a:hover,
.post-card .list-group-item a.active {
    color: #ff5a00;
    padding-left: 4px;
}

.post-card .list-group-item a > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.post-card .list-group-item a i {
    color: #ff5a00;
}

.category-count {
    min-width: 27px;
    padding: 5px 8px;

    border-radius: 50px;

    background: rgba(255, 90, 0, .09);

    color: #ff5a00;

    font-size: 10px;
    font-weight: 700;

    text-align: center;
}


/* =========================================================
   RECENT POSTS
========================================================= */

.recent-post-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.recent-post-list li {
    margin: 0;
    padding: 13px 0;

    border-bottom: 1px solid #edf0f3;
}

.recent-post-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.recent-post-list li a {
    display: block;

    color: #071a35 !important;

    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;

    text-decoration: none;

    transition: color .25s ease;
}

.recent-post-list li a:hover {
    color: #ff5a00 !important;
}

.recent-post-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    margin-top: 7px;

    color: #98a1ac;

    font-size: 10px;
}

.recent-post-date i {
    color: #ff5a00;
}


/* =========================================================
   SIDEBAR LOGO
========================================================= */

.blog-sidebar-logo img {
    width: auto;
    max-width: 145px;
    height: auto;
}


/* =========================================================
   SIDEBAR CTA BUTTONS
========================================================= */

.about-banner.sidebar .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    min-height: 43px;
    margin-bottom: 10px;

    border: 0 !important;
    border-radius: 10px;

    font-size: 11px;
    font-weight: 700;
}

.about-banner.sidebar .btn:last-child {
    margin-bottom: 0;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.blog-empty-state {
    padding: 75px 30px;

    border: 1px solid #e7ebf0;
    border-radius: 20px;

    background: #fff;

    text-align: center;

    box-shadow:
        0 15px 45px rgba(7, 26, 53, .08);
}

.blog-empty-icon {
    width: 85px;
    height: 85px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background: rgba(255, 90, 0, .07);

    color: #ff5a00;

    font-size: 38px;
}

.blog-empty-state h4 {
    margin-bottom: 8px;
    color: #071a35;
    font-weight: 750;
}

.blog-empty-state p {
    margin-bottom: 20px;
    color: #7c8795;
    font-size: 13px;
}

.blog-empty-button {
    display: inline-flex;
    align-items: center;

    padding: 10px 18px;

    border-radius: 50px;

    background: linear-gradient(
        135deg,
        #ff5a00,
        #ff7a18
    );

    color: #fff !important;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   PAGINATION
========================================================= */

.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.blog-pagination .pagination {
    gap: 7px;
    margin: 0;
}

.blog-pagination .page-link {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #e4e9ef !important;
    border-radius: 10px !important;

    background: #fff;

    color: #071a35;

    font-size: 12px;
    font-weight: 700;

    transition: .25s ease;
}

.blog-pagination .page-link:hover {
    border-color: rgba(255, 90, 0, .3) !important;
    background: rgba(255, 90, 0, .06);
    color: #ff5a00;
    transform: translateY(-2px);
}

.blog-pagination .page-item.active .page-link {
    border-color: transparent !important;

    background: linear-gradient(
        135deg,
        #ff5a00,
        #ff7a18
    ) !important;

    color: #fff !important;

    box-shadow:
        0 8px 20px rgba(255, 90, 0, .22);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .blog-card-image {
        height: 230px;
    }

}

@media (max-width: 767px) {

    .blog-card-image {
        height: 220px;
    }

    .blog-card-content {
        height: auto;
        padding: 22px;
    }

    .blog-card-title {
        font-size: 17px !important;
    }

    .blog-card-excerpt {
        font-size: 12.5px;
    }

}

@media (max-width: 575px) {

    .blog-card-image {
        height: 210px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 16px !important;
    }

    .blog-card-footer {
        align-items: flex-end;
    }

    .blog-read-more {
        padding: 7px 12px;
        font-size: 10px;
    }

    .blog-pagination .page-link {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }

}