/* FILTERS */
 .filter-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
}
.filter-wrapper li {
    border-radius: 4px;
    padding: 12px 21px;
    cursor: pointer;
    transition: all .4s ease-in-out;
    border: 1px solid #FFF;
    font-family: 'Syne';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 138%; 
}
.filter-wrapper li:hover {
  border: 1px solid #292B29;
}
.filter-wrapper li.active {
	border: 0px;
  background: #000;
  color: #FFF;
}
.card-wrapper img{
    min-height: 350px;
}
.post-title{
    color: #212529;
    font-family: 'Inter';
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}
#load-more, #show-less {
  border-radius: 6px;
  border: 1px solid #212529;
  background: transparent;
  padding: 7px 13px;
  color: #212529;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  transition: all .4s ease-in-out;
}

#load-more:hover, #show-less:hover {
  background: #212529;
  color: #FFF;
}

.hidden {
  display: none ;
}

@media screen and (max-width: 1100px) {
  .card-wrapper img{
      min-height: unset;
  }
}