.emphasized-first-letter p {
	position: relative; /* Needed for proper positioning of pseudo-element */
}

.emphasized-first-letter p::first-letter {
	font-size: 2em; /* Adjust font size for emphasis */
	position: absolute; /* Overlap the first letter with the rest of the text */
	top: 0;
	left: 0;
	color: teal; /* Adjust color as desired */
}

.emphasized-first-letter p span {
	/* This span pushes the rest of the text to the right */
	display: inline-block;
	margin-left: 1em; /* Adjust margin based on font size */
} 

