/* News thumbnails keep the requested 920 x 640 proportions at every card width. */
.posts-loop article.type-post .post-others-left figure {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0;
    aspect-ratio: 920 / 640;
    overflow: hidden;
}

.posts-loop article.type-post .post-others-left figure img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    object-position: center;
    transform: none;
}
