.news, .articles {
    clear: both;
    overflow: hidden;
    -webkit-transition: all .25s linear;
    -moz-transition: all .25s linear;
    transition: all .25s linear;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: flex-start;
}
.n-block {
    width: 23%;
    height: 100%;
    display: flex;
    height: 430px;
    height: auto;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 1%;
}
.single-carousel .n-block {
    width: 100%;
}
.n-block-inner {
    height: 100%;
    border: 1px transparent solid;
    -webkit-transition: all .25s linear;
    -moz-transition: all .25s linear;
    transition: all .25s linear;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}
/* Кликабельная карточка: ссылка заголовка растянута на всю область карточки.
   containing block ::after — .n-block-inner (position: relative), поэтому ссылка static */
.nh-title a {
    position: static;
}
.nh-title a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.n-header {
    padding: 0;
}
.nh-image {
    height: auto;
    max-width: 350px;
    position: relative;
    margin: auto;
    overflow: hidden;
    text-align: center;
}

.n-header img {
    max-width: 100%;
    width: auto;
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: auto;
}
.nh-title {
    font-size: 1.36rem;
    font-size: 16px;
    margin-top:10px;
}
.nh-title a {
    font-weight: 500;
}
.n-content {
    height: 70px;
    margin: 10px 0;
    overflow: hidden;
}
.n-content p {
    font-size: 1rem;
    font-size: 13px;
    font-weight: 300; 
    margin: 0;
    position: relative;
}
.n-content p::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 30px;
    background-color: #fff;
    bottom: 0;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 92%, rgba(255,255,255,1) 99%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 92%,rgba(255,255,255,1) 99%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 92%,rgba(255,255,255,1) 99%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}
.n-meta {
    margin-top: 10px;
    text-align: right;
    padding: 0 10px;
    margin-bottom: 0;
}
.nm-date, .nm-views {
    display: inline-block;
    font-size: 1rem;
    font-size: 13px;
    font-weight: 300;
}
.nm-date {
    margin-bottom: 15px;
    float: left;
}
.nm-date i::before {
    content: '\e904';
    font-family: 'Sportotvet';
    color:#d6d6d6;
    font-weight: normal;
    font-size: 1.28rem;
    font-size: 16px;
    margin-right: 8px;
    position: relative;
    top:2px;
}
.nm-views i::before {
    font-family: 'Sportotvet';
    font-size: 1.28rem;
    font-size: 16px;
    margin-right: 8px;
    color:#00e676;
    position: relative;
    top:2px;
}
.nm-views i::before {
    content: '\e906';
}
@media screen and (max-width:1350px) {
    .nh-title {
        font-size: 14px;
    }
}
@media screen and (max-width:1250px) {
    .n-content p  {
        line-height: 1.5;
    }
}
@media screen and (max-width:991px) and (min-width:601px) {
    .n-block {
        width: 31%;
    }
    .home .n-block:last-child {
        display: none;
    }
}
@media screen and (max-width:600px) and (min-width:426px) {
    .n-block {
        width: 48%;
        height: 380px;
    }
}
@media screen and (max-width:425px) {
    .n-block {
        width: 90%;
        margin: 10px auto;
    }
    .n-content {
        height: auto;
    }
}
@media screen and (max-width:360px) {
    .n-block {
        width: 100%;
    }
}