    .blog_banner {
        position: relative;
        height: 520px;
        overflow: hidden;
    }

    .blog_banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog_overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right,
                rgba(0, 0, 0, .82),
                rgba(0, 0, 0, .45));
        display: flex;
        align-items: center;
    }

    .blog_banner_content h1 {
        font-size: 56px;
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .blog_meta {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        color: #fff;
    }

    .blog_meta span {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 15px;
    }

    .blog_details_section {
        padding: 90px 0;
        background: #f8fafc;
    }

    .blog_content_wrapper {
        background: #fff;
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
    }

    .blog_featured_img {
        border-radius: 22px;
        overflow: hidden;
        margin-bottom: 35px;
    }

    .blog_featured_img img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    .blog_content_wrapper h2 {
        font-size: 34px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 22px;
    }

    .blog_content_wrapper h3 {
        font-size: 28px;
        font-weight: 700;
        margin-top: 35px;
        margin-bottom: 18px;
        color: #111827;
    }

    .blog_content_wrapper p {
        font-size: 16px;
        line-height: 1.9;
        color: #4b5563;
        margin-bottom: 20px;
    }

    .blog_quote_box {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        padding: 35px;
        border-radius: 22px;
        margin: 40px 0;
        color: #fff;
    }

    .blog_quote_box h4 {
        font-size: 28px;
        font-weight: 700;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .blog_tags {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 35px;
    }

    .blog_tags a {
        padding: 10px 18px;
        border-radius: 50px;
        background: #eff6ff;
        color: #2563eb;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: .3s;
    }

    .blog_tags a:hover {
        background: #2563eb;
        color: #fff;
    }

    /* Sidebar */

    .blog_sidebar_box {
        background: #fff;
        border-radius: 22px;
        padding: 30px;
        box-shadow: 0 10px 40px rgba(0,0,0,.05);
        margin-bottom: 30px;
    }

    .blog_sidebar_box h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 25px;
        color: #111827;
    }

    .recent_blog_item {
        display: flex;
        gap: 15px;
        margin-bottom: 22px;
        align-items: center;
    }

    .recent_blog_item:last-child {
        margin-bottom: 0;
    }

    .recent_blog_img {
        width: 90px;
        height: 90px;
        border-radius: 16px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .recent_blog_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .recent_blog_content span {
        font-size: 13px;
        color: #6b7280;
        display: block;
        margin-bottom: 6px;
    }

    .recent_blog_content h5 {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 0;
        font-weight: 700;
    }

    .recent_blog_content a {
        color: #111827;
        text-decoration: none;
        transition: .3s;
    }

    .recent_blog_content a:hover {
        color: #2563eb;
    }

    .category_list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .category_list li {
        margin-bottom: 14px;
    }

    .category_list li:last-child {
        margin-bottom: 0;
    }

    .category_list li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        color: #374151;
        font-weight: 500;
        transition: .3s;
    }

    .category_list li a:hover {
        color: #2563eb;
        padding-left: 5px;
    }

    .sticky_sidebar {
        position: sticky;
        top: 110px;
    }

    @media(max-width:991px){

        .blog_banner {
            height: 420px;
        }

        .blog_banner_content h1 {
            font-size: 38px;
        }

        .blog_content_wrapper {
            padding: 25px;
        }

        .blog_featured_img img {
            height: 320px;
        }
    }
