.post_card {
    box-sizing: border-box;
    border-radius: 1.625em;
    background-color: #E7E7E7;
    padding: 1em;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.post_card_image {
    background-size: cover;
    background-position: center;
    border-radius: 1.5em;
}
.post_card_image:before {
    content: '';
    display: block;
    padding: 28.47% 0;
}
.post_card_image:not(:last-child) {
    margin-bottom: 1em;
}
.post_card_info {
    display: flex;
    flex-direction: column;
}
.post_card_title {
    margin: 0;
    font-weight: 500;
    font-size: 1.125em;
}
.post_card_title:not(:last-child) {
    margin-bottom: 1em;
}
.post_card_excerpt {
    opacity: 0.5;
    font-weight: 500;
    font-size: 0.875em;
    flex-grow: 1;
}
.post_card_excerpt:not(:last-child) {
    margin-bottom: 1.25em;
}