
/* =====================================================
   FORCE ALL POST IMAGES TO 150x150 SQUARE GRID
   Works on legacy posts without editing 500 posts
===================================================== */

/* Stop any theme column behaviour */
.entry-content,
.wp-block-post-content {
  column-count: 1 !important;
}

/* Remove <br> stacking between image links */
.entry-content br,
.wp-block-post-content br {
  display: none !important;
}

/* Make linked images tile */
.entry-content a > img,
.wp-block-post-content a > img {
  width: 150px !important;
  height: 150px !important;
  object-fit: cover !important;
  display: inline-block !important;
  margin: 0 12px 12px 0 !important;
  vertical-align: top !important;
  max-width: none !important;
}

/* Make anchor behave inline */
.entry-content a,
.wp-block-post-content a {
  display: inline-block !important;
}

/* Keep text paragraphs normal */
.entry-content p,
.wp-block-post-content p {
  display: block;
}
