/**
 * Implementation Guide Template Styles
 * Purple theme: #805ad5
 */

.guide-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    background: #faf5ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid #e9d8fd;
}

.guide-toc-wrapper {
    background: #faf5ff;
    border: 2px solid #e9d8fd;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.toc-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 1rem 0;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}

.toc-list li {
    counter-increment: toc-counter;
    margin-bottom: 0.75rem;
}

.toc-list li::before {
    content: counter(toc-counter) ". ";
    font-weight: 600;
    color: #805ad5;
}

.toc-list a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s;
}

.toc-list a:hover {
    color: #805ad5;
}

.toc-h2 {
    font-weight: 600;
}

.toc-h3 {
    margin-left: 1.5rem;
    font-weight: 400;
    font-size: 0.9375rem;
}

.difficulty-badge {
    background: #805ad5;
    font-weight: 700;
}

.aeco-guide .aeco-post-header {
    border-color: #805ad5;
}

.aeco-guide .aeco-callout-box.key-finding {
    border-color: #805ad5;
}

.aeco-guide .aeco-callout-box.action-item {
    border-color: #805ad5;
}

.aeco-guide-content h2 {
    padding-top: 1rem;
    margin-top: 3rem;
    border-top: 2px solid #e9d8fd;
}

.aeco-guide-content h2:first-of-type {
    border-top: none;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .guide-toc-wrapper {
        padding: 1rem;
    }
    
    .toc-h3 {
        margin-left: 1rem;
    }
    
    .guide-details-grid {
        grid-template-columns: 1fr;
    }
}