.posts-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.post-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 50px;
    position: relative;
}
.post-item .link-absolute {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.post-item .post-item-image {
    width: 306px;
}
.post-item .post-item-image img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.post-item .post-item-content {
    font-size: 1.2rem;
    width: calc(100% - 306px);
    margin-left: 24px;
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: navy;
}
.post-item .post-item-content .post-item-category {
    font-weight: 700;
    color: #af31d3;
}
.post-item .post-item-content .post-item-date {
    color: #af31d3;
    margin-bottom: 15px;
}
.post-item .post-item-content .post-item-title {
    font-size: 1.375rem;
    color: navy;
    font-weight: 700;
    margin-bottom: 15px;
}
.post-item .post-item-content .post-item-cta {
    text-align: right;
}
.post-item .post-item-content .post-item-excerpt {
    margin-bottom: 15px;
}
.post-item .post-item-content a {
    color: navy;
    font-weight: 700;
    text-decoration: underline;
}
@media (max-width: 1024px) {
    .post-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 47px;
    }
    .post-item .post-item-image {
        width: 100%;
        margin-bottom: 31px;
    }
    .post-item .post-item-image img {
        width: 100%;
        height: 211px;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }
    .post-item .post-item-content {
        font-size: 1.2rem;
        width: 100%;
        margin: 0;
    }
}
.posts-items-pagination a,
.posts-items-pagination span {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    padding: 0px 15px;
    text-align: center;
}
.posts-items-pagination a.current,
.posts-items-pagination span.current {
    text-decoration: underline;
}
.posts-items-pagination a.prev,
.posts-items-pagination span.prev {
    margin-right: 25px;
}
.posts-items-pagination a.next,
.posts-items-pagination span.next {
    margin-left: 25px;
}

.translate-press-is-editing .post-item .link-absolute {
    position: relative;
    z-index: -1;
}
