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

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

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

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

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

.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_category {
    background-color: var(--grey);
    color: var(--dark-blue);
    margin-right: 25px;
}

.blog_date {
    background-color: var(--light-blue);
    color: var(--white);
    margin-right: 25px;
}

.bookmark {
    background-color: var(--red);
    color: var(--white);
    width: max-content;
}

/************************ 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(--yellow);
    color: var(--dark-blue);
    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;
}

.moodscope_member {
    color: var(--grey) !important;
    margin-top: 5px;
}

.comment_separator {
    width: 100%;
    height: 2px;
    background-color: var(--grey);
    margin: 50px 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,
    .bookmark {
        width: 100%;
    }

    .blog_category,
    .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%;
    }
}