/* --- STYLE ÉDITO --- */
.edito-container { 
    max-width: 1200px; 
    margin: 40px auto; 
    padding: 0 5%; 
    display: grid; 
    grid-template-columns: 2fr 1fr; 
    gap: 40px; 
}

.edito-hero { margin-bottom: 30px; }
.edito-hero .badge { 
    background: var(--primary-blue); color: white; 
    padding: 5px 15px; font-weight: bold; border-radius: 3px; 
}

.page-title { font-size: 3rem; margin: 20px 0; line-height: 1.1; color: #111; }
.edito-meta { color: #777; font-size: 0.95rem; }

.edito-image img { 
    width: 100%; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}

.edito-body { 
    margin-top: 40px; font-size: 1.2rem; line-height: 1.8; color: #333; 
}

.edito-signature { 
    margin-top: 50px; padding-top: 20px; border-top: 2px solid #eee; 
}

/* Sidebar */
.side-post-link { display: flex; gap: 15px; margin-bottom: 20px; text-decoration: none; color: inherit; }
.side-post-link img { width: 80px; height: 60px; object-fit: cover; border-radius: 4px; }
.side-post-link h4 { font-size: 1rem; line-height: 1.3; }

@media (max-width: 992px) {
    .edito-container { grid-template-columns: 1fr; }
    .page-title { font-size: 2rem; }
}