/**
 * Editor Styles for Blog Over Theme
 * 
 * These styles apply to the WordPress block editor (Gutenberg)
 * to provide a more consistent editing experience.
 */

/* Typography */
.editor-styles-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
}

.editor-styles-wrapper h1,
.editor-styles-wrapper h2,
.editor-styles-wrapper h3,
.editor-styles-wrapper h4,
.editor-styles-wrapper h5,
.editor-styles-wrapper h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #1e293b;
}

/* Links */
.editor-styles-wrapper a {
    color: #3b82f6;
}

/* Wide and Full Width Alignment */
.editor-styles-wrapper .alignwide {
    max-width: 1200px;
}

.editor-styles-wrapper .alignfull {
    max-width: 100%;
}

/* Block Styling */
.editor-styles-wrapper .wp-block-image {
    margin-bottom: 1.5em;
}

.editor-styles-wrapper .wp-block-quote {
    border-left: 4px solid #3b82f6;
    padding-left: 1.5em;
    margin: 1.5em 0;
    font-style: italic;
}

.editor-styles-wrapper .wp-block-code {
    background: #f1f5f9;
    padding: 1em;
    border-radius: 4px;
}