.news {
  width: 1200px;
  padding-top: 50px;
  margin-right: auto;
  margin-left: auto;
}

.news__title {
  font-family: "Tahoma Bold", sans-serif;
  font-size: 19px;
  color: #1e1e1e;
}

.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 26px;
}

.news__list-item {
  width: 31%;
  padding-top: 16px;
  padding-bottom: 16px;
  color: #1E1D1E;
  border-bottom: 1px solid #D4D6DB;
}

.news__list-item a {
  display: block;
  margin-top: 9px;
  font-family: "Proxima Nova Semibold", sans-serif;
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.news__list-item a:hover {
  color: #583DBC;
}

@media screen and (min-width: 320px) and (max-width: 767px) {
  .news {
    width: auto;
    padding-top: 26px;
  }

  .news__title {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 16px;
  }

  .news__list {
    margin-top: 20px;
  }

  .news__list-item {
    width: calc(100% - 40px);
    padding-right: 20px;
    padding-left: 20px;
  }

  .news__list-item:last-child {
    border-bottom: 0;
  }

  .news__list-item span {
    font-size: 14px;
  }

  .news__list-item a {
    font-size: 15px;
    line-height: 21px;
  }
}
