/**
 * core/pullquote. Core supplies the styling apart from its top and bottom
 * rules, which LH 2015 removes (a border set on the block itself still
 * applies). The second rule stops style.css's blockquote border, margins and
 * padding from applying inside a pullquote.
 */

.wp-block-pullquote {
	border-top: 0;
	border-bottom: 0;
}

.wp-block-pullquote blockquote {
	border: 0;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}
