/* ===== NT24 Table of Contents ===== */
/* Brand: #C4A882 (warm gold), #B8452A (accent), #1A1A1A (dark) */

.nt24-toc {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0ea 100%);
    border: 1px solid rgba(196, 168, 130, 0.25);
    border-left: 4px solid #C4A882;
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(196, 168, 130, 0.08);
    transition: box-shadow 0.3s ease, max-width 0.3s ease, width 0.3s ease;
    width: fit-content;
    max-width: 100%;
}
.nt24-toc.is-collapsed {
    max-width: 280px;
}
.nt24-toc:hover {
    box-shadow: 0 4px 16px rgba(196, 168, 130, 0.15);
}

/* Header */
.nt24-toc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}
.nt24-toc-header:hover {
    background: rgba(196, 168, 130, 0.06);
}
.nt24-toc-icon {
    color: #C4A882;
    font-size: 1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 168, 130, 0.12);
    border-radius: 6px;
    flex-shrink: 0;
}
.nt24-toc-icon svg {
    width: 16px;
    height: 16px;
}
.nt24-toc-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: #1A1A1A;
    flex: 1;
    letter-spacing: 0.02em;
}
.nt24-toc-count {
    font-size: 0.7rem;
    color: #777;
    background: rgba(196, 168, 130, 0.1);
    padding: 1px 6px;
    border-radius: 10px;
    flex-shrink: 0;
}
.nt24-toc-arrow {
    color: #C4A882;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.nt24-toc.is-collapsed .nt24-toc-arrow {
    transform: rotate(-90deg);
}

/* List */
.nt24-toc-list {
    list-style: none;
    margin: 0;
    padding: 0 18px 16px 18px;
    counter-reset: toc-h2;
    max-height: 600px;
    overflow-y: auto;
    transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s ease;
}
.nt24-toc.is-collapsed .nt24-toc-list {
    max-height: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    border: none;
}

/* Sublist (nested H3/H4) */
.nt24-toc-sublist {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    counter-reset: toc-h3;
}
.nt24-toc-sublist .nt24-toc-sublist {
    counter-reset: toc-h4;
}

/* Items */
.nt24-toc-list li {
    margin: 0 !important;
    padding: 0 !important;
}
.nt24-toc-list > li {
    counter-increment: toc-h2;
}
.nt24-toc-sublist > li {
    counter-increment: toc-h3;
}
.nt24-toc-sublist .nt24-toc-sublist > li {
    counter-increment: toc-h4;
}

/* Links */
.nt24-toc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    font-size: 0.84rem;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    line-height: 1.4;
}

/* H2 numbering: 1. 2. 3. */
.nt24-toc-list > li > .nt24-toc-link::before {
    content: counter(toc-h2) ".";
    color: #C4A882;
    font-weight: 700;
    font-size: 0.76rem;
    min-width: 24px;
    flex-shrink: 0;
}

/* H3 numbering: 1.1. 1.2. */
.nt24-toc-sublist > li > .nt24-toc-link::before {
    content: counter(toc-h2) "." counter(toc-h3);
    color: #d4bf9a;
    font-weight: 700;
    font-size: 0.72rem;
    min-width: 28px;
    flex-shrink: 0;
}

/* H4 numbering: 1.1.1. */
.nt24-toc-sublist .nt24-toc-sublist > li > .nt24-toc-link::before {
    content: counter(toc-h2) "." counter(toc-h3) "." counter(toc-h4);
    color: #999;
    font-weight: 600;
    font-size: 0.68rem;
    min-width: 34px;
    flex-shrink: 0;
}

.nt24-toc-link:hover {
    background: rgba(196, 168, 130, 0.08);
    color: #B8452A;
    padding-left: 16px;
}
.nt24-toc-link.is-active {
    background: rgba(196, 168, 130, 0.1);
    color: #B8452A;
    font-weight: 600;
    border-left: 3px solid #C4A882;
    margin-left: -3px;
}

/* Indentation levels */
.toc-level-2 > .nt24-toc-link {
    padding-left: 12px;
}
.toc-level-3 > .nt24-toc-link {
    padding-left: 32px;
    font-size: 0.78rem;
}
.toc-level-4 > .nt24-toc-link {
    padding-left: 52px;
    font-size: 0.72rem;
    color: #555;
}

/* Scrollbar styling */
.nt24-toc-list::-webkit-scrollbar {
    width: 4px;
}
.nt24-toc-list::-webkit-scrollbar-track {
    background: transparent;
}
.nt24-toc-list::-webkit-scrollbar-thumb {
    background: rgba(196, 168, 130, 0.3);
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .nt24-toc {
        margin: 0 0 24px;
        border-radius: 6px;
        width: 100%;
        max-width: 100%;
    }
    .nt24-toc.is-collapsed {
        max-width: 140px;
    }
    .nt24-toc.is-collapsed .nt24-toc-header {
        padding: 5px 10px;
        justify-content: center;
    }
    .nt24-toc.is-collapsed .nt24-toc-title {
        flex: none;
        text-align: center;
    }
    .nt24-toc.is-collapsed .nt24-toc-count {
        display: none;
    }
    .nt24-toc-list {
        padding: 0 10px 10px 10px;
        max-height: 400px;
    }
    .nt24-toc-link {
        padding: 4px 6px;
        font-size: 0.74rem;
        gap: 6px;
    }
    .toc-level-2 > .nt24-toc-link {
        padding-left: 6px;
    }
    .toc-level-3 > .nt24-toc-link {
        padding-left: 16px;
        font-size: 0.7rem;
    }
    .toc-level-4 > .nt24-toc-link {
        padding-left: 26px;
        font-size: 0.65rem;
    }
}
