/* Custom filters */
.custom-posts-filters {
    display: flex;
    align-items: baseline;
    position: relative;
    padding: 15px;
    background-color: #000000;
    margin: 0 10px;
}
.custom-posts-filters .filter-toggle {
    margin: 0;
}
.button-filter {
    background: transparent;
    border: none;
    border-right: 2px solid #fff;
    padding: 0px 10px;
    margin: 0px;
    color: white;
    text-transform: uppercase;
}
@media screen and (max-width: 1000px) {
    .custom-posts-filters {
        flex-direction: column;
        display: none;
    }
    .button-filter {
        margin: 0;
        width: 100%;
    }
    .filter-toggle {
        width: 100%;
        display: block;
    }
    .filter-toggle:after {
        content: '+';
        position: absolute;
        right: 0;
        width: 30px;
        height: 30px;
    }
    .filter-toggle.active:after {
        content: '-';
    }
    /* .custom-post-filters-buttons {
        display: none;
    } */
}
.button-filter.active,
.button-filter:hover {
    font-weight: bold;
}
.custom-posts-content {
    padding-bottom: 150px;
}
.custom-posts-content--card {
    margin-bottom: 20px;
}
.custom-posts-content .card {
    margin: 10px;
    padding: 15px;
    background:white;
    height: 100%;
    margin-bottom: 15px;
}
.custom-posts-content .card h3 {
    font-size: 1.6rem;
  font-family: var(--body-font);
  text-align: center;
  padding: 20px;
  font-weight: 300;
  text-transform: inherit;

}

.custom-posts-content .card .post-feature-image {
    height: 330px;
    margin-bottom: 30px;
    width: 100%;
    background-size: cover;
    background-position: center;
}
/* .post-excerpt {
    min-height: 240px;
} */
.post-meta {
    text-align: center;
  margin-bottom: 0;
  color: var(--main-txt-color);

}

span.link {
    color: black;
    font-weight: 300;
    font-size: 18px;
    text-transform: inherit;
    margin-top: 10px;
}
.post-category {
    background-color: black;
    padding: 5px 15px;
    border-radius: 50px;
    color: white;
    position: absolute;
    top: 10px;
    right: 15px;
}