
.blog_list {
    display: flex;
    cursor: pointer;
    /* border-bottom: 1px solid var(--border_color); */
    padding-bottom: 24px;
}
.blog_list .left{
    width: 65%;
    margin-left: 12px;
}

.blog_list .right{
    width: calc(35% - 48px);
    display: flex;
    margin-right: 48px;
}
.blog_list figure{
    width: 100%;
    /* height: 75%; */
    /* width: 200px; */
    /* height: 200px; */
}
.blog_list figure > img{
    /* height: 75%; */
}

.blog_list .title{
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: bold;
}
.blog_list .date{
    color: var(--highlight_dark);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
}
.blog_list .desc{
    margin-top: 24px;
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--second_dark);
}
.blog_list .btn_group {
    display: flex;
    justify-content: flex-end;
}

.btn_group > button{
    display: block;
    background: var(--main_dark);
    padding: 6px 18px;
    margin-top: 24px;
    border: none;
    color: white;
    letter-spacing: 2.4px;
    cursor: pointer;
}
.post_content{
    width: 960px;
    margin: 0 auto ;
    padding-top: 24px;
}
.post_content > .title_block{
    margin-bottom: 48px;
    padding-top: 24px;
}
.post_content > .title_block > .title{
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: bold;
}
.post_content > .title_block > .desc{
    margin: 12px 0 0;
    font-size: 20px;
    color: var(--main_dark);
}
.post_content > .title_block > .date{
    font-size: 14px;
    font-weight: bold;
    color: var(--highlight_dark);
    letter-spacing: 1.5px;
    margin: 4px 0;
}
/* .post_content .content {
    width: 90%;
} */
.post_content .content > p{
    font-size: 16px !important;
    line-height: 1.5;
}
.post_content .content > p > img{
    margin: 24px 0 !important;
}
.post_content .content a{
    color: var(--highlight_dark);
    text-decoration: underline;
    transform: .5s;
}
.post_content .content a:hover{
    font-weight: bold;
}
@media (max-width: 767px) {
    .container > .title_block{
        margin-bottom: 20px;
    }
    .post_content > .title_block{
        padding: 12px 20px;
        margin-bottom: 0;
    }
    .post_content{
        width: 100%;
        padding-top: 24px;
    }
    .post_content > .content p{
        padding: 0 20px;
    }
    .post_content > .content p > img{
        width: 100% !important;
        height: auto !important;
    }
    .blog_list{
        width: 100%;
        display: block;
    }
    .blog_list .right{
        width: 100%;
    }
    .blog_list .left{
        width: calc(100% - 40px);
        padding: 20px;
        margin-left: 0;
    }
    .blog_list .desc{
        margin-top: 12px;
    }
    .blog_list .title{
        font-size: 20px;
    }
}