/*--------------------------------------------------------------
Gutenberg block front-end styles for Screenr.

Colour palette, font sizes and editor content/wide widths are defined in
theme.json (WordPress 6.x/7.0) and their CSS is generated by WordPress
automatically. This file only carries the front-end layout/spacing rules a
classic theme still needs for blocks rendered inside .entry-content.
--------------------------------------------------------------*/

/* Content width and wide / full alignment ---------------------------------- */
.entry-content > * {
	max-width: var(--wp--style--global--content-size, 1110px);
	margin-left: auto;
	margin-right: auto;
}

.entry-content > .alignwide {
	max-width: var(--wp--style--global--wide-size, 1230px);
}

.entry-content > .alignfull {
	max-width: 100%;
	width: 100%;
}

.entry-content .alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1em;
}

.entry-content .alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1em;
}

.entry-content .aligncenter {
	clear: both;
	margin-left: auto;
	margin-right: auto;
}

/* Vertical rhythm between blocks ------------------------------------------- */
.entry-content > * {
	margin-top: 1.5em;
	margin-bottom: 1.5em;
}

/* Minor block refinements -------------------------------------------------- */
.wp-block-pullquote,
.wp-block-quote.is-style-large {
	border: 0;
}

.wp-block-button .wp-block-button__link {
	border-radius: 3px;
}
