
.auto-toc__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
	padding: 0;
	margin: 0;
}

.auto-toc__title span {
  color: var(--color-heading);
  text-transform: uppercase;
  font: var(--font-h3);
}

.auto-toc__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.auto-toc__toggle svg {
	transform: scale(50%);
    transition: transform .25s ease;
}

.auto-toc__content {
    display: none;
    padding-top: 16px;
  margin-left: 24px;
}

.auto-toc._open .auto-toc__content {
    display: block;
}

.auto-toc._open .auto-toc__toggle svg {
    transform: rotate(180deg) scale(50%) ;
}