#category-posts-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: flex-start;
    align-content: center;
    gap: 50px;
    margin-top: 30px;
}

.category-posts-search {
    font-family: "AvantGarde", 'Arial', sans-serif;
    display: flex;
    gap: 20px;
    flex-flow: row wrap;
    max-width: 800px !important;
    margin: 0px auto;

}

.category-posts-search input[type='text'], .category-posts-search select {
    flex: 1 1 auto;
    padding: 10px 30px;
    font-size: 20px;
    font-weight: normal;
    border-width: 1px;
    border-color: #CCCCCC;
    background-color: #ffffff;
    color: #000000;
    border-style: solid;
    border-radius: 40px;
    text-align: center;
    font-family: "AvantGarde", 'Arial', sans-serif;
    line-height: normal;
}
.category-posts-search input[type='submit'] {
    flex: 1 1 auto;
    border: none;
    background: #F08C23;
    padding: 10px 30px;
    border-radius: 100px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 22px;
    display: block;
    text-align: center;
    letter-spacing: 5px;
    bottom: 0px;
    box-sizing: border-box;
    font-family: "AvantGarde", 'Arial', sans-serif;
    cursor: pointer;
}


.category-posts-featured-category-section {
    display: flex;
    flex-flow: row wrap-reverse;
    gap: 50px;
    margin-top: 30px;
}

.featured-article {
    flex: 10 1 700px;
    background: #F4F4F4;
    border-top: 10px solid #7BBB41;
    padding: 50px 20px;
    border-radius: 10px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    display: flex;
    flex-flow: row wrap;
    gap: 20px
}

.featured-article .entry-image {
    flex: 1 1 500px;
    background-size: contain;
    background-repeat: no-repeat;
}

.featured-article .entry-image img {
    max-width: 100%;
}

.featured-article .entry-text {
    flex: 1 1 300px;
}
.featured-article .entry-text .entry-featured-text {
    margin: 0px;
    font-weight: normal;
}

.featured-article .entry-text .entry-title {

}

#category-filter {
    flex: 1 1 150px;
    border-bottom: 2px solid #7BBB41;
    align-self: self-start;
    padding: 0px 10px;
}

#category-filter h2 {
    margin-top: 0px;
}

.categories-list {
    list-style: none;
    padding-left: 0px;
}

.categories-list li {
    line-height: 25px;
}

.categories-list li a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.category-post-item {
    flex: 0 1 320px;
    align-self: stretch;
    position: relative;
    padding-bottom: 10px;
}

.category-post-item .entry-image {
    max-width: 100%;
    height: 180px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #7CBC41;
    border-radius: 10px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.entry-read-more {
    background: #F08C23;
    padding: 10px;
    border-radius: 100px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 22px;
    margin-top: 20px;
    display: block;
    text-align: center;
    letter-spacing: 5px;
    bottom: 0px;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
}

.entry-read-more:hover {
    color: #FFFFFF;
}

.noResultsText {
    width: 100%;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}