/* rrm-toc — Table of Contents styles */

.rrm-toc {
	border: none;
	margin: 0 0 2em;
	max-width: 420px;
}

.rrm-toc__title {
	font-size: 14px;
	font-weight: 700;
	line-height: 145%;
	letter-spacing: 0.25px;
	text-transform: uppercase;
	background: var(--Style, linear-gradient(90deg, #C901A1 0%, #710B79 100%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.rrm-toc__list {
	list-style: none;
	margin: 0;
	padding: 0 !important;
	counter-reset: toc-counter;
}

.rrm-toc__item {
	list-style: none;
	counter-increment: toc-counter;
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
	padding: 10px 0 10px 20px;
	line-height: 1em;
	position: relative;
}

.rrm-toc__item:last-child {
	border-bottom: none;
}

.rrm-toc__item::before {
	content: counter(toc-counter) ".";
	display: inline-block;
	color: #494E6A;
	font-weight: 400;
	font-size: 14px;
	position: absolute;
    left: 0;
    top: 12px;
}

.rrm-toc__link {
	color: #494E6A;
	text-decoration: none;
	font-size: 14px;
}

.rrm-toc__link:hover,
.rrm-toc__link:focus {
	color: #c0007a;
	text-decoration: underline;
}
