.blog-listing__post-image-wrapper {
  position: relative;
  display: flex;
}
.highlights {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}
.highlights .eyebrow-text { margin-bottom: 20px; }
.highlighted-post {
  display: flex;
  flex-direction: row;
  margin-bottom: 1rem;
}
.highlighted-post h4 {
  margin-bottom: 0.5rem;
  font-size; 22px;
}
.highlighted-post a {
  text-decoration: none;
  color: #fff;
}
.highlighted-post .blog-listing__post-summary {
  color: rgba(255,255,255,0.7)
}
.highlighted-post img {
  width: 160px;
  height: 160px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-right: 1.5rem;
}


@media (max-width:992px) {
  .highlighted-post .blog-listing__post-summary {
    display: none;
  }
  .highlighted-post h4 {
    font-size: 20px;
  }
  .highlighted-post img {
    width: 120px;
    height: 120px;
  }
}