// .is-style-solid-color is deprecated.
// This selector has not been scoped with `:root :where`, as global styles
// does, to keep its specificity as it was at the time of deprecation.
.wp-block-pullquote.is-style-solid-color {
	& blockquote p {
		font-size: 32px;
	}

	.wp-block-pullquote__citation {
		text-transform: none;
		font-style: normal;
	}
}

.wp-block-pullquote__citation {
	color: inherit;
}

// Ensure custom line-height values applied to the block are inherited by the
// paragraph instead of being overridden by the default editor styles.
.wp-block-pullquote[style*="line-height"] :where(p) {
	line-height: inherit;
}
