/* Скруглённая заливка текста Quill — просмотр на маркете и в редакторах */
.quill-content span[style*="background-color"],
.quill-content span[style*="background:"],
.quill-content span[class*="ql-bg-"],
.quill-content .quill-highlight-rounded,
.ql-editor span[style*="background-color"],
.ql-editor span[style*="background:"],
.ql-editor span[class*="ql-bg-"],
.ql-editor .quill-highlight-rounded,
span.quill-highlight-rounded {
    border-radius: 8px !important;
    padding: 2px 6px !important;
    margin: 0 1px !important;
    box-decoration-break: clone !important;
    -webkit-box-decoration-break: clone !important;
}

/* Кастомные HTML-карточки (вложенные div с рамками/шрифтами) — не ломаем layout */
.ql-editor .ql-html-card {
    display: block;
    margin: 0.35em 0;
}

.ql-editor .ql-html-card-inner,
.quill-content div[style],
.ql-editor div[style] {
    max-width: 100%;
    box-sizing: border-box;
}

.quill-content div[style*="border"],
.ql-editor .ql-html-card-inner div[style*="border"] {
    overflow: visible;
}

/* Не перекрашиваем strong/b — цвет задаётся автором через style */
.quill-content strong[style*="color"],
.quill-content b[style*="color"] {
    color: inherit;
}
