.wp-block-quote {
	box-sizing: border-box;
	overflow-wrap: break-word; // Break long strings of text without spaces so they don't overflow the block.
	// .is-style-large and .is-large are kept for backwards compatibility. The :not pseudo-class is used to enable switching styles. See PR #37580.
	&.is-style-large:where(:not(.is-style-plain)),
	&.is-large:where(:not(.is-style-plain)) {
		margin-bottom: 1em;
		padding: 0 1em;

		p {
			font-size: 1.5em;
			font-style: italic;
			line-height: 1.6;
		}

		cite,
		footer {
			font-size: 1.125em;
			text-align: right;
		}

	}
	> cite {
		display: block;
	}
}
