.section-articles {
    display: flex;
    flex-direction: column;
    width: 100%;

}

.section-articles-header {
    display: flex;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-image: linear-gradient(to right, #397DEB, #84E627);
    border-image-slice: 1;
}

.section-articles-categories {
    background-color: #27272A;
}

.section-articles-titles {
    font-size: 2rem;
    margin: 1rem;
}

.section-articles-stay-tuned {
    background: linear-gradient(to right, #18181B, #27272A)
}

.categories-title {
    color: white;
    font-weight: bold;
}

.category-card-single-link {
    margin: 1rem;
}

.categories-cards {
    display: flex;
}

.category-card-single {
    display: flex;
    flex-direction: row;
}

.category-card-single-name {
    color: white;
    background: linear-gradient(to right, #18181B, #27272A);
    display: flex;
    align-items: center;
    padding-left: 0.2rem;
}

.category-card-single-qty {
    color: white;
    background: #3F3F46;
    border-left-color: #22C55E;
    border-left-style: solid;
    border-left-width: 1px;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-card-single:hover .category-card-single-qty {
    background: linear-gradient(to right, #CAFE03, #28C75D);
    color: black;
}


.stay-tuned-title {
    background: linear-gradient(to right, #B1F60F, #3BCD4F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

.stay-tuned-text {
    color: white;
    margin: 1rem;
}

.section-articles-list {
    background: linear-gradient(to right, #18181B, #27272A);
    display: flex;
    flex-direction: column;
}

.articles-title {
    color: white;
    font-weight: bold;
}

.section-articles-subtitle {
    color: white;
    margin: 1rem;
}

.articles-cards {
    display: flex;
    flex-wrap: wrap;
}

.article-card-single-link {}

.card-single {
    width: 250px;
    margin: 2rem;
}

.card-single-thumbnail {
    margin-bottom: 0;
    background-color: #18181B;
}

.card-single-texts {
    margin-top: 0;
    height: 300px;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(to bottom, #18181B, #26262A);
    justify-content: space-between;
}

.card-single-categories {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-top: 0.3rem;
}

.card-single-category {
    display: flex;
    color: #22BC46;
    background-color: #192A22;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    justify-content: center;
    align-items: center;
    margin: 0.5rem;
}

.card-single-category:hover {
    background-color: #232e29;
}

.card-single-title {
    color: white;
    margin: 1rem;
    font-weight: bold;
}

.card-single-date {
    color: #71716C;
    margin: 1rem;
    justify-content: center;
    align-items: center;
}

/* s-screen  */
@media screen and (max-width: 500px) {
    .section-articles-header {
        flex-direction: column;
    }

    .categories-cards {
        flex-direction: column;
    }

    .category-card-single-name {
        font-size: 1rem;
        width: 230px;
    }

    .category-card-single-qty {
        font-size: 1rem;
        width: 60px;
    }

    .stay-tuned-text {
        font-size: 1.2rem;
    }

    .section-articles-subtitle {
        font-size: 1.2rem;
    }

    .articles-cards{
        justify-content: center;
    }

    .card-single-category {
        font-size: 1rem;
    }

    .card-single-title {
        font-size: 1.2rem;
    }

    .card-single-date {
        font-size: 1rem;
    }
}

/* m-screen  */
@media screen and (min-width: 501px) and (max-width: 1023px) {
    .section-articles-header {
        flex-direction: column;
    }

    .categories-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .category-card-single-name {
        font-size: 1rem;
        width: 230px;
    }

    .category-card-single-qty {
        font-size: 1rem;
        width: 60px;
    }

    .stay-tuned-text {
        font-size: 1.2rem;
    }

    .section-articles-subtitle {
        font-size: 1.2rem;
    }

    .articles-cards{
        justify-content: center;
    }

    .card-single-category {
        font-size: 1rem;
    }

    .card-single-title {
        font-size: 1.2rem;
    }

    .card-single-date {
        font-size: 1rem;
    }
}

/* l-screen  */
@media screen and (min-width: 1024px) {
    .section-articles-header {
        flex-direction: row;
    }

    .section-articles-categories {
        width: 50%;
    }

    .section-articles-titles {
        font-size: 2rem;
    }

    .categories-cards {
        flex-direction: row;
        flex-wrap: wrap;
        margin: 0.5rem;
    }

    .category-card-single-name {
        font-size: 1rem;
        width: 150px;
    }

    .category-card-single {
        margin-left: 20px;
    }

    .category-card-single-qty {
        font-size: 0.8rem;
        width: 40px
    }

    .section-articles-stay-tuned {
        width: 50%;
    }

    .stay-tuned-text {
        font-size: 1rem;
    }

    .card-single-category {
        font-size: 1rem;
    }

    .card-single-category:hover {}

    .card-single-title {
        font-size: 1.2rem;
    }

    .card-single-date {
        font-size: 1rem;
    }

}