.article__row {
    --bs-gutter-y: 3rem;
}

.articles__header {
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: unset;
    gap: 3rem;
}

.articles__title {
    margin-inline-end: auto;
}

.articles__form {
    display: flex;
    gap: 1.5rem;
}

.articles__content {
    padding-top: 4rem;
}

.article__share {
    padding-top: 2rem;
}

.articles__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.articles__sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.articles__sort-label {
    font-weight: 700;
    font-size: 1.8rem;
}

@media screen and (max-width: 1024.9px) {
    .articles__content {
        padding-top: 0;
    }

    .articles__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 575.9px) {
    .articles__sort {
        width: 100%;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .articles__form {
        width: 100%;
        flex-wrap: wrap;
    }

    .articles__list {
        grid-template-columns: repeat(1, 1fr);
    }
}