.custom-container {
    max-width: 1740px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.blog_head_title {
    font-size: 56px;
    line-height: 60px;
    /*color: var(--secondary);*/
}

.blog-container h1 {
    font-size: 48px;
    line-height: 56px;
    font-weight: 700;
    position: relative;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.blog-container h2 {
    font-size: 30px;
    line-height: 48px;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}


.blog-container h3 {
    margin-top: 1rem;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.blog-container ul {
    list-style: disc;
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.blog-container li {
    margin-bottom: 0.4rem;
    /*color: var(--secondary);*/
}

.blog-container table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #ddd;
    background-color: #fff;
}

.blog-container table th,
.blog-container table td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

.blog-container table th {
    background-color: #f2f2f2;
}

.blog-container table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.blog-container tbody tr:hover {
    background-color: #f5f5f5;
}

.blog-link {
    text-decoration: none;
}

.recent_img {
    /* width: 16%; */
    height: 45px;
    width: 45px;
}

.recent_img>img {
    height: 45px;
    width: 45px;
}

.recent_text {
    width: 84%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 14px;
}

.recent_title {
    font-size: 16px;
    line-height: 19px;
    color: var(--black);
    display: -webkit-box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.recent_text .secondary-text {
    font-size: 12px;
    color: gray;
    margin-bottom: 0px;
}

.author_desc {
    display: -webkit-box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.author_wrapper {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 12px;
}

.author_img {
    width: 100px;
}

.author_title {
    font-size: 15px;
    font-weight: bold;
}

.author_text {
    font-size: 12px;
}


.blog-post-image {
    width: 100%;
    height: 170px;
}

.blog-post-image>image {
    width: 100%;
}

.share_via {
    display: flex;
    justify-content: space-between;
}

.share_via a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
}

.share_via a>img {
    width: 32px;
    height: 32px;
}


@media screen and (max-width:568px) {
    .blog_head_title {
        font-size: 36px;
        line-height: 40px;
    }

    .blog-container h1 {
        font-size: 27px;
        line-height: 30px;
    }

    .blog-container h2 {
        font-size: 24px;
        line-height: 26px;
    }

    .blog-container h3 {
        font-size: 21px;
        line-height: 23px;
    }

}