Skip to main content

Force ALL related content teaser images to the same size, site-wide or on one page, cleanly

.poc-instances-side-content .poc-instance.has-image .inner .image {
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poc-instances-side-content .poc-instance.has-image .inner .image img {
  height: 100% !important; /* ⬅ necessary to override 'height: auto' */
  width: 100%;
  object-fit: cover;
  display: block;
}