/* Custom overrides — keep thumbnail sizes consistent regardless of the
   dimensions of the image an admin uploads, and keep images inside
   article content from overflowing their column. */

.latest-articles .blog-item .thumb,
.latest-articles .blog-item.list .thumb {
  width: 100%;
  height: 220px;
}

.latest-articles .blog-item .thumb img,
.latest-articles .blog-item.list .thumb img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  object-fit: cover;
}

.blog-text img,
.blog-contant img {
  max-width: 100%;
  height: auto;
}
