/* Панель інструментів редактора */
.editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    padding: 6px;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-bottom: none;
    border-radius: 0.75rem 0.75rem 0 0;
}

.editor-toolbar button {
    min-width: 32px;
    height: 30px;
    padding: 0 8px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.editor-toolbar button:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

#blog-content-editor {
    min-height: 320px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0 0 0.75rem 0.75rem;
    padding: 16px;
    overflow-y: auto;
    line-height: 1.6;
    font-size: 15px;
}

#blog-content-editor:focus {
    outline: none;
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

#blog-content-editor:empty::before {
    content: attr(data-placeholder);
    color: #9ca3af;
    pointer-events: none;
}

/* Типографіка опублікованого контенту (публічна частина) */
.blog-content,
#blog-content-editor {
    font-size: 1rem;
    color: #1f2937;
}

.blog-content h2,
#blog-content-editor h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5em 0 0.6em;
    line-height: 1.3;
}

.blog-content h3,
#blog-content-editor h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1.3em 0 0.5em;
    line-height: 1.3;
}

.blog-content p,
#blog-content-editor p {
    margin: 0 0 1em;
}

.blog-content ul,
.blog-content ol,
#blog-content-editor ul,
#blog-content-editor ol {
    margin: 0 0 1em 1.4em;
    list-style: revert;
}

.blog-content blockquote,
#blog-content-editor blockquote {
    margin: 1em 0;
    padding: 0.6em 1em;
    border-left: 4px solid #d97706;
    background: #fffbeb;
    color: #78350f;
    font-style: italic;
}

.blog-content a,
#blog-content-editor a {
    color: #d97706;
    text-decoration: underline;
}

.blog-content img,
#blog-content-editor img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 1em 0;
}

.blog-content pre,
.blog-content code,
#blog-content-editor pre,
#blog-content-editor code {
    background: #f3f4f6;
    border-radius: 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.875em;
}

.blog-content pre {
    padding: 1em;
    overflow-x: auto;
}

.blog-content code {
    padding: 0.1em 0.35em;
}

.blog-content table {
    border-collapse: collapse;
    width: 100%;
    margin: 1em 0;
}

.blog-content th,
.blog-content td {
    border: 1px solid #e5e7eb;
    padding: 0.5em 0.75em;
}
