.article-header {margin-top:100px;}

.cat-editorial__showall {
    display: inline-block;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #CE0212 !important;              /* фирменный красный — замени на свою переменную/токен */
    text-decoration: none;
    line-height: 1;
}

.cat-editorial__showall:hover,
.cat-editorial__showall:focus {
    text-decoration: underline;
}

.article-hero {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
}

/* Заголовок — тонкий, капсом, крупный */
.article-hero__title {
    margin: 0 0 28px;
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-family: "Work Sans", serif;
    font-weight: 300;
    color: #000;
}

/* Лид-абзац (excerpt) */
.article-hero__excerpt {
    margin: 32px 0;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #000;
        font-family: "Work Sans", serif;
    font-weight: 400;
}
.article-hero__excerpt p { margin: 0; }

/* Основной текст */
.article-hero__content {
    font-size: 14px;
    line-height: 1.75;
    color: #000;
            font-family: "Work Sans", serif;
    font-weight: 400;
}
.article-hero__content p { margin: 0 0 1em; }

/* Изображение справа + копирайт */
.article-hero__figure { margin: 0; }
.article-hero__figure img {
    display: block;
    width: 100%;
    height: auto;
}
.article-hero__credit {
margin-top: 5px;
    font-size: 12px;
    color: #888;
    text-align: left;
}

/* Мобильная версия — в одну колонку */
@media (max-width: 768px) {
    .article-hero {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.article-hero-section {
    max-width: 1240px;
    margin: 0 auto;          /* центрирует контейнер */
    padding: 0 20px;         /* поля по бокам, чтобы на узких экранах не липло к краям */
    box-sizing: border-box;  /* чтобы padding не раздувал ширину сверх 1240px */
}
