/* static/css/publications.css */

/* --- Réinitialisation et Layout Général --- */

.publications-list-section {
    background-color: #f9f9f9; /* Un fond très légèrement grisé pour la section */
    padding: 60px 0;
}

/* On transforme la grille en une liste verticale */
.publications-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Espace entre les publications */
}

/* --- Le Style de la Carte de Publication --- */
/* C'est ici que la magie opère. On passe d'une "carte" à une "entrée de liste". */
.publication-card {
    background-color: #fff;
    border: 1px solid #e5e5e5; /* Bordure subtile au lieu d'une grosse ombre */
    border-left: 5px solid var(--primary-color, #0056b3); /* Une barre de couleur accentuée à gauche */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem; /* Espace vertical entre les éléments internes */
    transition: all 0.3s ease;
    border-radius: 4px;
}

.publication-card:hover {
    transform: translateY(-5px); /* Un léger soulèvement au survol */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Ombre plus douce, seulement au survol */
    border-left-color: var(--secondary-color, #007bff);
}

/* --- Éléments Internes de la Carte --- */

.publication-year {
    font-weight: 700;
    color: var(--primary-color, #0056b3);
    font-size: 0.9rem;
    align-self: flex-start; /* Aligner en haut à gauche */
    background-color: rgba(0, 86, 179, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
}

.publication-title {
    font-family: 'Georgia', 'Times New Roman', serif; /* Police Serif pour l'élégance */
    font-size: 1.5rem; /* Titre plus grand et impactant */
    line-height: 1.3;
    margin: 0.5rem 0;
}

.publication-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s ease;
}

.publication-title a:hover {
    color: var(--primary-color, #0056b3);
}

.publication-authors,
.publication-source {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555;
    font-size: 0.95rem;
}

.publication-authors i,
.publication-source i {
    color: #888;
    width: 16px; /* Assurer l'alignement */
}

/* La source (revue/conférence) en italique est une convention académique */
.publication-source em {
    font-style: italic;
    color: #444;
}


/* --- Boutons d'Action --- */

.publication-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap; /* Pour les petits écrans */
    gap: 0.75rem;
    align-items: center;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s ease-in-out;
    border: 1px solid transparent;
}

.btn-action.link {
    background-color: #e9ecef;
    color: #495057;
    border-color: #dee2e6;
}
.btn-action.link:hover {
    background-color: #dee2e6;
}

.btn-action.pdf {
    background-color: #c31a1a; /* Couleur rouge distinctive pour les PDF */
    color: #fff;
}
.btn-action.pdf:hover {
    background-color: #a11515;
}

.btn-action.detail {
    margin-left: auto; /* Pousse ce bouton vers la droite */
    color: var(--primary-color, #0056b3);
    background-color: transparent;
}

.btn-action.detail:hover {
    background-color: rgba(0, 86, 179, 0.05);
}

/* --- Section des Filtres --- */
.filters-section-modern {
    background-color: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
}
.filter-title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #333;
}
.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 16px;
    border: 1px solid #ccc;
    border-radius: 20px;
    text-decoration: none;
    color: #555;
    transition: all 0.2s ease;
}
.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color, #0056b3);
    color: #fff;
    border-color: var(--primary-color, #0056b3);
}

/* --- Message "Aucune publication" --- */
.empty-section {
    text-align: center;
    padding: 80px 40px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}
.empty-icon {
    font-size: 4rem;
    color: #ced4da;
    margin-bottom: 1rem;
}
.empty-content h3 {
    font-size: 1.8rem;
    color: #333;
}
.empty-content p {
    color: #666;
    margin-bottom: 2rem;
}