
.products {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.products h2 {
    font-size: 4rem;
    letter-spacing: .5rem;
    word-spacing: 1rem;
    text-transform: uppercase;
    text-align: center;
    color: var(--light-color-1);
    background: linear-gradient(-45deg, #bae8cf, #7fe0b2, #AB9BFF, #86c3e7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px transparent;
}


.products article {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 4px;
    background-color: #eaecf40a;
}

.products article h3 {
    margin: 0;
    font-weight: 300;
}

.products article img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: .5rem .5rem 0 0;
}

.products .product-list {
    display: grid;
    grid-template-columns: repeat(3 , minmax(240px, 360px));
    gap: 1rem;
    justify-content: center;
    --icon-size: .8em;
    --gutter: .5em;
    padding: 0;
}


@media screen and (max-width: 768px) {
    .products h2 {
        font-size: 3rem;
        text-align: center;
        margin: 1rem 0;
        letter-spacing: 0;
    }

    .products article {
        padding: 1rem;
    }

    .products .product-list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
}