/************************ Blog ***************************/
.main_body h1 {
    margin-top: 60px;
    margin-bottom: 50px;
    text-align: center;
}

.more_posts h1 {
    margin: 50px 0 0;
}

.main_body h3 {
    color: var(--bronze);
}

.main_body img {
    border-radius: 10px;
    margin: 10px auto;
}

.main_body a {
    color: var(--green);
    font-weight: 700;
    text-decoration: underline;
}

.main_body ul li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-weight: 900;
    padding: 0 10px 0 0;
    color: var(--bronze);
    font-size: 16px;
}

.main_body ul li {
    margin-bottom: 15px;
    display: flex;
    font-size: 16px;
}

.main_body ol {
    padding-left: 0;
}

.main_body ol li::marker {
    padding-left: 0;
    font-size: 16px;
}

.main_body ol li {
    display: flex;
    list-style: inside decimal;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
}

.main_body ol li span {
    padding-left: 10px;
    font-weight: 400;
}

.blog_detail_info {
    display: flex;
    align-items: stretch;
    justify-content: end;
    margin-bottom: 45px;
}

.blog_information {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    height: 46px;
    width: max-content;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0px 5px 10px #00000014;
    transition: 0.1s all ease-in-out;
    outline: none;
    font-weight: 500;
}

.blog_information i {
    margin-right: 10px;
}

.blog_date {
    background-color: var(--bronze);
    color: var(--white);
}

/************************ Blog Social ***************************/
.sidebar {
    position: absolute;
    left: -71px;
    height: 100%;
}

.blog_social {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 140px;
}

.blog_social a {
    background-color: var(--green);
    color: var(--white);
    width: 46px;
    height: 46px;
    border-radius: 5px;
    font-size: 1.2em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 20px 0;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
}

.blog_social a:last-child {
    margin-right: 0;
    margin-bottom: 0;
}

.blog_author {
    margin-bottom: 0;
}

.more_posts .button {
    margin: 45px auto 0 auto;
}

.mobile {
    display: none;
}

@media (max-width: 700px) {
    .sidebar {
        display: none;
    }

    .mobile {
        display: flex;
    }

    .blog_detail_info {
        display: block;
    }

    .blog_information {
        width: 100%;
    }

    .blog_date {
        margin-right: 0;
        margin-bottom: 25px;
    }

    .blog_social {
        flex-direction: row;
        margin-top: 25px;
    }

    .blog_social a {
        margin: 0 20px 0 0;
    }

    .more_posts .button {
        width: 100%;
    }
}