/* Prevent wide comparison tables from expanding the article grid beyond the viewport. */
.blog-article-layout,
.blog-article-content {
    min-width: 0;
}

.blog-article-content table {
    max-width: 100%;
    min-width: 0;
    overscroll-behavior-inline: contain;
}

@media (max-width: 620px) {
    .blog-article-content {
        overflow-wrap: anywhere;
        word-break: normal;
    }
}
