.products {
    margin-top: 2rem;
}

.products_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product {
    min-height: 30.5rem;
    background: var(--color-bgl);
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
}

.product_card_link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.needle {
    background: var(--color-bgl);
    max-width: fit-content;
    padding: 1.6rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.needle:hover {
    background: var(--color-bg2);
    box-shadow: 0 3rem 3rem rgba(0, 0, 0, 0.3);
}

.needle_image img {
    border-radius: 0.5rem;
    filter: saturate(0);
}

.product:hover {
    background: transparent;
    border-color: var(--color-primary);
}

.product_info {
    padding: 3rem 0;
}

.product_info p {
    margin: 1.2rem 2rem;
    font-size: 0.9rem;
}

@media screen and (max-width:1024px) {
    .products {
        margin-top: 0;
    }
    .products_container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width:600px) {
    .products_container {
        grid-template-columns: 1fr;
    }
    .product {
        min-height: auto;
    }
    .needle {
        max-width: 100%;
        margin: auto;
    }
}