.news-list {
  padding: 140px 0;
}
.news-list .row {
  display: flex;
  gap: 175px;
}
.news-list__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.16;
  color: var(--color-gray-blue);
  max-width: 390px;
}
.news-list__item {
  display: flex;
  gap: 70px;
  padding: 45px 0 30px;
  border-bottom: 1px solid #cccccc;
}
.news-list__item:first-child {
  padding: 0 0 30px;
}
.news-list__item:last-child {
  border: none;
}
.news-list__item-img {
  transform: scale3d(1, 1, 1);
  overflow: hidden;
}
.news-list__item-img img {
  transition: transform 0.5s ease;
}
.news-list__item-img:hover img,
.news-list__item-img:focus img {
  cursor: pointer;
  transform: scale3d(1.1, 1.1, 1);
}
.news-list__item-img {
  width: 100%;
  max-width: 180px;
  height: 140px;
  transition: transform 0.5s ease;
}
.news-list__item-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-blue);
  margin-bottom: 10px;
  display: inline-block;
}
.news-list__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-gray-blue);
  margin-bottom: 24px;
}

.news-list__items--controls {
  display: flex;
  justify-content: center;
  padding-top: 70px;
  background-color: white;
  transform: translateY(-1px);
}

@media screen and (max-width: 1200px) {
  .news-list {
    padding: 90px 0;
  }
}

@media screen and (max-width: 1024px) {
  .news-list__title {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .news-list {
    padding: 60px 0;
  }
}

@media screen and (max-width: 575px) {
  .news-list__item-img {
    max-width: 100%;
  }

  .news-list__items--controls {
    padding-top: 15px;
  }
}
