.our-products__heading {
    mark {
        background: var(--wp--preset--gradient--red-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.our-products__grid {
    max-width: 1310px !important;
    gap: 32px;
}

.our-products__card {
    text-decoration: none;
    transition: all .4s ease-in-out;
    transform-origin: center;

    &:hover {
        transform: scale(1.02);
    }
    & > div {
        height: 100%;

        & > div {
            width: 100%;
        }
    }

    img {
        width: 10vw;
        height: auto;
    }

        
    .wp-block-button__link {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
}


@media only screen and (max-width: 1100px) {
    .our-products {
        .container {
            padding-left: 64px !important;
            padding-right: 64px !important;
        
            .our-products__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;

                .our-products__card {
                    img {
                        width: 120px;
                    }
                }
            }
        }
    }
}

@media only screen and (max-width: 576px) {
    .our-products {
        .container {
            padding-left: 24px !important;
            padding-right: 24px !important;
        
            .our-products__grid {
                grid-template-columns: repeat(1, 1fr);
                gap: 16px;
            }
        }
    }
}