/**
 * EB Writer — TOC frontend (ringan, aksen hijau PCB).
 * Dimuat hanya di halaman single post saat fitur TOC aktif.
 */
.ebaw-toc {
    --ebaw-toc-accent: #0e9f6e;
    background: #f7faf9;
    border: 1px solid #dce8e3;
    border-left: 3px solid var(--ebaw-toc-accent);
    border-radius: 8px;
    padding: 14px 18px;
    margin: 0 0 28px;
    font-size: 0.95em;
}
.ebaw-toc summary {
    cursor: pointer;
    font-weight: 700;
    color: #1e2a32;
    list-style: none;
    user-select: none;
}
.ebaw-toc summary::-webkit-details-marker { display: none; }
.ebaw-toc summary::before {
    content: "▸";
    display: inline-block;
    margin-right: 8px;
    color: var(--ebaw-toc-accent);
    transition: transform .15s ease;
}
.ebaw-toc[open] summary::before { transform: rotate(90deg); }

.ebaw-toc-list {
    margin: 12px 0 2px;
    padding-left: 22px;
}
.ebaw-toc-list li { margin: 6px 0; }
.ebaw-toc-list a {
    color: #0b7a55;
    text-decoration: none;
    border-bottom: 1px dotted transparent;
}
.ebaw-toc-list a:hover {
    color: var(--ebaw-toc-accent);
    border-bottom-color: var(--ebaw-toc-accent);
}
.ebaw-toc-sub {
    margin: 6px 0 6px;
    padding-left: 20px;
    list-style: lower-alpha;
    font-size: 0.95em;
}

/* Anchor tidak ketutup sticky header saat diklik */
h2[id], h3[id] { scroll-margin-top: 90px; }
