.Main--all_news{
    display: grid;
    justify-content: center;
    align-content: center;
    background-color: var(--site-background-color-content);
    padding-top: 20px;
}
.Main--all_news-link{
    width: 200px;
    line-height: 30px;
    background-color: var(--site-color-gray);
    border-radius: 10px;
    margin: 0 auto;
    display: block;
    text-decoration: none;
    color: var(--site-color-corporate);
    background-image: url("./signal.svg");
    background-position: calc(100% - 11px) 50%;
    background-repeat: no-repeat;
    background-size: 10px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    transform: translateY(10px);
}
.Main--all_news-link:focus,
.Main--all_news-link:hover{
    background-color: var(--site-color-hidden);
}
@media (min-width: 1240px){
    .Main--all_news{
        display: none;
    }
}
/* Заголовок главной для поиска и скринридеров: в потоке страницы его нет,
   поэтому вёрстка не сдвигается ни на пиксель. Не display:none и не
   visibility:hidden — те выкидывают текст и из озвучки скринридером,
   и из того, что видит поисковик. */
.Main--seo_title{
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}
