.block-posts-latest {
    .item img {
        height    : 100%;
        width     : auto;
        max-height: 220px;
        transition: scale .1s ease-in-out;
    }

    .item a:hover img {
        scale: 1.05;
    }
}

@media screen and (min-width: 30em) {
    .block-posts-latest .item img {
        max-height: 300px;
    }
}

@media screen and (max-width: 51.999em) {
    .hide-mobile {
        display: none;
    }
}

@media screen and (min-width: 52em) {
    .block-posts-latest .item img {
        margin: auto;
    }
    .hide-medium {
        display: none;
    }
}

