section.blog_single {
    padding: 75px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

section.blog_single .content {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

section.blog_single .content h2 {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 25px 0 20px;
    text-align: center;
}

section.blog_single .content ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

section.blog_single .content ul li {
    align-items: center;
    gap: 8px;
    color: gray;
    font-size: 14px;
    letter-spacing: 0.5px;
    transform: none;
    transition: none;
    background-color: unset;
    border-left: 0;
    padding: 0;
    margin-bottom: 0;
    line-height: unset;
}

section.blog_single .content ul li::before {
    display: none;
}

section.blog_single .content ul li i {
    color: gray;
    font-size: 14px;
}

section.blog_single .blog-body {
    margin-bottom: 30px;
}

section.blog_single .blog-body .featured-img {
    float: left;
    width: 450px;
    height: auto;
    margin: 0 25px 15px 0;
    border: 1px solid #EEE;
    border-radius: 15px;
    object-fit: cover;
}

section.blog_banner {
    max-height: 609px;
    background: linear-gradient(90deg, #0A5B35 0%, #002111 100%);
    padding: 80px 100px;
}

section.blog_banner .blog_banner_wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 90px;
    align-items: center;
}

section.blog_banner .blog_banner_image {
    max-width: 460px;
    max-height: 300px;
    border-radius: 6px;
    object-fit: contain;
}

section.blog_banner .blog-metadata {
    width: 472px;
    height: auto;
    gap: 22px;
    display: flex;
    flex-direction: column;
}

section.blog_banner .blog-metadata .created-at,
section.blog_banner .blog-metadata .author {
    gap: 7.58px;
    height: 16px;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    white-space: nowrap;
}

section.blog_banner .blog-metadata h2,
section.blog_banner .blog-metadata h2 {
    color: var(--text-white);
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 51px;
    letter-spacing: 0;
    vertical-align: middle;
}

section.blog_banner .blog-metadata .created-at span,
section.blog_banner .blog-metadata .author span {
    color: var(--text-light-grey);
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 11px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
}

section.blog_banner .blog-metadata .created-at svg,
section.blog_banner .blog-metadata .author svg {
    width: 12px;
    height: 12px;

}

@media screen and (max-width: 992px) {
    section.blog_banner {
        height: auto;
        max-height: none;
    }

    section.blog_banner .blog_banner_wrapper {
        flex-direction: column;
        gap: 30px;
    }

    section.blog_banner .blog-metadata {
        text-align: center;
        justify-content: center;
    }

    section.blog_banner .blog-metadata .created-at,
    section.blog_banner .blog-metadata .author {
        text-align: center;
        justify-content: center;
    }

    section.blog_banner .blog-metadata .created-at span,
    section.blog_banner .blog-metadata .author span {
        color: var(--text-white);
    }

    section.blog_banner .blog-metadata .created-at svg path {
        stroke: var(--text-white);
    }

    section.blog_banner .blog-metadata .author svg path {
        fill: var(--text-white);
    }
}

@media (max-width: 1024px) {

    section.blog_banner .blog-metadata h2,
    section.blog_banner .blog-metadata h2 {
        line-height: 35px;
    }
}

section.blog_single .content h4 {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
    color: #333;
}

section.blog_single .content h4.heading,
section.blog_single .content h4.title,
section.blog_single .content h4.bold {
    font-weight: 700;
    font-size: 20px;
    margin-top: 30px;
}

@media (max-width: 425px) {
    section.blog_banner .blog_banner_image {
        max-width: 350px;
        max-height: 250px;
    }

    section.blog_banner .blog-metadata {
        width: 400px;
    }

    section.blog_single {
        padding: 45px 0;
    }
}

@media (max-width: 375px) {
    section.blog_banner .blog_banner_image {
        max-width: 90vw;
        max-height: 250px;
    }

    section.blog_banner .blog-metadata {
        width: 90vw;
    }
}
