.news-block {
  margin-bottom: 8px;
}
.news-block .news-title {
  color: var(--primary-color);
  font-size: 25px;
  font-weight: 600;
  line-height: 130%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}
.news-block .news-title .date {
  color: rgb(128, 128, 128);
  font-size: 15px;
  font-weight: 300;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-block .news-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-block .news-title {
    font-size: 18px;
    gap: 15px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .news-block .news-title {
    flex-direction: column-reverse;
    justify-content: unset;
    gap: 0;
    font-size: 18px;
    margin-bottom: 4px;
  }
  .news-block .news-title .date {
    font-size: 12px;
  }
}

.news-block .big-news {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.news-block .big-news img {
  border-radius: 15px 15px 0 0;
  height: 270px;
  overflow: hidden;
  object-fit: cover;
  text-align: center;
  width: 100%;
}
.news-block .big-news .text-block {
  height: unset;
  flex-grow: 1;
  border: 1px solid rgb(179, 179, 179);
  border-top: 0;
  border-radius: 0 0 15px 15px;
  padding: 20px 30px;
}
.news-block .big-news .news-title .date {
  color: rgb(128, 128, 128);
  font-size: 15px;
  font-weight: 300;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-block .big-news .text-block {
    padding: 15px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-block .big-news .text-block {
    padding: 12px 18px;
  }
}

.news-block .small-news-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.news-block .small-news {
  border: 1px solid rgb(179, 179, 179);
  border-radius: 15px;
  padding: 10px 25px 20px 25px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-block .small-news {
    padding: 10px 15px 20px 15px;
  }
}
@media (max-width: 767px) {
  .news-block .small-news {
    padding: 10px 15px 20px 15px;
  }
}

.news-block .small-news .detail-info {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 767px) {
  .news-block .small-news .detail-info {
    -webkit-line-clamp: 3;
  }
}

/*# sourceMappingURL=style.css.map */