/* ============================================================
   SMYF THEME — BLOCK EDITOR STYLES
   Applied in both frontend and Gutenberg editor
   ============================================================ */

/* Editor body */
.editor-styles-wrapper {
  font-family: var(--sans, 'Manrope', sans-serif);
  font-size: 15px;
  line-height: 1.7;
  color: #111;
  max-width: 760px;
  padding: 40px;
}

/* Headings in editor */
.editor-styles-wrapper h1,
.editor-styles-wrapper h2,
.editor-styles-wrapper h3,
.editor-styles-wrapper h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #111;
  line-height: 1.1;
  margin-bottom: 0.5em;
}

.editor-styles-wrapper h2 { font-size: 34px; }
.editor-styles-wrapper h3 { font-size: 26px; }

/* Paragraphs */
.editor-styles-wrapper p { margin-bottom: 1em; }

/* Blockquote */
.editor-styles-wrapper blockquote,
.wp-block-quote {
  border-left: 3px solid #FFD504;
  padding: 20px 24px;
  margin: 32px 0;
  background: #FCF8F5;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

/* Image blocks */
.wp-block-image { margin: 28px 0; }
.wp-block-image img { border-radius: 3px; }

/* Separator */
.wp-block-separator {
  border: none;
  border-top: 2px solid #FFD504;
  width: 40px;
  margin: 36px 0;
}

/* Buttons */
.wp-block-buttons .wp-block-button__link {
  background: #1F5C30;
  color: white;
  border-radius: 2px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
}

/* Cover block */
.wp-block-cover {
  min-height: 400px;
  border-radius: 3px;
}

/* Columns */
.wp-block-columns { gap: 24px; }

/* Lists */
.editor-styles-wrapper ul,
.editor-styles-wrapper ol {
  padding-left: 24px;
  margin-bottom: 1em;
}
.editor-styles-wrapper li { margin-bottom: 6px; }

/* Code */
.wp-block-code,
.editor-styles-wrapper code {
  font-size: 13px;
  background: #F2F0EF;
  padding: 2px 6px;
  border-radius: 2px;
}

/* Table */
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.wp-block-table td,
.wp-block-table th {
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,.1);
}
.wp-block-table th {
  background: #F2F0EF;
  font-weight: 700;
}
