.ymca-filter-header{
    border-bottom: 1px solid #E0E5E6;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.ymca-filters-wrap{
    display: flex;
    gap: 20px;
    align-items: center;
}
.ymca-filters-heading{
    font-family: "CachetPro-Book", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #0089CF;
}
.ymca-filters-btns{
    display: flex;
    gap: 20px;
}
.ymca-filters-btns .ymca-filter-cat-btn{
    font-family: "CachetPro-Book", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 0px;
    height: auto;
    min-height: auto;
    border-radius: 0px;
    border: 0px;
    color: #666666;
    background: transparent;
}
.ymca-filters-btns .ymca-filter-cat-btn.active{
    text-decoration: underline;
}
.ymca-filters-btns .ymca-filter-cat-btn:hover,
.ymca-filters-btns .ymca-filter-cat-btn:focus{
    text-decoration: underline;
    background: transparent;
}
.ymca-filter-header-right{
    display: flex;
    gap: 10px;
}
.ymca-filter-header-right #ymca-search{
    background: #F4F5F6;
    border: 0px;
    outline: none;
    min-width: 300px;
    border-radius: 10px;
    padding: 10px 20px;
    font-family: "CachetPro-Book", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
}
.ymca-filter-header-right #ymca-search-btn{
    background: #266A6C;
    border-radius: 10px;
    color: #fff;
    border: 0px;
    font-family: "CachetPro-Book", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
}
#ymca-articles-list{
    max-width: 1200px;
    margin: auto;
    padding: 50px 15px;
}
.ymca-article{
    padding: 20px;
    background: #fff;
    display: flex;
    gap: 50px;
    margin-bottom: 20px;
    align-items: center;
}
.ymca-article > a{
    min-width: 55%;
    width: 55%;
}
.ymca-article > a img{
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 20px;
}
.ymca-article-content{
    padding: 20px 0px;
}
.ymca-meta{
    display: flex;
    align-items: center;
}
.ymca-meta-cat{
    background: #266A6C;
    color: #fff;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    border-radius: 20px;
    font-family: "CachetPro-Book", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin-right: 20px;
}
.ymca-meta-date{
    font-family: "CachetPro-Book", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #889BA0;
}
.ymca-article-content > h3{
    margin: 30px 0px;
}
.ymca-article-content > h3 a{
    font-family: "CachetPro-Bold", Sans-serif;
    font-weight: 600;
    color: #008CD1;
    text-decoration: none;
    font-size: 25px;
}
.ymca-author-info{
    display: flex;
    margin-top: 40px;
    gap: 12px;
    align-items: center;
}
.ymca-author-info img{
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
}
.ymca-author-info .ymca-author-name{
    font-family: "CachetPro-Book", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #889BA0;
}
.ymca-article-content .ymca-read-link{
    font-family: "CachetPro-Book", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #5A6C71;
    margin-top: 50px;
    text-decoration: none;
    display: inline-block;
}
.ymca-article-content .ymca-read-link:hover,
.ymca-article-content .ymca-read-link:focus{
    text-decoration: underline;
}
.ymca-loader{
    max-width: 1200px;
    margin: auto;
    padding: 30px 15px;
}





@media(max-width: 767px){
    .ymca-filter-header{
        flex-direction: column;
    }
    .ymca-filter-header-right #ymca-search{
        min-width: 230px;
    }
    .ymca-article{
        flex-direction: column;
        gap: 20px;
        padding: 12px;
    }
    .ymca-article > a {
        min-width: 100%;
        width: 100%;
    }
    .ymca-article-content {
        padding: 0px 0px;
    }
    .ymca-article-content > h3 a{
        font-size: 22px;
        line-height: 24px;
    }
    .ymca-author-info{
        margin: 0px;
    }
    .ymca-article-content .ymca-read-link{
        margin-top: 30px;
    }
}