.articleBlock {
    display: flow-root;
    width: 100%;
    padding: 0px 20px 10px;
    font-size: 12px;
    font-weight: 400;
    color: var(--body-text-main);
}

.articleBlock a {
    color: var(--body-text-link);
}

.articleBlock a:hover {
    color: var(--body-text-hover);
}

h1 {
	font-size: 32px;
}

h2 {
	font-size: 28px
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 12px;
}

.articleBlock>*:not(img) {
    margin-bottom: 10px;
}
.articleBlock>*:last-child {
    margin-bottom: 0;
}

.articleBlock p:first-of-type {
    font-weight: 700;
}

.articleBlock img {
   /* max-width: 382px;
    width: 100%;*/
    border-radius: 10px;
   /* margin-bottom: 10px;*/
}

.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

.aligncenter {
    clear: both;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}


.container:after {
    content: "";
    display: table;
    clear: both;
}

.articleBlock h1 {
color: var(--body-text-h1);
}
.articleBlock h2,
.articleBlock h3,
.articleBlock h4,
.articleBlock h5,
.articleBlock h6 {
    /* font-size: 20px; */
    font-weight: 700;
    color: var(--body-text-title);
    text-transform: capitalize;
}

.articleBlock ul,
.articleBlock ol {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 5px;
    list-style: inside;
}

@media (max-width: 768px) {
    .articleBlock {
        display: flex;
        flex-direction: column;
    }
    
    .articleBlock img {
        max-width: 100%;
        height: 300px;/*todo: maybe need remove*/
    }

    .alignleft,
    .alignright {
        float: none;
        margin-right: auto;
        margin-left: auto;
        display: block;
    }

}

@media (max-width: 767px) {
    .alignleft,
    .alignright {
        float: none;
        margin-right: auto;
        margin-left: auto;
        display: block;
    }
}

@container mainContent (min-width: 910px) {
    .articleBlock {
        font-size: 19px;
    }
}