    .post-ccc_favorite {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list-ccc_favorite {
  width: calc(50% - 10px);
  margin-bottom: 0px;
}

.list-ccc_favorite .img-post-thumbnail {
  overflow: hidden;
  position: relative;
}

.list-ccc_favorite .img-post-thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;

  top: 0;
  left: 0;
}

.list-ccc_favorite .title-post {
  margin-top: -6px;
  color: white;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  color: white; 
}
.list-ccc_favorite .title-post a {
  color: white; 
}
#ccc-favorite-count {
  text-align: center; 
}


@media only screen and (max-width: 600px) {
  .list-ccc_favorite {
    width: calc(50% - 10px);
  }
}

@media only screen and (min-width: 600px) {
  .list-ccc_favorite {
    width: calc(33.33% - 13px);
  }
}

