/* Homepage blog cards – equal height */

.home-news-section .row {
  display: flex;
  flex-wrap: wrap;
}

.home-news-section .news-block {
  display: flex;
  margin-bottom: 30px;
}

.home-news-section .news-block .inner-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.home-news-section .news-block .image-box .image {
  aspect-ratio: 16 / 10;
  min-height: 220px;
}

.home-news-section .news-block .image-box .image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.home-news-section .news-block .content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-news-section .news-block .content .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 60px;
  margin-bottom: 10px;
}

.home-news-section .news-block .content .text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 72px;
  flex: 1;
  margin-bottom: 12px;
}

.home-news-section .news-block .content .read-more {
  margin-top: auto;
}

@media (max-width: 1199.98px) {
  .home-news-section .news-block .content {
    margin-top: 0;
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .home-news-section .news-block .content .title {
    min-height: auto;
  }

  .home-news-section .news-block .content .text {
    min-height: auto;
  }
}
