.book-layout {
    text-align: justify;          /* выравнивание по ширине */
    text-justify: inter-word;     /* равномерные пробелы, как в книгах */
    hyphens: auto;                /* переносы с дефисами по слогам */
    -webkit-hyphens: auto;        /* Safari/Chrome */
    -moz-hyphens: auto;           /* Firefox */
    word-break: normal;           /* не ломаем слова без дефиса */
    overflow-wrap: break-word;    /* подстраховка для длинных слов */
}

/* Книжная типографика с красной строкой — для ВСЕХ абзацев */
.book-layout-indent p,
.book-layout-indent {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
    text-indent: 30px; /* базовый отступ */
}

/* Адаптивные значения красной строки — меняй при желании */
@media (max-width: 960px) {
    .book-layout-indent p,
    .book-layout-indent {
        text-indent: 20px;
    }
}
@media (max-width: 640px) {
    .book-layout-indent p,
    .book-layout-indent {
        text-indent: 16px;
    }
}
