.row_news_customer_reviews {
  display: flex;
}

.row_news_customer_reviews .subscribe_news {
  display: none;
}

.row_news_customer_reviews .news a {
  text-decoration: none;
}

.container_customer_reviews-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex: 1;
}

.news_block_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 300px;
  min-height: 364px;
  max-width: 405px;
  width: 100%;
  background-color: var(--color-light);
  border-radius: var(--border-radius);
}

@media screen and (max-width: 1200px) {
  .news_block_wrapper {
    max-width: 300px;
  }
}

@media screen and (max-width: 991px) {
  .news_block_wrapper {
    max-width: unset;
  }
}

.news_block_wrapper > * {
  line-height: 120%;
}
.news_block_wrapper h5 {
  min-height: 40px;
  margin-top: 0;

}
.news_block_wrapper h5 a {
  display: -webkit-box;
  width: 100%;
  color: var(--color-grey);
  font-size: 16px;
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3; 
  -webkit-box-orient: vertical;
}

.news_block_wrapper p {
  height: 55px;
  margin: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3; 
  -webkit-box-orient: vertical;
}

.news_block_wrapper time {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--color-grey-light);
}

.news_block_wrapper time svg {
  width: 10px;
}

.news_block_wrapper img {
  display: inline-block;
  width: 100%;
  height: 100%;
  height: 140px;
  text-align: center;
}

.article-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  color: var(--sm-btn-color);
}
.article-link .icon {
  margin: 0;
  fill: var(--sm-btn-color);
  font-size: 18px;
  transform: translateY(1px);
}

.article-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
}