.Articles .Nav {
    margin-bottom: 25px
}

@media (max-width: 500px) {
    .Articles .Nav {
        display: grid;
        grid-template-columns:1fr 1fr;
        justify-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 10px
    }
}

@media (max-width: 768px) {
    .Articles .Nav-Item {
        margin-right: 10px
    }
}

@media (max-width: 500px) {
    .Articles .Nav-Item {
        margin-bottom: 5px
    }
}

.Articles-Title {
    margin-top: 5px;
    margin-bottom: 40px
}

@media (max-width: 768px) {
    .Articles-Title {
        margin-top: 25px
    }
}

.Articles-Content {
    height: 100%;
    padding: 10px 7px 50px 0;
    border-right: 1px solid var(--color-layout-primary)
}

@media (max-width: 768px) {
    .Articles-Content {
        padding-top: 0;
        padding-right: 0;
        border-right: none
    }
}

.Articles-Content--noborder {
    border: none
}

.Articles-ArticlePreview {
    margin-bottom: 20px
}

.Articles-Button {
    text-align: center
}