.section-articles {
    position: relative;
    overflow: hidden
}

.section-articles__head {
    margin-bottom: 20px;
    text-align: center
}

@media (min-width: 1200px) {
    .section-articles__head {
        margin-bottom: 40px;
        text-align: left;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 16px
    }

    .section-articles__head-content {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1
    }

    .section-articles__head-btn {
        padding-left: 23px
    }
}

.section-articles__head-btn-wrapper {
    display: none
}

@media (min-width: 1200px) {
    .section-articles__head-btn-wrapper {
        display: block
    }
}

.section-articles__label {
    color: var(--primary)
}

.section-articles__title {
    color: var(--black)
}

.section-articles__cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 1 ];
    grid-template-columns:repeat(1, 1fr);
    gap: 20px
}

.section-articles__card:nth-child(3n+1) {
    -ms-grid-row-span: 2;
    grid-row: span 2/span 2
}

.section-articles__btn {
    width: 100%;
    max-width: 300px
}

.section-articles__btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px
}

@media (min-width: 1200px) {
    .section-articles__cards {
        -ms-grid-columns: calc(58.7501% - 17px) calc(41.2499% - 17px);
        grid-template-columns:calc(58.7501% - 17px) calc(41.2499% - 17px);
        gap: 34px
    }

    .section-articles__card:nth-child(3n+1) {
        border-radius: 28px;
        padding: 39px;
        min-height: 500px
    }

    .section-articles__card:nth-child(3n+1) .article-card__name {
        font-size: var(--text-size-48);
        line-height: 1.16
    }

    .section-articles__card:nth-child(3n+1) .article-card__date, .section-articles__card:nth-child(3n+1) .article-card__text {
        font-size: var(--text-size-20);
        line-height: var(--lh-sm)
    }

    .section-articles__btn-wrapper {
        display: none
    }
}
