.post_card {
    box-sizing: border-box;
    border-radius: 1.125em;
    border: 1px solid #DEE3EB;
    min-height: 19em;
    background-size: auto 100%;
    background-position: right center;
    background-repeat: no-repeat;
    background-image: url(../../../img/blog_sect/post_card_bg.svg);
    justify-content: space-between;
    max-width: 100%;
    padding: 1em 1.25em;
    margin-bottom: 1.25em;
    display: block;
}
.post_card_info {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 0 2em;
}
.post_card_img_wrap {
    position: relative;
    width: 100%;
    margin: 0;
}
.post_card_img_wrap .attachment-post-thumbnail {
    top: 50%;
    left: 50%;
    max-width: 100%;
    display: block;
    position: static;
    margin: 0 auto;
    max-height: none;
    transform: none;
}
.post_card_attrs {
    display: flex;
    align-items: center;
    margin: -0.5em -0.5em 1.375em;
    flex-wrap: wrap;
}
.post_card_attr {
    margin: 0.5em;
    display: flex;
    align-items: center;
    color: #53627C;
}
.post_card_attr_icon {
    max-width: 1em;
    max-height: 1em;
    margin-right: 0.25em;
}
.post_card_attr_label {
    font-size: 0.875em;
}
.post_card_attr_label a {
    color: inherit;
}
.post_card_cat {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 2em;
    padding: 0 1em;
    border: 1px solid #53627C;
    border-radius: 1.125em;
    color: #46597B;
    transition-property: background-color, color;
    transition-duration: 0.3s;
}
.post_card_cat:hover {
    text-decoration: none;
    background-color: #53627C;
    color: #ffffff;
}
.post_card_title {
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 0.75em;
    font-size: 1.375em;
}
.post_card_excerpt {
    letter-spacing: -0.005em;
    line-height: 1.35;
    font-weight: 300;
    margin: 0 0 0.75em;
    font-size: 1.125em;
}
.post_card_actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.post_card_author {
    font-size: 0.875em;
}
.post_card_author a {
    color: #53627C;
}
.post_card_actions .butt {
    padding: 0 2em;
}
.post_card_link {
    font-size: 1.125em;
}
.post_card_link:after {
    content: '\203A';
    margin-left: 0.25em;
}