.news-list-item {
  transition: box-shadow 0.3s, transform 0.3s;
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 10px 18px 10px;
  position: relative;
}
.news-list-item > a, .news-list-item > strong, .news-list-item > small {
  display: block;
  padding-left: 0;
  padding-right: 0;
}
.news-list-item:hover {
  box-shadow: 0 8px 32px 0 rgba(60,60,120,0.18), 0 1.5px 6px 0 rgba(60,60,120,0.10);
  transform: translateY(-6px) scale(1.025);
  z-index: 2;
  background: #f8faff;
}
.news-list-item:active {
  transform: translateY(-2px) scale(0.99);
}
