.news_list_item {
  border-bottom: solid 1px #e5e5e5;
  padding-bottom: var(--space-lg);
}
.news_list_item_column {
  display: grid;
  gap: var(--space-md);
}
.news_list_category {
  text-align: center;
  border: 1px solid #e3e3e3;
  padding: 0.4em 0.8em;
}
.news_table {
  width: auto;
}
.news_table .news_table_tr:nth-child(1),
.news_table .news_table_tr:nth-child(2) {
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  background-color: #efefef;
}
.news_table .news_table_tr:nth-child(n + 3) {
  border-left: 1px solid #ccc;
  background-color: #ffffff;
}
.news_table .news_table_td {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .news_list_item_column {
    grid-template-columns: 28% 1fr;
  }
}
