.chapters-menu__sections {
    display: flex;
    flex-flow: column nowrap;
    list-style: none;
    gap: 24px;
}

.chapters-menu__section {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.chapters-menu__section-link {
    align-items: center;
    color: var(--color-neutral-700);
    display: flex;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
    justify-content: flex-start;
    text-decoration: underline;
    transition: all 0.3s ease;
    width: 100%;
}

.chapters-menu__section.active .chapters-menu__section-link,
.chapters-menu__section-link:hover {
    color: var(--color-primary-orange);
}

.chapters-menu__section-badge {
    align-items: center;
    background-color: var(--color-neutral-100);
    border-radius: 32px;
    color: var(--color-neutral-700);
    display: inline-flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 8px;
    padding: 4px 16px;
    font-size: 12px;
}

.chapters-menu__section-badge svg {
    height: 12px;
    width: 12px;
}

.chapters-menu__section-download {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.chapters-menu__section-download svg * {
    fill: var(--color-primary-blue-300);
    transition: all 0.3s ease;
}

.chapters-menu__section-download:hover svg * {
    fill: var(--color-primary-orange);
}
