Embed video Thumbnail black bars on mobile (Wistia)

Here’s a CSS solution that maintains the aspect ratio without a fixed height:

iframe[src*="wistia.net"] {
    aspect-ratio: 16 /9;
    height: auto;
}
2 Likes