@charset "UTF-8";

/* Grid */
.body {
    padding: 0 0 90px 0 !important;
}

.home-route-cards__container {
    margin-bottom: 60px;
}

.home-route-cards__grid {
    background-color: #f2f2f2;
    background-image: url('../i/b_block_uzor1.png'),
        url('../i/b_block_uzor2.png');
    background-repeat: no-repeat, no-repeat;
    background-position: 0% 0%, 100% 100%;
}

.news-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    /* margin: 120px 0;*/
    margin: auto;
    padding-top: 120px;
}

@media (min-width: 1200px) {
    .news-grid {
        width: 1170px;
    }
}

.news-grid-item {
    width: 360px;
    background-color: #eee;
    border-radius: 50px 0px 50px 0px;
    margin: 0px 20px 20px 0px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    transition: box-shadow 0.3s ease-out;
}

.news-grid-item:hover {
    box-shadow: 2px 8px 32px -6px rgb(0 0 0/ 68%);
    -webkit-box-shadow: 2px 8px 32px -6px rgb(0 0 0/ 68%);
    -moz-box-shadow: 2px 8px 32px -6px rgba(0, 0, 0, 0.68);
    transition: box-shadow 0.3s ease-out;
}

.news-grid-item a {
    text-decoration: none;
}

.news-grid-item__image {
    background-color: #fff;
    width: 360px;
    height: 310px;
    position: relative;
    border-radius: 50px 0px 0px 0px;
}

.news-grid-item__image figure {
    position: relative;
}

.news-grid-item__image img {
    width: 360px;
    height: 310px;
    margin: 0;
    border-radius: 50px 0px 0px 0px;
}

.news-grid-item__date {
    width: 126px;
    height: 34px;
    background-color: #eee;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0px 0px 0px 20px;
    display: flex;
    justify-content: center;
}

.news-grid-item__date p {
    color: #00469d;
    font-family: 'GothamLight', sans-serif;
    font-size: 14px;
    align-self: center;
    margin: 0;
}

.news-grid-item__text {
    padding: 20px;
    position: relative;
}

.news-grid-item__title {
    color: #00469d;
    font-family: 'GothamMedium', sans-serif;
    font-size: 24px;
    line-height: 26px;
}

.news-grid-item__title a {
    color: #00469d;
    font-family: 'GothamMedium', sans-serif;
    font-size: 24px;
    line-height: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-grid-item__intro {
    padding-top: 8px;
    color: #333;
    font-family: 'GothamLight', sans-serif;
    font-size: 14px;
    line-height: 19px;
}