body .c-inner-page{
    padding-top: 100px;
}

.c-news-header{
    background-color: #191E22;
    padding: 30px 50px;
    color: #FFF;
    margin-bottom: 50px;
}

.c-news__list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}


.c-news__item{
    display: block;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    overflow: hidden;
    color: #000000;
    box-shadow: 0 0 0 0 rgba(0,0,0,0.1);
    transform: scale(1) translateY(0);
    transition: box-shadow 200ms ease, transform 200ms ease;
    text-decoration: none;
}

.c-news__item:hover{
    text-decoration: none;
    color: #000000;
    box-shadow: 0 10px 20px 0 rgba(0,0,0,0.1);
    transform: scale(1.05) translateY(-10px);
    transition: box-shadow 200ms ease, transform 200ms ease;
}

.c-news__item-inner{
    padding: 10px;
    background: #FFF;
}

.c-news__image{
    aspect-ratio: 736 / 500;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.c-news__image img{
    display: block;
}

.c-news__products{
    font-size: 0.8em;
    font-weight: 600;
    color: #6FBB90;
    margin-bottom: 20px;
}

.c-news__name{
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 1.1px;
    margin-bottom: 20px;
}

.c-news__description{
    font-size: 12px;
    margin-bottom: 20px;
}

.c-news__footer{
    padding-top: 20px;
    border-top: 1px solid #E8E8E8;
}

.c-news__client-caption{
    font-size: 0.8em;
    font-weight: 400;
    color: #B4B4B4;
}

.c-news__client-value{
    color: #383838;
    font-size: 0.8em;
    font-weight: 600;
}

.c-news__footer-row{
    display: flex;
}

.c-news__client{
    width: 100%;
    margin-right: 15px;
}

.c-news__arrow{
    flex-shrink: 0;
    margin-left: auto;
    width: 33px;
    height: 33px;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 1px #000;
    transition: all 200ms ease;
}

.c-news__arrow svg{
    width: 12px;
    transition: all 200ms ease;
}

.c-news__item:hover .c-news__arrow{
    background-color: #000000;
    transition: all 200ms ease;
}

.c-news__item:hover .c-news__arrow svg{
    fill: #ffffff;
    transition: all 200ms ease;
}

.c-news-detail__image{
    aspect-ratio: 1140 / 400;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.c-news-detail__image img{
    display: block;
    width: 100%;
}

.c-news-detail__name h1{
    font-size: 2em;
    font-weight: 600;
    color: #363636;
    margin-bottom: 10px;
}

.c-news-detail__client{
    color: #a3a3a3;
    font-size: 0.8em;
    font-weight: 400;
    margin-bottom: 20px;
}

.c-news-detail__row-item{
    margin-bottom: 60px;
    display: flex;
}

.c-news-detail__block-name{
    width: 45%;
    display: flex;
}

.c-news-detail__count{
    margin-right: 8px;
}

.c-news-detail__block-content{
    width: 55%;
}

.c-news-detail__clone-name{
    font-size: 1.5em;
    font-weight: 600;
    color: #363636;
    margin-bottom: 20px;
}

.c-news-detail__equipment{
    display: flex;
    align-items: flex-end;
    padding-block: 10px;
    border-bottom: 1px solid #E9E9E9;
}

.c-news-detail__equipment--l{
    min-width: 70%;
    font-size: 0.9em;
    font-weight: 500;
    color: #8F8D8D;
    padding-right: 15px;
}

.c-news-detail__equipment--r{
    min-width: 30%;
    text-align: right;
    font-size: 0.9em;
    font-weight: 500;
    color: #363636;
}

.c-news-detail__header{
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.c-news-detail__name{
    width: 100%;
    padding-right: 20px;
}

@media (max-width: 1919px) {
    .c-news__list{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .c-news__list{
        display: block;
        padding-inline: 20px;
    }

    .c-news__list .c-news__item{
        margin-bottom: 30px;
        display: block;
    }
}
