.news {
  background-color: var(--text-light-color);
}

.news__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.news__title {
  margin-bottom: 60px;
}

.news__item {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.news__item:last-child {
  border-bottom: none;
}

.news__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 200px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--descr-color);
}

.news__link p,
.news__link time {
  transition: color .3s ease-in-out;
}

.news__link:hover p,
.news__link:hover time {
  color: var(--text-hover-color);
}
