.blog_post_cards {
    display: flex;
    flex-wrap: wrap;
    margin: -1.25em -0.625em;
}
.blog_post_card {
    width: calc(100%/3 - 1.25em);
    display: flex;
    flex-direction: column;
    margin: 1.25em 0.625em;
    box-shadow: 0 0.25em 0.375em -1px rgba(16, 24, 40, 0.1), 0 0.125em 0.25em -0.125em rgba(16, 24, 40, 0.1);
    background-color: #ffffff;
    text-decoration: none;
    color: inherit;
    transition-property: box-shadow;
    transition-duration: 0.3s;
}
.blog_post_card:active {
    box-shadow: none;
}
.blog_post_card:hover {
    text-decoration: none;
}
.blog_post_card_thumb_wrap {
    position: relative;
    flex-grow: 1;
}
.blog_post_card_thumb_wrap:before {
    content: '';
    padding: 28.17% 0;
    display: block;
}
.blog_post_card_thumb_wrap img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.partnership_blog_post_card .blog_post_card_thumb_wrap img,
.event_blog_post_card .blog_post_card_thumb_wrap img {
    width: auto;
    height: auto;
    object-fit: contain;
    top: 50%;
    left: 50%;
    max-width: calc(100% - 2.5em);
    max-height: calc(100% - 2.5em);
    transform: translate(-50%, -50%);
}
.blog_post_card_info {
    padding: 1.25em 1.25em 1.25em;
}
.blog_post_card_info:not(:last-child) {
    padding-bottom: 0;
}
.blog_post_card_title {
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.5;
    margin: 0 0 0.625em;
    font-weight: 700;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -moz-box-orient: vertical;
    display: -moz-box;
    overflow: hidden;
    height: 3em;
}
.blog_post_card_title:last-child {
    margin-bottom: 0;
}
.blog_post_card_date {
    color: #9CA3AF;
    font-feature-settings: 'salt' on;
    font-size: 0.75em;
    line-height: 1.67;
    margin: 0 0 0.83em;
}
.blog_post_card_date:last-child {
    margin-bottom: 0;
}
.blog_post_card_excerpt {
    line-height: 1.5;
    color: #374151;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    -moz-box-orient: vertical;
    display: -moz-box;
    overflow: hidden;
    height: 6em;
}
.blog_post_card_butts {
    padding: 1.25em;
    justify-content: flex-end;
    display: flex;
}
.blog_post_card_butts .butt {
    padding: 0;
    height: 2em;
    opacity: 0.5;
    transition-property: opacity;
    transition-duration: 0.3s;
}
.blog_post_card:hover .butt {
    opacity: 1;
}
.blog_post_card_butts .butt:after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../../img/icons/link-chevron-right-000.svg);
    vertical-align: middle;
}
@media(max-width: 1199px) {
    .blog_post_cards {
        margin: -0.25em -0.25em;
    }
    .blog_post_card {
        margin: 0.25em 0.25em;
        width: calc(100%/3 - 0.5em);
    }
    .blog_post_card_info {
        padding: 1em;
    }
    .blog_post_card_butts {
        padding: 1em;
    }
    .blog_post_card_title {
        font-size: 0.875em;
    }
    .blog_post_card_excerpt {
        font-size: 0.875em;
    }
    .blog_sect .sect_title {
        margin: 0 0 1em;
    }
    .partnership_blog_post_card .blog_post_card_thumb_wrap img,
    .event_blog_post_card .blog_post_card_thumb_wrap img {
        max-width: calc(100% - 2em);
        max-height: calc(100% - 2em);
    }
}
@media(max-width: 767px) {
    .blog_post_card {
        width: calc(100% - 0.5em);
    }
}