/* Blog style */
.page_blog_content {
    width: calc(100% - 350px);
}
.post_preview {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px 20px 20px;
    gap: 20px;
    border-radius: 6px;
}
.post_preview:last-child {
    margin-bottom: 0;
}
.post_preview_name {
    color: #110F0F;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    margin-right: auto;
}
.post_preview_date {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    font-size: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    line-height: 21px;
}

.post_preview_date svg {
    width: 16px;
    min-width: 16px;
    display: block;
    margin-right: 8px;
}

.post_preview_image {
    background-color: #FFFFFF;
    width: 275px;
    min-width: 275px;
    height: 275px;
    overflow: hidden;
    border-radius: 6px;
}
.post_preview_image_empty {
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.post_preview_image_empty svg {
    min-width: 150px;
    min-height: 150px;
}
.post_preview_image picture {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.post_preview_annotation_content {
    width: calc(100% - 300px);
    gap: 12px;
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.8);
}
.post_preview_annotation {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post_preview_link {
    margin-top: auto;
    margin-left: auto;
}

.post_image {
    width: 100%;
    height: 385px;
}
.post_info {
    padding: 20px 0;
    margin-bottom: 30px;
    color: #747474;
    border-bottom: 1px solid #C2C2C2;
}
.post_info svg {
    margin-right: 8px;
}
.share_btns {
    border-top: 1px solid;
    border-color: #C2C2C2;
    margin-top: 30px;
    padding-top: 20px;
}
.share_btns a:not(:last-child) {
    margin-right: 20px;
}