.news__show-more-wrapper {
    display: flex;
    justify-content: center;
    margin: 35px auto 0;
}

.news__show-more {


    padding: 10px 30px;
    border-radius: 6px;
    background: rgba(213, 14, 46, 1);
    font-family: var(--font-roboto), sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--color-white);
    text-align: center;
    transition: background 0.3s ease;
    cursor: pointer;
}

.news__show-more:hover {
    background: #b50c26;
}
.is-hidden {
    display: none
}

