/**
 * Block Editor Content Styles
 *
 * Styles for content rendered via the block editor (the_content()).
 * Replaces the legacy .wysiwyg selector approach.
 */

.entry-content ul {
	margin: 5px 0 20px 0;
	padding: 0;
	font-size: 17px;
	line-height: 25px;
	list-style-type: none;
	color: #504c4c;
	font-weight: 300;
}

.entry-content ul li {
	position: relative;
	padding-left: 30px !important;
	line-height: 1.5em;
}

.entry-content ul li:before {
	position: absolute;
	left: 2px;
	content: "\25cb";
	color: transparent;
	width: 21px;
	height: 19px;
	background-image: url( ../images/list-item-bullet.png );
	background-size: cover;
	background-repeat: no-repeat;
}

.entry-content ol {
	list-style-type: decimal;
	list-style-position: inside;
}

.entry-content ol li {
	position: relative;
	line-height: 1.5em;
}

.entry-content img {
	max-width: 100%;
	height: auto;
}

.entry-content .wp-block-image {
	margin-bottom: 0;
}

.entry-content .wp-block-image figure {
	margin-top: 0.25rem;
}

/**
 * Color palette overrides
 */

.color-palette--indigo-lilac .entry-content ul li:before {
	background-image: url( ../images/list-item-bullet--pelvis.svg );
	left: 0;
	height: 20px;
}