.list_item {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  width: calc(25% - 22.5px); /* 4 per row, subtracting 3 gaps of 30px across 4 items */
  margin: 0;
}

@media (max-width: 1000px) {
  .list_item {
    width: 100%;
  }
}


.list_item .item_image {
  display: block;
  width: 100%;
  height: auto;
}

.list_item .item_image_empty {
  width: 100%;
  height: 180px;
  background: #efefef;
}


/* Page item */


.page_item {
  color: inherit;
  display: block;
  break-inside: avoid;
}

.page_item .item_title {
  margin-top: 1em;
  font-size: 1.2em;
  color: var(--mid-green);
  font-weight: 500;
  text-decoration: underline;
  text-underline-position: under;
}

