.category-blog .blog-post-card article {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-blog .post-image-column {
    width: 100%;
    flex-shrink: 0;
}

.category-blog .post-image {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: auto;
    width: 100%;
}

.category-blog .post-content-column {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .category-blog .blog-post-card article {
        flex-direction: row;
        align-items: flex-start;
    }

    .category-blog .post-image-column {
        width: 390px;
        flex-shrink: 0;
    }

    .category-blog .post-image {
        width: 390px;
        height: 220px;
        object-fit: cover;
        aspect-ratio: auto;
    }

    .category-blog .post-content-column {
        flex-grow: 1;
    }
}