.blogEntry {
  margin: 15px 0;
}

.blogImage {
  height: 250px;
  overflow: hidden;
  background-color: #FAFAFD;
}

.blogImage > a {
  display: block;
  height: 100%;
}

.blogImage img {
  max-height: initial;
}

.blogImage.expand img {
  max-width: fit-content;
  max-height: fit-content;
}

.blogInformation {
  padding: 15px;
  background-color: var(--skin-primary-color-1);
  color: #fff;
  border-left: 1px solid;
  border-right: 1px solid;
}

.blogTitle {
  padding: 10px 0px;
  font-size: 21px;
  font-weight: bolder;
}

.blogTitle a {
  color: #fff !important;
}

.blogPostedInfo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.blogPostedInfo > div {
  padding: 0px 5px;
}

a.category-filter-item {
  margin-bottom: 10px;
  margin-right: 5px;
  margin-left: 5px;
}

.blogCategoryFilterRow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}

@media (min-width: 767px) {
  .blogInformation {
    height: 230px;
  }
  .blogTitle {
    height: 105px;
    min-height: 105px;
    clear: both;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    /* autoprefixer: off */
  }
  .blogExcerpt {
    height: 80px;
    min-height: 80px;
    clear: both;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    overflow: hidden;
    -webkit-box-orient: vertical;
    /* autoprefixer: off */
  }
}