/* Фронтенд стили */
.custom-indent {
    display: block;
    text-indent: 40px;
    margin-bottom: 1em;
}

.custom-blockquote {
    border-left: 4px solid #0073aa;
    margin: 15px 0;
    padding: 10px 20px;
    background: #f8f8f8;
    font-style: italic;
}

.custom-paragraph {
    margin: 15px 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    line-height: 1.6;
}

/* Выравнивание по ширине */
.text-justify {
    text-align: justify !important;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.entry-content p.text-justify,
.entry-content div.text-justify p {
    text-align: justify;
    text-justify: inter-word;
}

/* Улучшенное выравнивание для разных браузеров */
@supports (text-align: justify) {
    .text-justify {
        text-align: justify;
    }
}

/* Для Firefox */
@-moz-document url-prefix() {
    .text-justify {
        text-align: justify;
        text-align-last: left;
        hyphens: manual;
    }
}

/* Текстовые блоки */
.text-block {
    margin: 20px 0;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid transparent;
}

.text-block-info {
    background: #e8f4f8;
    border-color: #b8d4e3;
}

.text-block-warning {
    background: #fff8e1;
    border-color: #f0d060;
}

.text-block-note {
    background: #f0f0f0;
    border-color: #d0d0d0;
}

.text-block-tip {
    background: #e8f8e8;
    border-color: #c0e0c0;
}

.text-block-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.text-block-content {
    line-height: 1.6;
}

/* Улучшенная типографика */
.entry-content p {
    margin-bottom: 1.5em;
    line-height: 1.6;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.3;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .text-justify {
        hyphens: none;
        -webkit-hyphens: none;
        -ms-hyphens: none;
    }
}

/* Кастомный абзац с отступом и выравниванием */
.custom-indent-paragraph {
    text-indent: 45px;
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 1.5em;
    line-height: 1.6;
}

/* Альтернативный вариант с настраиваемым отступом */
p.text-justify[style*="text-indent"] {
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 1.5em;
}