.articles {
    padding: 10px;
}

.articles-title {
    font-size: 40px;
    font-weight: 600;
}

.article-items {
    gap: 14px;
}

.articles-empty {
    border-radius: 10px;
    padding: 24px;
    background: #FCF8E3;
    color: #C09853;
    width: 100%;
}

.article-item-border {
    padding-top: 17px;
    border-top: 1px solid rgba(136, 136, 136, .3);
}

.article-item-border:first-child {
    border: none;
    padding-top: 0;
}

.article-item {
    border-radius: 10px;
    width: 100%;
    height: 200px;
    background: var(--light-grey-color);
    color: var(--dark-color);
    display: flex;
}

.article-item img {
    width: 300px;
    height: 100%;
    object-fit: fill;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.article-item-info {
    padding: 34px;
}

.article-item-info-t-title {
    font-weight: 500;
    color: var(--dark-color);
}

.text-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 2.8em;
}

@media (max-width: 640px){
    .articles {
        gap: 20px;
    }

    .articles h2 {
        font-size: 20px;
    }

    .articles-categories-content {
        gap: 12px;
        flex-direction: column;
    }

    .article-item-info {
        padding: 17px;
    }

    .article-item {
        flex-direction: column;
        height: fit-content;
    }

    .article-item img {
        width: calc(100vw - 10px * 2);
        height: 60vw;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
    }

    .article-item .button-green {
        width: 100%;
    }

}
