Category grid, 2 columns

First of all, thank you for great theme.

How can i make category grid (2 columns ) like this:
Attachment: 1

Because now on default, category looks like this:

Hi @jakozo,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

@media (min-width: 768px) {
    .article-container{
        overflow: hidden;
    }
    .archive.category article.post {
        width: 50%;
        margin: 0;
        padding-right: 10px;
        display: inline-block;
        float: left;
    }
    .archive.category article.post .read-more, .archive.category article.post .entry-footer{
        display: none;
    }
    .archive.category article.post .post-inner-content{
        border: 0;
        padding: 0 0 30px;
    }

    
    .archive.category article.post:nth-child(2n){
        clear: left;
        padding-right: 25px;
    }
    .archive.category article.post:nth-child(2n+1){
        padding-left: 25px;
        padding-right: 0;
    }
}

Best Regards,
Movin