/* =======================================================
   SYNEXTA MAIN CSS
   Modules: Sidebar, Author, Helpers
   ======================================================= */

/* --- 1. SIDEBAR GLISSANTE (Off-Canvas) --- */
.synexta-sidebar {
    position: fixed;
    top: 0;
    right: -320px; /* Caché à droite */
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: 30px;
    overflow-y: auto;
    box-sizing: border-box;
}

/* État Ouvert (via classe JS ou :target) */
.synexta-sidebar.is-open,
.synexta-sidebar:target {
    right: 0;
}

/* Overlay (Fond sombre) */
.synexta-sidebar-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.synexta-sidebar.is-open + .synexta-sidebar-overlay,
.synexta-sidebar:target ~ .synexta-sidebar-overlay { /* Si structure HTML compatible */
    opacity: 1;
    visibility: visible;
}

/* Bouton Fermer Sidebar */
.synexta-close-sidebar {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

/* --- 2. BOX AUTEUR (Shortcode [author]) --- */
.synexta-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.synexta-author-avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.synexta-author-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
    color: #111827;
}

.synexta-author-bio {
    font-size: 0.95em;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Author */
@media (max-width: 600px) {
    .synexta-author-box { flex-direction: column; text-align: center; }
}

/* --- 3. LEGAL & SOCIETE --- */
.synexta-legal-block {
    font-size: 0.9em;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 30px;
}