/*
Este arquivo é carregado apenas na tela onde tem o editor do gutenberg
Ele serve para customizar a aparência dos blocos que não são customizados pelo arquivo
custom-block-styles.css
*/

/*
	a classe wp-block é adicionada a todos os blocos apenas no editor,
	por isso pode ser usada para customizar	a aparência afetar a formatação do front-end
	é ela também que configura a a largura dos blocos no editor, desta forma 
	deve replicar os tamanhos configurados na classe .wrapper e nas suas media queries
*/

.editor-styles-wrapper h1.wp-block-post-title {
	font-family: var(--default-font);
	font-weight: var(--strong-font-weight);
	text-align: center;
	font-size: 54px;
	line-height: 1.4;
}

.editor-styles-wrapper .is-root-container {
	color: var(--black);
	font-family: var(--default-font);
	font-size: var(--default-font-size);
	line-height: 1.4;
	font-weight: var(--default-font-weight);
	word-break: break-word;
	overflow-x: hidden;
	max-width: var(--site-width);
	margin: auto;
	padding: 20px;
	background-color: var(--grey);
}

.editor-styles-wrapper p.wp-block.wp-block-paragraph {
	line-height: 1.4;
}

/* .editor-styles-wrapper .is-root-container :is(img, figure, caption) {
	max-width: 700px;
} */

/* .editor-styles-wrapper .is-root-container .wp-block-media-text.is-style-esun-featured-right:last-of-type {
	margin-top: 0;
	margin-bottom: 0;
} */
