.section.richtext-section {
	text-align: left;
}

.richtext-section .subheading ul li,
.richtext-section .subheading ol li {
	position: relative;
	padding: 0 0 0 33px;
	margin: 0 0 30px;
	list-style-type: none;
}

.richtext-section .subheading ul li:before {
	content: '';
	position: absolute;
	top: 0.77em;
	left: 0;
	background: #1922FB;
	height: 3px;
	width: 20px;
}

/* Ordered lists */
.richtext-section .subheading ol {
	list-style: none;
	counter-reset: my-awesome-counter;
	margin: 0 0 1.5rem;
	padding: 0 0 0 40px;
}

.richtext-section .subheading ol li {
	position: relative;
	padding: 0 0 0 33px;
	margin: 0 0 30px;
	list-style-type: none;
}

.richtext-section .subheading ol li:before {
	content: counter(my-awesome-counter) ". ";
	counter-increment: my-awesome-counter;
	color: #1922FB;
	position: absolute;
	left: 0;
}

.richtext-section .subheading a {
	position: relative;
	text-decoration: none;
	color: #1922FB;
}

.richtext-section .subheading a:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.richtext-section .subheading a:hover:after,
.richtext-section .subheading a:focus-visible:after {
	transform: scaleX(1);
}

@media (max-width: 767px) {
	.richtext-section .subheading ol,
	.richtext-section .subheading ul {
		padding: 0 0 0 20px;
	}
	.richtext-section .subheading ol li,
	.richtext-section .subheading ul li {
    margin: 0 0 1rem;
}