.articlepage{
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    transform: translateY(-7rem);
}
.article__head{
    width: 100%;
    max-width: 1000px;
    background-color: white;
    padding: 2rem 8rem;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0,0,0,.2);
    position: relative;
    min-height: 300px;
    margin: 0 1rem 5rem 1rem;
}
.article__head .back{
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
}
.article__head .back a{
    color: black;
    text-decoration: none;
}
.article__head h1{
    width: 100%;
    text-align: center;
    color: var(--red);
    font-size: 2rem;
    font-weight: 400;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--hrgrey);
    margin-bottom: 1rem;
    font-weight: 600;
}
.article__head .meta{
    width: 100%;
    color: var(--textgrey);
    font-size: .9rem;
    margin-bottom: 2rem;
}
.article__container{
    width: 100%;
    max-width: calc(760px + 2rem);
    padding: 0 1rem;
}
.article__heading{
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.article__paragraph{
}
.article__paragraph>p{
    margin-bottom: 1rem;
}
.article__paragraph[followup]{
    margin-bottom: 1.5rem;
}
.article__img{
    width: 100%;
    padding-bottom: 56.256%;
    background-color: gray;
    border-radius: 5px;
    margin-bottom: 3rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.articlepage .contact{
    margin-bottom: 3rem;
}
.article__keywords{
    width: 100%;
    max-width: 1000px;
    padding: 2rem;
    border-radius: 5px;
    background-color: var(--lightgrey);
    display: flex;
    flex-wrap: wrap;
}
.dictionaryBox[lessbottom]{
    margin-bottom: 3rem;
}
.articles__title[lessbottom]{
    margin-bottom: 0;
}
@media screen and (max-width: 756px) {
    .article__head{
        padding: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .article__head .back{
        left: 1rem;
        top: 1rem;
    }
    .article__head h1{
        margin-top: 1rem;
    }
    .articlepage .dictionaryBox{
        margin: 0 1rem 3rem 1rem;
    }
}

.text-center{
    text-align: center;
}

.mt-1rem{
    margin-top: 1rem;
}