.articles-items {
    display: flex;
}

.articles-item-wrapper:first-child {
    margin-right: 70px;
    max-width: 933px;
}

.articles-item-wrapper:last-child {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.articles-items .articles-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.articles-items .articles-item.first {
    min-height: 100%;
}

.articles-item-wrapper:last-child .articles-item:not(:last-child) {
    margin: 0 0 30px;
}

.articles-items .articles-item .articles-item__image {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #87A5C099;
    border-radius: 10px;
}

.articles-items .articles-item.first .articles-item__image {
    max-width: 100%;
    min-height: 419px;
    flex: 1;
}

.articles-items .articles-item-wrapper:last-child .articles-item__image {
    margin: 0 0 20px;
    height: 169px;
}

.articles-items .articles-item.first .articles-item__preview {
    margin-top: 25px;
}

.articles-items .articles-item .preview-date {
    font-family: var(--solomon);
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-align: left;
    color: var(--lightblue);
}

.articles-items .articles-item .preview-title {
    font-family: var(--solomon);
    font-weight: 600;
    font-size: 24px;
    line-height: 25px;
    text-align: left;
    color: var(--deepblue);
    margin-top: 5px;
}

.articles-items .articles-item.first .preview-date {
    font-size: 20px;
    line-height: 26px;
}

.articles-items .articles-item.first .preview-title {
    font-size: 32px;
    line-height: 35px;
    margin-top: 10px;
}

.articles-wrapper:last-child a.main-button {
    display: none;
}

@media all and (max-width: 1024px) {
    .articles-items {
        flex-direction: column;
    }

    .articles-item-wrapper:first-child {
        margin: 0 0 70px;
        max-width: 100%;
    }

    .articles-items .articles-item.first .articles-item__image {
        min-height: 296px;
    }

    .articles-items .articles-item-wrapper:last-child .articles-item {
        flex-direction: row;
        justify-content: start;
    }

    .articles-items .articles-item-wrapper:last-child .articles-item__image {
        margin: 0 20px 0 0;
        min-width: 169px;
        width: 169px;
        max-height: 134px;
    }


}

@media all and (max-width: 480px) {
    .articles-wrapper .articles-header a.main-button {
        display: none;
    }

    .articles-wrapper:last-child a.main-button {
        display: block;
    }
}


@media all and (max-width: 420px) {
    .articles-items .articles-item-wrapper:last-child .articles-item {
        flex-direction: column;
    }

    .articles-items .articles-item-wrapper:last-child .articles-item .articles-item__image {
        min-width: 100%;
        width: 100%;
        margin: 0 0 20px;
    }
}