body {
    background-color: #f7f8fc !important;
}
.blog_right_sidebar {
    min-height: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 32px;
}

.blog_area {
    margin: 325px 0 100px 0;
    .container {
        position: relative;
        .google-auto-placed {
            position: absolute;
            top: -315px;
        }
    }
}

.post_item {
    display: flex;
}
.blog_details ul li {
    line-height: 30px;
    margin-left: 25px;
}

.form-group {
    margin-bottom: 32px;
    h4 {
        a {
            color: #195fc6 !important;
        }
    }
}

.blog_right_sidebar .single_sidebar_widget {
    padding: 0px;
    background: transparent;
}
.recentBlogs {
    .blogHeading {
        margin-top: 18px;
        margin-bottom: 24px;
        h3 {
            font-weight: 500;
            font-size: 30px;
            line-height: 46px;
        }
    }
    .blogColMain {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        .blogCol {
            .blog_item {
                display: inline-block;
                background-color: #fff;
                margin: 0px;
                border-radius: 8px;
                padding: 20px;
                .blog_item_img {
                    overflow: hidden;
                    img {
                        border-radius: 8px;
                    }
                }
                .blog_details {
                    box-shadow: none;

                    h2 {
                        font-weight: 500;
                        font-size: 18px;
                        line-height: 32px;
                        color: #000;
                        transition: all 0.3s ease;
                    }
                }
                &:hover {
                    cursor: pointer;
                    .blog_details {
                        h2 {
                            color: #fe7467;
                        }
                    }
                }
            }
        }
    }
}
.blogRow {
    .posts-list {
        padding-right: 48px;
        .single-post {
            padding: 15px;
            background: white;
            border-radius: 16px;
            .feature-img {
                border-radius: 12px;
                overflow: hidden;
                position: relative;
                .blogTitle {
                    background: #344c7ab2;
                    backdrop-filter: blur(16px);
                    padding: 24px;
                    position: absolute;
                    bottom: 0px;
                    width: 100%;
                    h1 {
                        color: white;
                        margin-bottom: 8px;
                    }
                    span {
                        color: white;
                    }
                }
            }
            .blog_details {
                padding: 0px 24px;
                margin-top: 32px;
                align-content: center;
                box-shadow: none;
                ul {
                    margin-left: 16px;
                }
            }
        }
    }
    .sideContent {
        position: sticky;
        top: 20px;
        z-index: 10;
    }
    .tableContent {
        flex-direction: column;

        gap: 16px;
        .contentTitle {
            span {
                color: #05103c !important;
                font-weight: 500 !important;
                font-size: 20px !important;
                line-height: 24px !important;
            }
        }
        .contentList {
            display: flex;
            flex-direction: column;
            gap: 8px;

            .firstTableData {
                margin-top: 5px;
            }
            .headingTOC {
                padding: 4px 10px;
                position: relative;
                font-size: 16px !important;
                line-height: 20px;
                color: #344c7a !important;
                font-weight: 600 !important;
                transition: all 0.3s ease;

                &::before {
                    content: "";
                    position: absolute;
                    width: 2px;
                    height: 100%;
                    top: 0;
                    left: 0;
                    background-color: #fe7467;
                    transform: scaleY(0);
                    transform-origin: top;
                    transition: transform 0.3s ease;
                }
                &:hover {
                    color: #fe7467 !important;

                    &::before {
                        transform: scaleY(1);
                    }
                }
            }
            .subHeaidngOL {
                li {
                    list-style: none;
                    padding: 0px;
                    margin-left: 15px !important;
                    .firstTableSub {
                        margin-top: 4px;
                    }
                    a {
                        padding: 4px 10px;
                        position: relative;
                        font-size: 14px !important;
                        line-height: 20px;
                        color: #344c7a !important;
                        display: block;
                        font-weight: 500 !important;
                        transition: all 0.3s ease;

                        &::before {
                            content: "";
                            position: absolute;
                            width: 2px;
                            height: 100%;
                            top: 0;
                            left: 0;
                            background-color: #fe7467;
                            transform: scaleY(0);
                            transform-origin: top;
                            transition: transform 0.3s ease;
                        }

                        &:hover {
                            color: #fe7467 !important;

                            &::before {
                                transform: scaleY(1);
                            }
                        }
                    }
                }
            }
        }
    }
    .shareBlog {
        background-color: #0c2e60;
        padding: 18px 0px 18px 18px;
        border-radius: 12px;
        width: 100%;
        .shareBlogText {
            margin-bottom: 10px;
            span {
                font-size: 16px;
                color: white;
            }
        }
        .socialShareImg {
            ul {
                display: flex;
                gap: 8px;
                justify-content: start;
                align-items: start;
                li {
                    list-style: none;

                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 0px;
                    a {
                        background-color: white;
                        border-radius: 8px;
                        max-width: 28px;
                        max-height: 28px;
                        width: 100%;
                        height: 100%;
                        transition: background-color 0.3s ease;
                        &:hover {
                            background-color: #fe7467;
                        }
                    }
                }
            }
        }
    }
}

ul
    li:last-child:not(
        .menu_items,
        .nav-link,
        .menu_items_profile,
        .mb-2,
        .get_points,
        .profile_li
    ) {
    padding-bottom: 0px;
}

@media (max-width: 991px) {
    .recentBlogs {
        .blogColMain {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    .blogRow {
        .posts-list {
            padding: 0px;
        }
    }
    .blog_right_sidebar {
        margin-top: 20px;
    }
    .blog_item {
        margin: 0 10px;
    }
    .tableContent {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .recentBlogs {
        .blogColMain {
            grid-template-columns: 1fr;
        }
    }
}
