.container-narrow {
  max-width: 1500px !important;
  width: 100% !important;
  padding: 0 15px !important;
}

.homepage-blog-wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
}

.homepage-blog-wrapper .homepage-group-title {
  flex: 0 0 100% !important;
  width: 100% !important;
}

.blog-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}

.blog-wrapper .news-item {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
}

.blog-wrapper .news-item .news-image {
  width: 100%;
  height: auto;
}

.blog-wrapper .news-item .description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* Hide everything inside description except first paragraph text */
.blog-wrapper .news-item .description figure,
.blog-wrapper .news-item .description img,
.blog-wrapper .news-item .description ul,
.blog-wrapper .news-item .description ol,
.blog-wrapper .news-item .description h2,
.blog-wrapper .news-item .description h3,
.blog-wrapper .news-item .description h4,
.blog-wrapper .news-item .description p ~ p,
.blog-wrapper .news-item .description p ~ figure {
  display: none !important;
}

.blog-wrapper .news-item .description p:first-child {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

/* Responsive - 2 columns on tablet */
@media (max-width: 992px) {
  .blog-wrapper .news-item {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

/* Responsive - single column on mobile */
@media (max-width: 576px) {
  .blog-wrapper .news-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* Blog listing - title underline on hover */
.news-wrapper .news-item h2 a {
  text-decoration: none;
}

.news-wrapper .news-item h2 a:hover {
  text-decoration: underline;
}
