.newsList a.newsHasImage {
  grid-template-columns: 96px 120px minmax(0, 1fr) auto;
  gap: 20px;
}

.newsList .newsThumb {
  display: block;
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 2px;
  background: #edf0f2;
}

.newsList a.newsHasImage span {
  min-width: 0;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

@media (max-width: 800px) {
  .newsList a.newsHasImage {
    grid-template-columns: 76px minmax(0, 1fr) 16px;
    column-gap: 13px;
    row-gap: 5px;
    padding: 18px 4px;
  }

  .newsList a.newsHasImage .newsThumb {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 76px;
    height: 76px;
  }

  .newsList a.newsHasImage time {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .newsList a.newsHasImage span {
    grid-column: 2 / 4;
    grid-row: 2;
    align-self: start;
    font-size: 13px;
  }

  .newsList a.newsHasImage b {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
}
