/*
 * Подключаются только на страницах, где включено использование.
 * Активируется через USE_TYPOGRAPHY_STYLES в файлах .section.php.
 * 
 * Пример включения в .section.php:
 * $arDirProperties = array(
 *     "USE_TYPOGRAPHY_STYLES" => "Y",
 * );
*/

.content__main h1,
.content__main h2,
.content__main h3,
.content__main h4,
.content__main h5,
.content__main h6 {
    padding-bottom: 0px;
    margin-bottom: 20px;
}

.content__main h1,
.content__main h2,
.content__main h3 {
    margin-top: 30px;
}

.content__main p {
    margin: 20px 0;
}

.content__main ul,
.content__main ol {
    padding-left: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.content__main ul {
    list-style-type: disc;
}

.content__main ol {
    list-style-type: decimal;
}

.content__main ul li,
.content__main ol li {
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
}

.content__main ul li:not(:last-child),
.content__main ol li:not(:last-child) {
    margin-bottom: 5px;
}

@media screen and (max-width: 650px) {

    .content__main ul li,
    .content__main ol li {
        font-size: 16px;
    }
}