h1{
    font-size: 48px !important
}


.blog_detail p {
    margin: 15px 0px;
    font-size: 18px !important;
}

.blog_detail li {
    font-size: 18px;
}

.blog_detail table {
    border: 1px solid #000;
    padding: 20px !important;
    border-radius: 7px !important;
}

.blog_detail table tbody {
    padding: 10px;
    display: block;
}

.blog_detail ul {
    list-style-type: disc !important;
    margin-left: 30px;
    margin-top: 10px;
}

.blog_detail ol {
    list-style-type: decimal !important;
}

.blog_detail a {
    color: rgb(94 77 255) !important;
    transition: 0.3s ease;
}

.blog_detail a:hover {
    text-decoration: underline;
}

.blog_detail ul li {
    list-style: disc;
    margin-top: 8px;
}

.blog_detail ol li {
    list-style: decimal !important;
    margin-left: 20px;
}

.single_blog {
    background: #f5fff570;
    padding: 20px;
    border-radius: 12px;

    h1 {
        font-weight: 600 !important;
    }

    .blog_detail a {
        color: var(--primary-color) !important;
    }
}

.singleBlogPage {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 90% !important;
    margin: auto;
    justify-content: space-between;

    .singleBlogSocial {
        /* flex: 1.5; */
        /* width: 25%; */
        position: sticky;
        width: 20%;
        top: 0px;
        > p {
            font-size: 20px;
            font-weight: 500;
            margin-top: 20px;
        }

        > div {
            gap: 5px !important;
            justify-content: space-between;
        }

        a {
            padding: 0px !important;
            transition: 0.3s ease;
            &:hover {
                transform: scale(1.1);
            }
        }
        svg {
            width: 26px !important;
            height: 26px !important;
        }
    }

    .singleBlogPageTOC {
        width: 20%;
        position: sticky;
        top: 0px;

        div {
            font-size: 20px;
            font-weight: 500;
            margin-top: 20px;
        }

        p {
            font-size: 13px !important;
            margin-top: 20px;
            margin-bottom: 5px;
        }

        li {
            font-size: 12px !important;
            display: flex;
            gap: 10px;
            color: #333;
            align-items: center;
            &:hover {
                text-decoration: underline;
            }

            img {
                width: 18px;
            }
        }
    }

    .single_blog {
        width: 60%;
    }
}


.singleBlogPageTOCMobile {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .singleBlogPageTOCWeb {
        display: none;
    }

    .single_blog {
        padding: 4px 20px !important;
    }
    .toggleHeight {
        height: 52px !important;
        overflow: hidden;
        cursor: pointer;
    }

    .singleBlogPageTOCMobile {
        transition: 0.3s ease;
        height: 100%;
        display: flex !important;
        flex-direction: column;
        width: 100% !important;
        padding: 10px;
        padding-top: 10px;
        position: relative !important;
        border: 1px solid #e0e0e0;
        border-radius: 7px;
        .caretIcon {
            width: 14px;
            position: absolute;
            right: 10px;
            top: 22px;
        }

        div {
            margin-top: 0px !important;
        }

        * {
            color: #333 !important;
        }
    }

    .singleBlogPage {
        flex-direction: column;

        > div {
            position: relative !important;
            width: 100% !important;
        }
        .singleBlogSocial {
            div {
                justify-content: flex-start !important;
                gap: 10px !important;
            }
        }
    }
}

@media only screen and (max-width: 768px) {
    h1{
        font-size: 28px !important;
    }

    h2{
        font-size: 24px !important;
    }

    h3{
        font-size: 20px !important;
    }
}