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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* m-screen  */
@media screen and (min-width: 501px) and (max-width: 1023px) {
    .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-categories-subtitle {
        font-size: 1.2rem;
    }

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

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

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

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

/* l-screen  */
@media screen and (min-width: 1024px) {
    .section-categories-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-qty {
        font-size: 1rem;
    }

}