/* Le bloc complet */
.reconstitution-block {
    margin-bottom: 60px;
    width: 100%;
}

/* En-tête */
.reco-header h2 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 6px;
}

.reco-meta {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 15px;
    align-items: center;
}

/* Layout asymétrique (Texte à côté de l'image) */
.reco-content {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
}

.reco-text {
    flex: 1;
    /* Prend 50% de la largeur */
    line-height: 1.6;
    color: #4a5568;
    font-size: 1.05rem;
}

/* Effet interactif sur la galerie */
.gallery-image-wrapper:hover {
    transform: scale(1.03);
}

.gallery-image-wrapper.panoramic {
    max-width: 450px;
}

.gallery-image-wrapper.portrait {
    max-width: 200px;
}

/* Séparateur historique entre deux reconstitutions */
.reco-separator {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #cbd5e0, transparent);
    margin: 40px 0;
}

/* --- Responsive pour les téléphones --- */
@media (max-width: 768px) {
    .gallery-image-wrapper {
        width: 100%;
        height: 100% !important;
    }

    .gallery-image-wrapper.portrait,
    .gallery-image-wrapper.panoramic {
        max-width: 100%;
    }
}