.articles-page {
    padding: 24px 0 80px;
}

.articles-page__title {
    margin: 0 0 20px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    color: #1a1a1a;
}

.articles-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 60px;
}

.articles-cats__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 15px 20px;
    background: #fa5500;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    transition: background-color .15s ease, opacity .15s ease;
}

.articles-cats__item:hover {
    background: #e04c00;
    color: #fff;
    text-decoration: none;
}

.articles-cats__icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    color: #fff;
    flex: 0 0 auto;
}

.articles-cats__icon svg,
.articles-cats__icon img {
    width: 28px;
    height: 28px;
    display: block;
}

.articles-cats__name {
    white-space: nowrap;
}

.articles-block {
    margin-bottom: 40px;
}

.articles-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
}

.articles-block__title {
    margin: 0;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.28;
    text-transform: uppercase;
    color: #232A36;
}

.articles-block__all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fa5500;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.articles-block__all span{
    width: 28px;
    height: 28px;
    background: url("img/arrow.svg") no-repeat center;
}

.articles-block__all:hover {
    color: #e04c00;
    text-decoration: none;
}

@media (max-width: 767px) {
    .articles-page__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .articles-cats {
        flex-direction: column;
        margin-bottom: 28px;
    }

    .articles-cats__item {
        width: 100%;
        justify-content: center;
    }

    .articles-block__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .articles-block__title {
        font-size: 18px;
    }
}
