.news-list .flexbox {
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: 30px;
}
.news-list .item-wrapper {
  width: 33.3333333333333%;
  position: relative;
  min-height: 1px;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 20px;
}
.news-list .item-wrapper > div {
  transition: transform ease 0.2s, box-shadow ease 0.2s;
  border: 1px solid #ececec;
}

.item__header {
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item_box {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.item_views {
  display: flex;
  align-items: center;
  column-gap: 4px;
}
.item_views span {
  color: #999999;
}
.item_link a {
  text-decoration: none;
  font-weight: bold;
}
.item_link a:hover {
  text-decoration: underline;
}
.news-list .name {
  color: #141414;
  text-decoration: none;
  padding: 9px;
  display: block;
  font-size: 16px;
  height: unset !important;
}
.news-list .date {
  color: #999;
}
.news-list .image > div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  height: 208px;
}
.image-item-img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: block;
}
.image_mobile {
  display: none;
}
@media (max-width: 768px) {
  .news-list .image > div {
    display: none;
  }
  .image-item-img {
    object-fit: cover;
  }
  .image_mobile {
    display: block;
  }
}
/* @media (max-width: 500px) {
  .image-item-img {
    object-fit: unset;
  }
} */
.news-list .item__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-list .item__inner-desc > p {
  height: unset !important;
}
.item__inner-desc {
  flex-grow: 1;
}
.news-list p {
  padding: 9px;
  margin: 0;
  font-size: 12px;
}
.news-list .item-wrapper > div:hover .name {
  color: #008dd2;
}
@media (min-width: 992px) {
  .news-list .item-wrapper > div:hover {
    border-color: #fff;
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 10%);
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    background-color: #fff;
    z-index: 1;
  }
}
@media (max-width: 1309px) {
  .news-list .item-wrapper {
    width: 50%;
  }
}
@media (max-width: 1023px) {
  .news-list .item-wrapper {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .news-list .item-wrapper {
    width: 100%;
  }
}
