/* ========================================
   Table of Contents (TOC) Styles
   ======================================== */

.post-toc-container {
    margin-bottom: 40px;
    width: 100%;
}

.post-toc {
    background: #f8f9fa;
    border-left: 4px solid #6baeaa;
    padding: 20px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
}

.toc-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #396d77;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin: 8px 0;
    transition: all 0.2s ease;
}

.toc-list li:hover {
    background: rgba(107, 174, 170, 0.1);
    border-radius: 4px;
    padding: 4px 8px;
    margin-left: -8px;
}

/* Indentación según nivel de heading */
.toc-level-2 {
    margin-left: 0;
}

.toc-level-3 {
    margin-left: 20px;
}

.toc-level-4 {
    margin-left: 40px;
}

.toc-link {
    color: #396d77;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    word-break: break-word;
}

.toc-link:hover {
    color: #396d77;
    text-decoration: underline;
}

.toc-link:active,
.toc-link:visited {
    color: #6baeaa;
}

/* Responsive - móviles */
@media (max-width: 768px) {
    .post-toc-container {
        margin-bottom: 30px;
    }

    .post-toc {
        padding: 15px;
        font-size: 13px;
    }

    .toc-title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .toc-level-2 {
        margin-left: 0;
    }

    .toc-level-3 {
        margin-left: 12px;
    }

    .toc-level-4 {
        margin-left: 24px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
