.category-posts__container .posts {
    display: grid;
    gap: 1rem;
}

@media (min-width: 1025px) {
    .category-posts__container.default .posts {
        grid-template-columns: 1fr 1fr;
    }

    .category-posts__container.default .posts .index-0 {
        grid-row-start: 1;
        grid-row-end: 6;
    }

    .category-posts__container.default .posts .index-0 .tb-post-item__image {
        height: 380px;
    }

    .category-posts__container.default .posts .index-0 .tb-post-item__title {
        max-height: 54px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .category-posts__container.default .posts .index-0 .tb-post-item__date {
        margin-bottom: 0.3rem;
    }

    .category-posts__container.default .posts .index-0 .tb-post-item__description {
        max-height: 63px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .category-posts__container.default .tb-post-item__category {
        display: none;
    }

    .category-posts__container.default .posts .index-0 .tb-post-item__description {
        display: block;
    }

    .category-posts__container.default .posts > div:not(.index-0) {
        display: grid;
        gap: 1rem;
        grid-template-columns: 120px 1fr;
    }

    .category-posts__container.default .posts > div:not(.index-0) .tb-post-item__image {
        height: 90px;
        margin-bottom: 0;
    }

    .category-posts__container.default .posts > div:not(.index-0) .tb-post-item__title {
        font-size: 1rem;
        max-height: 45px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (min-width: 1025px) {
    .category-posts__container.two_columns .posts {
        grid-template-columns: 1fr 1fr;
    }

    .category-posts__container.two_columns .tb-post-item__image {
        height: 180px;
    }

    .category-posts__container.two_columns .posts .tb-post-item__title {
        font-size: 1.15rem;
    }

    .category-posts__container.three_columns .posts {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .category-posts__container.three_columns .posts .tb-post-item__image {
        height: 150px;
    }

    .category-posts__container.three_columns .posts .tb-post-item__title {
        font-size: 1rem;
    }
}
