/* ---------------------------------------------
VARIABLES GLOBALES
--------------------------------------------- */
:root {
    --default-pdf-height: 1800px;
    --offset-desktop: 120px;
    --offset-mobile: 100px;
}

/* ---------------------------------------------
VERSION DESKTOP
--------------------------------------------- */
.layout-desktop { display: block; }
.layout-mobile { display: none; }

/* Conteneur principal */
.layout-desktop .auteurs-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

/* Neutralisation des marges WordPress */
.wp-block-shortcode,
.wp-block-html,
.wp-block-code,
.wp-block-group {
    margin: 0 !important;
    padding: 0 !important;
}

/* Colonne gauche FIXE */
.liste-auteurs-scroll {
    position: fixed;
    top: 150px;
    left: 8rem;
    width: 25%;
    max-height: calc(87vh - 200px);
    overflow-y: auto;
    border-right: 1px solid #ccc;
    padding-right: 1rem;
    background: #f9f9f9;
    z-index: 10;
}

.liste-auteurs-scroll input {
    width: 100%;
    padding: 0.6rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.liste-auteurs-scroll ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    font-size: 1.2rem;
}

.liste-auteurs-scroll a {
    text-decoration: none !important;
    display: block;
    padding: 0.2rem 0;
    color: inherit;
}

.liste-auteurs-scroll a.active {
    background-color: #8b0214;
    color: #fff;
    font-weight: bold;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

/* Colonne droite */
.auteurs-content {
    margin-left: calc(8rem + 25% + 2rem);
    width: calc(100% - (8rem + 25% + 2rem));
}

/* Fiches auteurs */
.auteur,
#defaultPDF {
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

/* Bio uniquement → 1.15rem */
.auteur p {
    font-size: 1.15rem;
}

/* Poèmes → taille normale */
.auteur details iframe {
    font-size: 1rem !important;
}

/* Animation apparition */
.auteur {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.auteur.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header auteur */
.auteur-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.auteur-header img {
    max-width: 200px;
    border-radius: 10px;
}

/* Poèmes */
details { margin-top: 1rem; }

/* TITRES DES POÈMES (desktop) */
summary {
    cursor: pointer;
    font-size: 1.15rem;
    padding-left: 100px;
}

/* Iframes */
.auteurs-content iframe {
    max-width: 100%;
    display: block;
    border: none;
    border-radius: 6px;
    margin-top: 1rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

/* Téléchargement */
.details-download {
    margin: 1rem 0 3rem 0;
}

/* Champ de recherche sticky */
.search-fixed {
    position: sticky;
    top: 0;
    background: #f9f9f9;
    padding: 0.5rem 0;
    z-index: 20;
}

/* ---------------------------------------------
VERSION MOBILE UNIQUEMENT
--------------------------------------------- */
@media (max-width: 900px) {

    /* Masquer desktop / afficher mobile */
    .layout-desktop { display: none; }
    .layout-mobile { display: block; }

    /* Hauteur PDF mobile */
    #defaultFrame {
        height: calc(var(--default-pdf-height) / 4) !important;
    }

    /* Réduction globale du texte mobile */
    .auteur,
    #defaultPDF {
        font-size: 0.9rem;
    }

    /* Bio mobile plus petite */
    .layout-mobile .auteur p {
        font-size: 0.7rem !important;
        line-height: 1.3;
    }

    /* Titre auteur mobile (ex : ARAGON Louis) */
    .layout-mobile .auteur h2 {
        font-size: 0.9rem !important;
        font-weight: 700;
        margin-bottom: 0.4rem;
        text-align: left;
    }

    /* Header auteur mobile */
    .auteur-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .auteur-header img {
        max-width: 150px;
    }

    /* Conteneur accordéon mobile */
    .mobile-accordion {
        border-radius: 8px;
        background: #f9f9f9;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 1rem;
        padding: 0.4rem 0.8rem;
    }

    /* TITRES DES POÈMES (summary) */
    .layout-mobile .mobile-accordion summary {
        font-size: 0.78rem !important;
        font-weight: 600;
        letter-spacing: 0.3px;
        padding-left: 0 !important;
        text-align: left;
    }

    /* "Télécharger le PDF" mobile */
    .layout-mobile .details-download a {
        font-size: 0.75rem !important;
        font-weight: 500 !important;
    }

    .layout-mobile .details-download span {
        font-size: 0.75rem !important;
        font-weight: 300 !important;
    }

    /* Alignement propre */
    .layout-mobile .details-download {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 0.4rem;
    }
}
