.sr-posts-feed{
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 35px;
}

.sr-posts-feed article{
    width: calc(33.3333% - 20px);
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
    padding: 20px 30px;
    transition: all .25s;

}

.sr-posts-feed article:hover{
    -webkit-box-shadow: 0 0 30px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 15%);
}

.sr-posts-feed article a{
    text-decoration: none;
}
.sr-posts-feed article h2{
    font-size: 21px;
    color: #7e622e;
    font-weight: 400;
    line-height: 1.2em;
    margin: 0 0 25px 0;

}
.sr-posts-feed article p{
    margin: 0;
    line-height: 1.5em;
    font-size: 14px;
    margin: 0 0 25px 0;
    color: #777;
}

.sr-posts-feed article a.more{
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    color: #7e622e;
}

.sr-posts-feed article h2:hover,
.sr-posts-feed article a:hover{
    color: #d9b872;
}


@media (max-width: 1030px) {
	.sr-posts-feed article{
        width: calc(50% - 20px);
    }
}


@media (max-width: 767px) {
  
	.sr-posts-feed article{
        width: 100%;
    }
}