.jdd-news .filter-wrapper {
    background-color: var(--orange);
    color: var(--blue);
    padding: 60px 80px;
}
.jdd-news .filter-wrapper label {
    display: block;
}
.jdd-news .filter-wrapper select.form-control {
    border-radius: 0;
    border: 0;
    height: 56px;
}
.jdd-news .filter-wrapper .nice-select.form-control span.current {
    display: block;
    text-align: center;
    margin-top: -5px;
    font-weight: 700;
}
.jdd-news .filter-wrapper select.form-control:focus {
    outline: none;
    box-shadow: none;
}
.jdd-news .filter-wrapper .reset-filter {
    width: 100%;
    min-width: auto;
}
.jdd-news .filter-wrapper .description {
    margin-bottom: 20px;
}
.jdd-news .article-item {
    display: flex;
    background-color: var(--blue);
    margin-bottom: 30px;
}
.jdd-news .article-item .image-wrap {
    width: 30%
}
.jdd-news .article-item .post-content {
    position: relative;
    color: var(--white);
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 40px;
    padding-right: 40px;
    flex: 1;
}
.jdd-news .article-item .post-content:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 20px;
    border-color: transparent transparent transparent var(--orange);
}
.jdd-news .article-item .post-content .post-title {
    color: var(--orange);
    line-height: 158%;
    font-size: var(--h-small);
    font-weight: bold;
}
.jdd-news .article-item .post-content .post-date {
    line-height: 158%;
    letter-spacing: var(--letter-spacing);
    font-size: 18px;
}
.jdd-news .loading-more {
    display: none;
}

@media(max-width: 991px){
	.jdd-news .filter-wrapper {
		padding: 30px;
	}
	.nice-select{
		margin-bottom: 15px;
	}
	.article-item{
		display: block !important;
	}
	.jdd-news .article-item .image-wrap {
		width: 100%;
		min-height: 165px;
	}
}