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

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


.c-partner-item__link{
    display: flex;
    align-items: center;
    font-size: 12px;
    text-align: center;
    width: 100%;
    justify-content: center;
}

.c-partner-item__link svg{
    width: 10px;
    fill: #8ec82e;
    display: block;
    margin-left: 6px;
}

.c-partner-item__left{
    width: 170px;
    flex-shrink: 0;
}

.c-partner-item{
    display: flex;
    margin-bottom: 50px;
    padding: 20px;
    background: #FFF;
    border-radius: 10px;
    box-shadow: rgba(133, 133, 133, 0.11) 0px 10px 21px 0px;
}

.c-partner-item__content{
    padding-left: 30px;
}

.c-partner-item h2{
    font-size: 1.3em;
    font-weight: 700;
    color: #191E23;
    margin-bottom: 20px;
}

.c-partner-item__text--collapsed{
    max-height: 80px;
    overflow: hidden;
    position: relative;
}

.c-partner-item__text--collapsed:after{
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.c-partner-item__text--open{
    max-height: unset;
}

.c-partner-item__text--open:after{
    display: none;
}

.c-partner-item__text{
    margin-bottom: 30px;
}

.c-partner-item__actions{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


@media (max-width: 767px) {
    .c-partner-item{
        flex-direction: column;
        align-items: center;
    }

    .c-partner-item__left{
        margin-bottom: 20px;
    }

    .c-partner-item__content{
        padding-left: 0;
    }
}