.gr-mnews {
	margin: 108px 0 0;
}

.gr-mnews .gr-header__title {
    margin: 0 0 40px 0;
}

.gr-mnews__list {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.gr-mnews__item {
    width: 33.33%;
    position: relative;
    padding: 10px;
}

.gr-mnews__item-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    /*height: 100%;*/
    text-decoration: none;
    padding: 24px;
    border: 1px solid #e2e2e2;
    border-radius: 16px;
}

.gr-mnews__item-card:hover {
    color: inherit;
}

.gr-mnews__item-img {
    position: relative;
    width: 100%;
    height: 220px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.gr-mnews__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.gr-mnews__item-img.no_img {
    background-color: #F9F9F9;
    background-position: center;
    background-repeat: no-repeat;
}

.gr-mnews__item-info {
    font-size: 14px;
}

.gr-mnews__item-date {
    display: block;
    font-size: 13px;
    margin: 16px 0 0;
}

.gr-mnews__item-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-width: 100%;
    min-height: 44px;
    text-overflow: ellipsis;
    color: var(--black-color);
    font-size: 18px;
    font-weight: 700;
    margin: 24px 0 0;
    line-height: 1.2;
}

.gr-mnews__item-descr {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    max-width: 100%;
    min-height: 84px;
    text-overflow: ellipsis;
    margin: 24px 0 0;
    line-height: 1.3;
    color: var(--gray-color);
    font-size: 16px;
}

.gr-mnews__item-link {
    display: inline-block;
    font-size: 14px;
    color: var(--blue-color);
    border-bottom: 1px dashed;
    margin: 32px 0 0;
    cursor: pointer;
}

@media only screen and (max-width: 1024px) {

    .gr-mnews {
        margin: 48px 0 0;
    }

    .gr-mnews .container {
        padding-left: 15px;
        padding-right: 0;
        width: auto !important;
        overflow-x: hidden;
    }

    .gr-mnews__list {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin: 16px 0 0 -10px;
    }

    .gr-mnews__item {
        width: 280px;
        min-width: 280px;
        padding: 8px;
    }

    .gr-mnews__item-card {
        padding: 16px;
    }

    .gr-mnews__item-link {
        display: none;
    }

    .gr-mnews__list::-webkit-scrollbar {
        display: none;
    }

}