.column_lists {
  margin: 1rem auto 0;
  max-width: 980px;
}
@media screen and (min-width: 960px) {
  .column_lists {
    padding: 0;
  }
}
.column_lists_list {
  list-style: none;
  padding: 0 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 960px) {
  .column_lists_list {
    gap: 24px;
  }
}
.column_lists_item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  transition: 0.3s;
}
.column_lists_item.is-featured {
  border: 3px solid #111;
}
.column_lists_item:hover {
  background-color: #EDEDED;
}
.column_lists_link {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 960px) {
  .column_lists_link {
    padding: 24px;
  }
}
.column_lists_thumb {
  position: relative;
  width: 110px;
  flex-shrink: 0;
  margin-right: 16px;
}
@media screen and (min-width: 960px) {
  .column_lists_thumb {
    width: 240px;
    margin-right: 24px;
  }
}
.column_lists_thumb .badge-new {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #111;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  z-index: 1;
  font-size: 10px;
  padding: 4px 8px;
}
@media screen and (min-width: 960px) {
  .column_lists_thumb .badge-new {
    font-size: 12px;
    padding: 6px 12px;
  }
}
.column_lists_img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background-color: #e5e5e5;
}
.column_lists_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}
.column_lists_category {
  display: block;
  color: #999;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 11px;
  margin-bottom: 4px;
}
@media screen and (min-width: 960px) {
  .column_lists_category {
    font-size: 13px;
    margin-bottom: 8px;
  }
}
.column_lists_title {
  display: block;
  color: #111;
  font-weight: 700;
  line-height: 1.5;
  font-size: 14px;
  margin: 0 0 8px 0;
}
@media screen and (min-width: 960px) {
  .column_lists_title {
    font-size: 18px;
    margin: 0 0 12px 0;
  }
}
.column_lists_date {
  display: block;
  font-family: "Figtree", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 0.9333333333;
  color: #111;
  opacity: 0.5;
  font-size: 12px;
}
@media screen and (min-width: 960px) {
  .column_lists_date {
    font-size: 14px;
  }
}