.catalog-product-view .mp-blog-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px 0;
}

.catalog-product-view .mp-blog-related-grid .post-list-item {
    display: flex;
    width: auto !important;
    margin: 0;
    float: none !important;
}

.catalog-product-view .mp-blog-related-grid .post-item-wraper,
.catalog-product-view .mp-blog-related-grid .post-info-wraper {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.catalog-product-view .mp-blog-related-grid .post-item-wraper {
    padding: 0 !important;
    overflow: hidden;
    background: #ffffff;
}

.catalog-product-view .mp-blog-related-grid .post-list-item:hover .post-item-wraper {
    box-shadow: none;
}

.catalog-product-view .mp-blog-related-grid .post-info-wraper {
    padding: 0;
}

.catalog-product-view .mp-blog-related-grid .post-info-wraper > a {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
}

.catalog-product-view .mp-blog-related-grid img.img-responsive {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: none;
    margin: 0;
    object-fit: cover;
    transition: transform .45s ease;
}

.catalog-product-view .mp-blog-related-grid .post-list-item:hover img.img-responsive {
    transform: scale(1.025);
}

.catalog-product-view .mp-blog-related-grid .mp-post-title {
    flex: 1;
    min-height: 117px;
    margin: 0 !important;
    padding: 20px 20px 22px;
    box-sizing: border-box;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;
}

.catalog-product-view .mp-blog-related-grid .post-link-title {
    display: -webkit-box !important;
    max-height: 3.75em;
    overflow: hidden;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

@media (max-width: 599px) {
    .catalog-product-view .mp-blog-related-grid .mp-post-title {
        min-height: 90px;
        padding: 14px 14px 16px;
        font-size: 16px;
        line-height: 1.25;
    }
}

@media (min-width: 600px) {
    .catalog-product-view .mp-blog-related-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
