.n-products {
    gap: 24px;
    height: unset;
    display: flex;
    flex-wrap: wrap;
    background-color: unset;
}

.n-products .n-product-item {
    width: 450px;
    text-align: center;
    background-color: #FFF;
    padding: 25px;
    position: relative;
}
.n-product-item a{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.n-products .n-product-item img {
    margin-top: 24px;
    width: 250px;
}

.n-products .n-product-item i {
    display: block;
    font-style: normal;
    margin-top: 12px;
    color: #2A2B2E;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

.n-products .n-product-item p {
    margin-top: 12px;
    overflow: hidden;
    color: #6A6B6D;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.n-products .n-product-item span {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DA0030;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.n-products .n-product-item span::after {
    content: '';
    background-image: url(./link.svg);
    margin-left: 8px;
    background-size: cover;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    transition: transform .16s linear;
}
@media screen and (min-width:1068px) {
    .transparent-commonlink.active::after {
        transform: translateX(6px);
    }
}

@media screen and (max-width:1600px) {
    .n-products .n-product-item {
        width: 384px;
        gap: 24px;
    }
    .n-products {
        gap: 20px;
    }
    .n-products .n-product-item img {
        margin-top: 0;
        width: 215px;
    }
}

@media screen and (max-width:1280px) {
    .n-products .n-product-item {
        width: 344px;
    }
    .n-products .n-product-item img {
        width: 184px;
    }
    .n-products .n-product-item p {
        font-size: 14px;
    }
    .n-products .n-product-item span {
        font-size: 14px;
    }
    .n-products .n-product-item span {
        margin-top: 16px;
        font-size: 14px;
    }
}

@media screen and (max-width:768px) {
    .n-products .n-product-item {
        width: calc(50% - 8px);
    }
    .n-products {
        gap: 16px;
        padding:0px
    }
    .n-products .n-product-item img {
        width: 100px;
    }
    .n-products .n-product-item {
        padding: 12px 12px 24px 12px;
    }
    .n-products .n-product-item i {
        font-size: 12px;
    }
    .n-products .n-product-item p {
        font-size: 12px;
    }
    .n-products .n-product-item span {
        margin-top: 18px;
        font-size: 12px;
    }
    .n-products .n-product-item span::after {
        width: 18px;
        height: 18px;
    }
}