.yunce-posts-module .load_more_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
.yunce-posts-module .load_more_box .ajax_load_post {
  border: 1px solid #9e192f !important;
  background: #fff !important;
  color: #281d1f !important;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 230px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2px;
  font-size: 15px;
  cursor: pointer;
}
.yunce-posts-module .load_more_box .ajax_load_post:hover {
  background: #9e192f !important;
  color: #fff !important;
}
.yunce-posts-module .posts-list {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.yunce-posts-module .post-item {
  visibility: hidden;
  width: 24.9%;
  padding: 7px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.yunce-posts-module .post-item.ps_show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  visibility: visible;
}
.yunce-posts-module .post-item .a_box {
  display: block;
  position: relative;
  -webkit-text-fill-color: #fff;
}
.yunce-posts-module .post-item.type_video .video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  width: 43px;
  height: 43px;
  background: url(./img/play.svg) no-repeat center center;
  background-size: cover;
}
.yunce-posts-module .post-item .post-thumbnail {
  position: relative;
  overflow: hidden;
}
.yunce-posts-module .post-item .post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: all var(--image-hover-transition, 0.3s) ease;
  transition: all var(--image-hover-transition, 0.3s) ease;
}
.yunce-posts-module .post-item .item_text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  padding-top: 20px;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(51, 51, 51, 0)), color-stop(20%, rgba(51, 51, 51, 0.3)), color-stop(40%, rgba(51, 51, 51, 0.5)), to(rgba(51, 51, 51, 0.5)));
  background: linear-gradient(180deg, rgba(51, 51, 51, 0), rgba(51, 51, 51, 0.3) 20%, rgba(51, 51, 51, 0.5) 40%, rgba(51, 51, 51, 0.5));
}
.yunce-posts-module .post-item .post_terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}
.yunce-posts-module .post-item .post-title {
  font-size: 18px;
  margin: 0;
}
.yunce-posts-module .post-item .post-excerpt {
  font-size: 14px;
  line-height: 1.6;
}
.yunce-posts-module .posts-loading {
  text-align: center;
  padding: 40px 0;
  color: #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 160px;
  width: 100%;
}
.yunce-posts-module .posts-loading span {
  background: url(./img/loading-buffering.gif) no-repeat center center;
  display: block;
  width: 48px;
  height: 48px;
  background-size: cover;
}
.yunce-posts-module .no-posts {
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.yunce-posts-module .posts-error {
  text-align: center;
  padding: 40px 0;
  color: #ff4444;
}
.yunce-posts-module .categories-list {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.yunce-posts-module .categories-list .category-item {
  display: inline-block;
  padding: 6px;
  text-decoration: none;
  color: #333;
  -webkit-text-fill-color: #333;
  position: relative;
  font-size: 1em;
}
.yunce-posts-module .categories-list .category-item.active:after, .yunce-posts-module .categories-list .category-item:hover:after {
  background-color: #9e192f;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.yunce-posts-module .image-hover-zoom .post-thumbnail img:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.yunce-posts-module .image-hover-slide-up .post-thumbnail img:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}
.yunce-posts-module .image-hover-slide-down .post-thumbnail img:hover {
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
}

@media screen and (max-width: 1024px) {
  .yunce-posts-module .categories-list {
    margin-bottom: 20px;
    gap: 5px;
  }
}