/* ===== Randy Walker Blog — Custom Overrides ===== */

/* Post card thumbnails: cap display height; all images are 600x338 so
   object-fit:cover crops uniformly across all cards */
figure.main {
  overflow: hidden;
  line-height: 0;
}
figure.main img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Post detail page: cap inline article images */
.col-lg-8 .post figure img,
.col-lg-10 .post figure img,
.post-content figure img {
  max-height: 400px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
