.news-feed {
  background: #fff;
  border: 1px solid #eef2f7;
  margin-top: 8px;
}

.news-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  padding: 34px 42px;
  align-items: start;
}

.news-item + .news-item {
  border-top: 1px solid #f2f5f9;
}

.news-item__thumb {
  display: block;
  width: 220px;
  height: 110px;
  overflow: hidden;
  background: #fff;
}

.news-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-item__title {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 700;
  color: #5c7fa4;
}

.news-item__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: #1f2937;
  font-weight: 600;
}

@media (max-width: 960px) {
  .news-item {
    grid-template-columns: 176px minmax(0, 1fr);
    gap: 22px;
    padding: 26px 24px;
  }

  .news-item__thumb {
    width: 176px;
    height: 88px;
  }
}

@media (max-width: 560px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .news-item__thumb {
    width: 100%;
    max-width: 220px;
    height: auto;
    aspect-ratio: 2 / 1;
  }

  .news-item__title {
    font-size: 16px;
  }

  .news-item__desc {
    font-size: 13px;
    line-height: 1.75;
  }
}
