.related-products__items-wrapper {
        display: grid;
        grid-template-columns: minmax(50%, 1fr) minmax(50%, 1fr);
        gap: 12px;
}

.related-products .product-item-small-card:nth-child(n+5) {
    display: none;
}

.related-products > .related-products__items-wrapper .product-item-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 767px) {
    .related-products__model-preview {
        display: none;
    }

    .related-products__items-wrapper {
        width: 100%;
    }
}


@media (min-width: 768px) {
    .related-products-title {
        max-width: 76%;
        margin-left: auto;
        margin-right: auto;
    }

    .related-products {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 110px;
        max-width: 960px;
        margin-left: auto;
        margin-right: auto;
    }

    .related-products__items-wrapper .product-item-small-card{
        max-width: 212px;
    }

    .related-products__model-preview img {
        position: sticky;
        top: 0;
        max-width: 100%;
        object-fit: contain;
    }
}
