#newslist{
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-top: 50px;
}
.news-filter ul{
    margin:0;
    padding:0;
    list-style-type: none;
    display:none;
}
.news-filter .filter-item.active ul{
    display:block;
    margin-top: 10px;
}
.news-filter ul li{
    margin-bottom: 10px;
}
.news-filter h2{
    margin: 0;
    font-size: 24px;
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
}
.news-filter h2 a{
    position: absolute;
    right:0;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.news-filter{
    padding: 30px;
    border: 2px solid #333333;
    width: 25%;
}
.news-cont{
    width: 75%;
}
.filter-item{
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.filter-item a{
    font-weight:bold;
    display: block;
    position: relative;
}
.filter-item a::after{
    content:"+";
    font-size:24px;
    position: absolute;
    right: 0;
}
.news-filter .filter-item.active a::after{
    content:"-";
}
.filter-attorney ul,
.filter-pa ul{
    height: 150px;
    overflow-y: scroll;
}
.news-content{
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
}
.news-content .post-item{
    width: 31%;
    display:none;
}
.news-content .post-item.news-show,
.filter-active .news-content .post-item{
    display:block;
}
a.post-item {
    width: 31%;
    padding: 20px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    padding-bottom: 70px;
    position: relative;
    transition: all .3s ease-in-out;
}
a.post-item:hover{
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
a.post-item:hover .post-item-title{
    color: #398ffc;
}
a.post-item .post-item-readmore{
    position: absolute;
    bottom:20px;
    left:20px;
}
.post-item-title {
    font-size: 19px;
    text-transform: uppercase;
    margin-top: 30px;
    color: #333333;
    font-family: 'dashicons';
    font-weight: bold;
    line-height: normal;
}
a.loadmore{
    border-color: #5bc0de;
    background-color: #5bc0de;
    transition: all 0.3s ease;
    font-style: normal;
    font-weight: 900;
    font-size: 11px;
    line-height: 1;
    font-family: Roboto, sans-serif;
    letter-spacing: 1px;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    display: block;
    width: 150px;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
}
a.loadmore:hover{
    background:#000;
}
.filter-active a.loadmore{
    display:none;
    color:#fff;
}

@media only screen and (max-width: 1100px){	
	.post-item-title{
		font-size:16px;
	}
}

@media only screen and (max-width: 580px){
    #newslist{
        flex-direction: column;
    }
    .news-content .post-item,
    .news-cont,
    .news-filter{
        width:100%;
    }
}