.toc {
	display: flex;
    flex-direction: column;
	gap: 20px;
}

@media (width > 1200px) {
	.toc {
		padding: 30px;
	}
}

@media (width <= 768px) {
	.toc {
		padding: 20px;
	}
}

.toc__header {
	display: flex;
    align-items: flex-end;
	justify-content: space-between;
    gap: 20px;
}

.toc__title {
	margin-bottom: 0;
}

.toc__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.toc__item {
	font-size: 18px;
}

.toc__link {
	text-underline-offset: 4px;
}

.toc__link:hover {
	/* text-decoration: underline;
	text-decoration-color: #ffde00; */
	
	box-shadow: inset 0 -2px 0 0 #ffde00;
}

.toc__level-h2 {
	position: relative;
    padding-left: 14px;
}

.toc__level-h2::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: #53bd35;
}

.toc__level-h3 {
    margin-left: 30px;
}

.toc__level-h4 {
    margin-left: 50px;
}

.toc__level-h5 {
    margin-left: 70px;
}

.toc__level-h6 {
  margin-left: 90px;
}

.toc__toggle-link {
	color: #7B7B7B;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.toc__toggle-link:hover {
    text-decoration: none;
}
