.editorial-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(14, 14, 18, 0.5) 0%, rgba(5, 5, 5, 1) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.editorial-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.editorial-header {
    margin-bottom: 50px;
}

.editorial-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.editorial-content {
    column-count: 1;
    /* Keep simple for mobile, maybe 2 on desktop if needed, but single column is better for readability usually */
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.editorial-content p {
    margin-bottom: 25px;
}

.editorial-content strong {
    color: var(--text-main);
    font-weight: 600;
}

.fact-box {
    margin: 40px 0;
    padding: 30px;
    background: rgba(59, 130, 246, 0.05);
    /* Very subtle blue tint */
    border-left: 3px solid var(--primary);
    border-radius: 4px;
}

.fact-title {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.source-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .editorial-content {
        font-size: 1.2rem;
    }
}