/* Override WP's drop-cap implementation with modern solution. */
@supports ( initial-letter: 3 ) or ( -webkit-initial-letter: 3 ) {
	.has-drop-cap:not(:focus)::first-letter {
		-webkit-initial-letter: 3;
		initial-letter: 3;
		float: none;
		margin: 0;
		padding-right: var( --wp--preset--spacing--20 );
		font-family: inherit;
		font-size: inherit;
		font-weight: 700;
		line-height: inherit;
	}
}
