/* =========================================================
 * AOO TOC — sidebar inhoudsopgave (plaatsen & regio's)
 * Visueel: route / marker / stappen
 * ========================================================= */

.aoo-toc {
    position: relative;
}

/* Sticky container */
.aoo-toc__inner {
    position: sticky;
    top: 120px;
    padding-left: 28px;
    padding-right: 8px;
    border-left: 2px dashed var(--aoo-border);
}

/* Titel */
.aoo-toc__title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--aoo-muted);
    margin-bottom: 1rem;
}

/* Lijst reset */
.aoo-toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Item */
.aoo-toc__item {
    position: relative;
    margin-bottom: 1rem;
}

/* Marker (stap / punt) */
.aoo-toc__item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 0.45em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--aoo-border);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

/* Link */
.aoo-toc__item a {
    display: block;
    font-size: 0.85rem;
    line-height: 1.35;
    color: var(--aoo-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Hover */
.aoo-toc__item a:hover {
    color: var(--aoo-brand);
}

/* Actieve sectie */
.aoo-toc__item a.is-active {
    color: var(--aoo-brand);
    font-weight: 600;
}

/* Actieve marker */
.aoo-toc__item a.is-active::before {
    background-color: var(--aoo-brand);
}

/* We koppelen de marker aan active state */
.aoo-toc__item a.is-active+* {}

.aoo-toc__item a.is-active {
    position: relative;
}

.aoo-toc__item a.is-active::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 0.45em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--aoo-brand);
}

/* CTA onder TOC (bijv. Google Maps) */
.aoo-toc__cta {
    margin-top: 1.5rem;
}

/* =========================================================
 * Responsive: TOC verbergen op mobiel
 * ========================================================= */
@media (max-width: 1024px) {
    .aoo-toc {
        display: none;
    }
}
.aoo-toc.is-empty {
    display: none;
}