/* NTRM Group — blog listing card alignment */

.blog-2 .row > [class*="col-"] {
  display: flex;
}

.blog-2__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.blog-2__media {
  aspect-ratio: 16 / 10;
  height: auto;
  flex-shrink: 0;
  background-color: #f0f0f0;
}

.blog-2__media a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.blog-2-meta {
  z-index: 2;
}

.blog-2__meta-list {
  flex-shrink: 0;
  margin-bottom: 0;
}

.blog-2__title {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 15px;
}

.blog-2__title h5 {
  margin-bottom: 12px;
  min-height: 4.05em;
  line-height: 1.35;
}

.blog-2__title h5 a {
  display: block;
}

.blog-2__title p {
  margin-bottom: 0;
  flex: 1;
}

@media (max-width: 991px) {
  .blog-2__title h5 {
    min-height: 3.4em;
  }
}

@media (max-width: 575px) {
  .blog-2__media {
    aspect-ratio: 16 / 11;
  }

  .blog-2__title h5 {
    min-height: 0;
  }
}
