.product-main-card {
    display: grid;
    gap: 18px 30px;
    grid-template-columns: 1fr 110px;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
        "title preview"
        "desc preview"
        "more more";
    align-content: normal;
    flex-wrap: wrap;
    flex-direction: row;
    height: 358px;
    /* margin-left: -7px;
    margin-right: -7px; */
    /* min-height: 202px; */
    padding: 15px 15px 20px;
    background-color: #00467e;
    border-radius: 25px;
    box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.16) !important;
    color: #fff;
}

.product-main-card__title {
    grid-area: title;
    margin-block-end: 16px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.product-main-card__preview {
    grid-area: preview;
    margin-block-end: 0 !important;
    max-width: 110px;
}

.product-main-card__preview img {
    height: auto;
    max-width: 100%;
}

.product-main-card__desc {
    grid-area: desc;
    margin-block-end: 44px !important;
    max-height: 80px;
    overflow: hidden;
    /* min-width: 0;
    max-width: 100%; */
    width: 100%;
    font-size: 16px;
}

.product-main-more {
    grid-area: title;
}

.product-main-card__more.elementor-element .elementor-button {
    padding: 4px 14px;
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

@media (min-width: 576px) {
    .product-main-card {
        align-content: space-between;
        flex-direction: column;
        grid-template-columns: 1fr 170px;
        margin-left: 0;
        margin-right: 0;
        padding: 17px 18px 22px;
    }
    
    .product-main-card__preview {
        max-width: none;
    }
    
    .product-main-card__desc {
        margin-block-end: 0 !important;
        max-height: none;
        overflow: visible;
        width: auto;
    }
    
    .product-main-card__more.elementor-element .elementor-button {
    padding: 6px 27px;
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    .product-main-card {
        padding: 25px 30px 30px;
    }
    
    .product-main-card__title {
        margin-block-end: 0 !important;
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        font-size: 24px;
    }
    
    .product-main-card__preview {
        margin-block-start: 4px !important;
    }
}

@media (min-width: 992px) {
    .product-main-card {
        padding: 22px 26px 27px;
    }
    
    .product-main-card__title {
        font-size: 18px;
    }
}

@media (min-width: 1224px) {
    .product-main-card {
        padding: 25px 30px 30px;
    }
    
    .product-main-card__title {
        font-size: 24px;
    }
    
    .product-main-card__preview {
        margin-block-start: 4px !important;
    }
}
