div#dpf-results {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.dpf-filter{
display:flex;
gap:20px;
margin-bottom:30px;
}

.dpf-filter select,
.dpf-filter input{
padding:12px;
border:1px solid #ddd;
border-radius:6px;
}   
.dpf-post {
    margin-bottom: 30px;
   /* border: 1px solid #eee;*/
    border-radius: 8px;
    max-width: 31.33%;
    width: 100%;
}
.dpf-post-content {
    box-sizing: border-box;
    border: 1px solid #e5e7eb;
    padding: 30px 20px;
    transition: 1.3s;
}
.dpf-post-content:hover {
    box-shadow: 3px 5px 20px 0px rgb(0 0 0 / 11%);
}
.dpf-post-content:hover a.dpf-btn {
    background: #C68E02;
    color: #fff;
}
.dpf-post-image {
    min-height: 250px;
    max-height: 250px;
    object-fit: cover;
    box-sizing: border-box;
}
.dpf-post-image img.dpf-featured-image {
    height: 250px;
    overflow: hidden;
    object-fit: cover;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}
.dpf-post h3 {
    margin: 0;
    padding: 0;
    color: #002A39;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Open Sans';
    line-height: 1.5em;
    min-height: 90px;
    max-height: 90px;
    overflow: hidden;
}

.dpf-post a{
text-decoration:none;
}
p.dpf-date {
    font-size: 14px;
    margin-bottom: 30px;
    margin-top: 20px;
}
a.dpf-btn {
    color: #C68E02;
    font-size: 15px;
    border: 1px solid #C68E02;
    padding: 7px 30px;
    transition: 1.3s;
    box-sizing: border-box;
    clear: both;
}
   
@media (max-width: 767px) {
    .dpf-filter {    flex-direction: column;}
    .dpf-post { max-width: 100%;}
}