/* Opcore Enhancements: TOC & Stat-Boxes */
.toc {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}
.toc h2 {
    font-size: 1.2rem;
    margin-top: 0;
    color: #1d4ed8;
}
.toc ol {
    padding-left: 20px;
}
.toc a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
}
.toc a:hover {
    color: #2563eb;
}

.stat-highlight {
    background: #fff5eb;
    border: 2px solid #e67e22;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(230,126,34,0.1);
    display: flex;
    gap: 20px;
    align-items: center;
}
.stat-highlight .stat-icon {
    font-size: 45px;
}
.stat-highlight h4 {
    margin: 0 0 10px 0;
    color: #d35400;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-highlight p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #2c3e50;
}
.stat-highlight .so-what {
    display: block;
    margin-top: 8px;
    font-style: italic;
    color: #e67e22;
}
@media (max-width: 600px) {
    .stat-highlight {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}