.news-item {
  background-color: white;
  box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.03);
  border-radius: 14px;
  width: 100%;
  height: 100%;
}

.news-item__img {
  height: 220px;
  display: block;
}

.news-item__img img {
  border-radius: 14px 14px 0px 0px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.news-item__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #222222;
  margin-bottom: 10px;
  transition: color .2s ease;
  text-decoration: none;
}

.news-item__title:focus,
.news-item__title:hover{
  color: #068979;
}
.news-item__desc {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #222222;
  margin-bottom: 10px;
}

.news-item__more-link {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-decoration-line: underline;
  color: #222222;
  transition: color .2s ease;
}

.news-item__more-link:hover,
.news-item__more-link:focus{
  color: #068979;
}

.news-item__date {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #999999;
}

.news-item__container {
  padding: 20px;
  height: calc(100% - 220px);
  display: flex;
  flex-direction: column;
}

.news-item__bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}