Hello! Just wanted to log a little thing I noticed on this (excellent) article:

Videos aren’t currently flexible, which means they’re rendering at “full” width on smaller screens.
There are some automated solutions (e.g.) that could make videos resize proportionately, but a quick fix would be to toss this into the CSS:
.article-main iframe {
max-width: 100%;
}```
Hope this helps!