/* Quill content typography — loaded after quill.snow.css */

/* Base */
.ql-editor {
    line-height: 1.85;
    font-size: 1rem;
    color: rgb(248, 249, 250);
    word-break: keep-all;
    white-space: collapse;
}

/* Paragraph spacing */
.ql-editor p {
    line-height: 1.85;
    margin-bottom: 0.85em;
}

/* Collapse Quill empty lines (<p><br></p>) */
.ql-editor p:has(> br:only-child) {
    line-height: 0.5;
    margin-bottom: 0.2em;
}

/* Heading hierarchy */
.ql-snow .ql-editor h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 2em;
    margin-bottom: 0.6em;
    letter-spacing: -0.02em;
}

.ql-snow .ql-editor h2 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1.8em;
    margin-bottom: 0.5em;
    letter-spacing: -0.015em;
}

.ql-snow .ql-editor h3 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 1.6em;
    margin-bottom: 0.4em;
}

.ql-snow .ql-editor h4 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1.4em;
    margin-bottom: 0.4em;
}

.ql-snow .ql-editor h5 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    margin-top: 1.2em;
    margin-bottom: 0.35em;
}

.ql-snow .ql-editor h6 {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 1.2em;
    margin-bottom: 0.3em;
}

/* Blockquote — dark theme */
.ql-snow .ql-editor blockquote {
    border-left: 3px solid #555;
    padding: 0.5em 1em;
    margin: 1.2em 0;
    color: #aaa;
    font-style: italic;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 0 6px 6px 0;
}

/* Lists */
.ql-editor ol,
.ql-editor ul {
    margin-bottom: 0.85em;
}

.ql-editor li {
    line-height: 1.85;
    margin-bottom: 0.25em;
}

/* Inline */
.ql-editor strong {
    font-weight: 700;
}

.ql-editor em {
    font-style: italic;
}

/* Links */
.ql-snow .ql-editor a {
    color: #60a5fa;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ql-snow .ql-editor a:hover {
    color: #93c5fd;
}

/* Code inline */
.ql-snow .ql-editor code {
    background-color: #2a2a2a;
    border-radius: 4px;
    padding: 0.1em 0.4em;
    font-size: 0.9em;
    color: #e2e8f0;
}

/* Code block */
.ql-snow .ql-editor pre.ql-syntax,
.ql-editor .ql-code-block-container {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 16px;
    margin: 1.2em 0;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.6;
    border: 1px solid #333;
}

/* Image spacing in content */
.ql-editor img {
    border-radius: 8px;
    margin: 0.5em 0;
}
