/* =========================================
   STYLE VISIONNEUSE NOTICE (RÉTABLISSEMENT)
   ========================================= */

/* 1. CONFIGURATION GLOBALE PAGE BLANCHE */
body.viewer-page {
    background-color: #ffffff;
    color: #000000;
    margin: 0;
}

/* Force le header en noir */
body.viewer-page header {
    background: #000000 !important;
}

/* =========================================
   2. VOTRE CSS (INTEGRÉ TEL QUEL)
   ========================================= */

/* Style spécifique pour le texte de la notice */
.notice-content {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    /* Padding important pour que le texte ne soit pas caché par le header fixe */
    padding: 120px 24px 80px; /* J'ai mis 120px en haut pour être sûr avec le header */
}

.notice-content h1 {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

.notice-content h2 {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    text-transform: uppercase;
    line-height: 1.3;
    color: #000;
    border-bottom: 1px solid #eee; /* Petite ligne propre en bonus */
    padding-bottom: 10px;
}

.notice-content p,
.notice-content li {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #000;
    margin-bottom: 16px;
}

.notice-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.notice-content strong {
    font-weight: 800;
    color: #000;
}

/* =========================================
   IMAGES NOTICE (COTE A COTE & NON COUPÉES)
   ========================================= */

/* Le conteneur s'aligne sur la largeur du texte (100% du parent) */
.notice-images {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin: 40px 0;
}

.notice-images img {
    /* CALCUL PRÉCIS : 50% de la largeur moins la moitié de l'écart (10px) */
    width: calc(50% - 10px);

    /* HAUTEUR AUTO : C'est le secret pour ne pas couper l'image */
    height: auto;

    /* On s'assure que l'image reste dans ses proportions */
    object-fit: contain;

    display: block;
    border-radius: 8px;
    border: 1px solid #000; /* J'ai gardé la bordure fine car c'est une notice */
    margin: 0;
    max-width: 100%;
}

/* --- VERSION MOBILE --- */
@media (max-width: 768px) {
    .notice-images {
        flex-direction: column;
        gap: 24px;
    }

    .notice-images img {
        width: 100%;
        height: auto;
    }
    
    .notice-content {
        padding-top: 100px;
    }
}