/* =======================================================
   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;
}

/* Centrage du titre principal */
.synexta-current-cat-name {
    display: block;
    text-align: center;
    margin-bottom: 10px; 
}

/* Alignement des sous-catégories */
.subcat-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 10px 0 0 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centre les éléments */
    align-items: center;
    gap: 8px 8px; /* Ecart horizontal de 15px entre chaque mot */
}

.subcat-item {
    position: relative;
    display: flex;
    align-items: center;
}

/* L'astuce magique : ajoute le | APRÈS chaque item SAUF le dernier */
.subcat-item:not(:last-child)::after {
    content: "|";
    margin-left: 8px; /* Pousse le pipe sur la droite (doit correspondre au gap) */
    color: #ffffff; /* Couleur du pipe, à ajuster avec le fond de ta bannière */
    opacity: 0.7;
}

/* Style des liens */
.subcatdisplayed a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.subcatdisplayed a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Masquer la liste sur mobile (inférieur à 786px) */
@media (max-width: 785px) {
    .subcatdisplayed {
        display: none !important;
    }
}