.hrix-posts {
    display: flex;
    flex-wrap: wrap;
}

.hrix-posts.column-1 article {
    width: 100%;
    margin-bottom: 20px;
}

.hrix-posts.column-2 article {
    width: 50%;
    margin-bottom: 20px;
}

.hrix-posts.column-2 article:nth-child(2n+1) {
    padding-right: 10px;
}

.hrix-posts.column-2 article:nth-child(2n+2) {
    padding-right: 0;
    padding-left: 10px;
}

.hrix-posts.column-3 article {
    width: 33.333333%;
    margin-bottom: 20px;
    padding-left: 5px;
    padding-right: 5px;
}

.hrix-posts.column-3 article:nth-child(2n+1) {
    padding-right: 10px;
    padding-left: 0;
}

.hrix-posts.column-3 article:nth-child(2n+3) {
    padding-right: 0;
    padding-left: 10px;
}

.hrix-posts.column-4 article {
    width: 25%;
    margin-bottom: 20px;
}

.hrix-posts.column-4 article:nth-child(2n+1) {
    padding-right: 10px;
}

.hrix-posts.column-4 article:nth-child(2n+2),
.hrix-posts.column-4 article:nth-child(2n+3) {
    padding-right: 5px;
    padding-left: 5px;
}

.hrix-posts.column-4 article:nth-child(2n+4) {
    padding-right: 0;
    padding-left: 10px;
}

.hrix-posts article .post-thumbnail a {
    display: block;
    max-width: 100%;
}

.hrix-posts article .post-thumbnail img {
    display: block;
    transition: 2s;
    -webkit-transition: 2s;
    -moz-transition: 2s;
    -o-transition: 2s;
    transform: scale(1.01);
    -webkit-transform: scale(1.01);
    -moz-transform: scale(1.01);
    -o-transform: scale(1.01);
    height: auto;
}

.hrix-posts article:hover .post-thumbnail img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.hrix-posts article .entry-body {
    border-bottom: 1px solid #aaa;
}

.hrix-posts article .entry-categories a {
    display: inline-block;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 700;
}

.hrix-posts article .entry-categories a:not(:last-child)::after {
    content: "/";
    padding: 0 10px;
    font-weight: 400;
}

.hrix-posts article .entry-title {
    margin-top: 0;
}

.hrix-posts article .entry-title a {
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 700;
}

.hrix-posts article .entry-content {
    font-size: 13px;
}

.hrix-posts article .entry-content p {
    margin: 0;
    line-height: 23px;
}

.hrix-posts article .entry-read-more {
    border-bottom: 1px solid #aaa;
}

.hrix-posts article .entry-read-more a {
    text-decoration: none;
    text-transform: capitalize;
    font-size: 15px;
    letter-spacing: 1px;
    background: transparent;
    padding: 0;
    border: none;
}

.hrix-posts article .entry-author img {
    border-radius: 100%;
    -webkit-border-radius: 100%;
}

.hrix-posts article .entry-author .author-name a {
    text-decoration: none;
    font-weight: 700;
    text-transform: capitalize;
}

@media (max-width:991px){
    .hrix-posts{
        gap: 10px;
    }
    .hrix-posts.column-2 article,
    .hrix-posts.column-3 article,
    .hrix-posts.column-4 article {
        width: 48.7%;
        padding: 0;
    }
}

@media (max-width:767px){
    .hrix-posts{
        gap: 10;
    }
    .hrix-posts.column-2 article,
    .hrix-posts.column-3 article,
    .hrix-posts.column-4 article,
    .hrix-posts.column-3 article:nth-child(2n+1),
    .hrix-posts.column-3 article:nth-child(2n+3) {
        width: 100%;
        padding: 0;
    }

    
}