.inhoudsopgave {
    width: 100%;
}

.inhoudsopgave-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: var(--tertiary-color);
    margin: 0 0 1rem 0;
}

.inhoudsopgave-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.inhoudsopgave-list li {
    margin: 0;
}

.inhoudsopgave-list a {
    color: var(--secondary-color);
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.inhoudsopgave-list a:hover,
.inhoudsopgave-list a:focus {
    color: var(--tertiary-color);
    text-decoration: underline;
}

/* Accordeon: H2-groep (details) met H3-links (sublist) erin. */
.inhoudsopgave-group {
    width: 100%;
}

.inhoudsopgave-group__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    cursor: pointer;
    list-style: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: var(--tertiary-color);
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

.inhoudsopgave-group__label::-webkit-details-marker {
    display: none;
}

.inhoudsopgave-group__label:hover {
    color: var(--secondary-color);
}

/* Chevron rechts; wijst omlaag, draait omhoog als de groep open is. */
.inhoudsopgave-group__label::after {
    content: '';
    flex: 0 0 auto;
    width: 0.45rem;
    height: 0.45rem;
    margin-left: 0.5rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.inhoudsopgave-group[open] > .inhoudsopgave-group__label::after {
    transform: rotate(-135deg);
}

.inhoudsopgave-sublist {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0 0 0 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Hint die alleen in de Elementor-editor verschijnt wanneer er nog geen
   ge-anchorde H2's zijn. */
.inhoudsopgave-hint {
    font-size: 13px;
    font-style: italic;
    color: #6b6b6b;
    margin: 0;
}
