.news-item {
  padding: 14px 13px 16px;
  border: 1px solid transparent;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.news-item:hover {
  border-color: #CED4DA;
}
@media (max-width: 768px) {
  .news-item {
    border-color: #CED4DA;
  }
}
.news-item .news-item-desc {
  margin-bottom: 6px;
  text-wrap: balance;
}
@media (max-width: 1410px) {
  .news-item .news-item-desc {
    margin-bottom: 10px;
  }
}
@media (max-width: 1199px) {
  .news-item .news-item-desc {
    margin-bottom: 30px;
  }
}
.news-item .news-item-desc__title {
  margin-bottom: 8px;
}
.news-item .news-item__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.news-item .news-item__tag {
  padding: 6px 10px;
  font-size: 16px;
  line-height: 16px;
  border: 1px solid transparent;
}
.news-item .news-item__tag.red {
  color: #ff4c4c;
  border-color: #ff4c4c;
}
.news-item .news-item__tag.cyan {
  color: #5AC748;
  border-color: #5AC748;
}
.news-item .news-item__tag.magenta {
  color: #8048C7;
  border-color: #8048C7;
}
.news-item .news-item__tag.gray {
  color: #A0A5AB;
  border-color: #A0A5AB;
}
.news-item .news-item-img {
  margin-bottom: 20px;
  overflow: hidden;
}
.news-item .news-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/*# sourceMappingURL=style.css.map */
