.thumbnail-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;   /* Forces 1280x720 ratio */
    overflow: hidden;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* Crops instead of stretching */
    object-position: center;
}