/* ============================================
   BioFermeil - Feuille de style principale
   ============================================ */

/*   OUTIL PRATIQUE pour creer des palettes : https://coolors.co   */
:root {
    /* --- Couleurs principales (identite BioFermeil) --- */
    --vert-principal: #7cb342;
    --sable-ocre: #e4bc97;
    --vert-vif: #6edd2e;
    --vert-fonce: #558b2f;
    --vert-clair: #c5e1a5;
    --vert-pale: #f1f8e9;
    --orange-accent: #ff6f00;
    --terre: #5d4037;
    
    /* --- Tons pastels naturels (fonds des sections) --- */
    --creme-lin: #faf6f1;
    --sable-doux: #f5efe6;
    --terre-claire: #f0e6dc;
    --sauge-pale: #e8ede5;
    --argile: #ebe3d9;
    
    /* --- Couleurs de texte --- */
    --gris-texte: #424242;
    --gris-clair: #f5f5f5;
    --blanc: #ffffff;
}

/* --- RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--gris-texte);
    line-height: 1.7;
    background-color: var(-vert-principal);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--vert-fonce);
}

a {
    color: var(--vert-vif);
    text-decoration: none ;
}

a:hover {
    color: var(--orange-accent);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================
   IMPORTANT : La navigation unifiée utilise désormais
   les classes .bf-header / .bf-nav de biofermeil.css.
   Les anciens styles génériques header/nav sont désactivés.
   ============================================ */

/*  ======================================================
     SECTION COPIEE DE Biofermeil.css
     =====================================================
.bf-header {
    background: linear-gradient(135deg, var(--vert-principal), var(--vert-clair));
    color: var(--blanc);
    padding: 0;
    box-shadow: var(--ombre);
    position: sticky;
    top: 0;
    z-index: 100;
}

.bf-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bf-logo {
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--blanc);
    display: flex;
    align-items: center;
    gap: 10px;
/* ============================================
   CONTENEUR PRINCIPAL
   ============================================ */
.main-content {
    margin-top: 0;
    min-height: calc(110vh - 100px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ====================================================
   HERO-SECTION  Section (Page d'accueil) GEMINI 080226
   ==================================================== */
.hero {
    background-color: #0a6428; /* Votre vert clair ou motif */
    padding-top: 20px;         /* Espace réservé pour votre menu */
    min-height: 98vh;         /* Prend 95% de la hauteur de l'écran */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;      /* Aligne les éléments verticalement (logo, devise, bouton) */
    align-items: center;
    gap: 60px;                   /* Espace constant entre chaque élément */
    padding: 120px;
}

.hero-logo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    /* background: var(--blanc); */
    background: url('../images/Logo_BioFermeil_Site_064718.png') center/cover;
    padding-top: 1.4px;
    margin: 0 auto 30px;    
    box-shadow: 0 10px 15px rgba(0,0,0,0.2); 
    display: flex;
    align-items: center;
    justify-content: center;
}
/* NOUVELLE GESTION FLOTTANTE GEMINI 08/02/26 */
.hero-photo-flottante {
    /* Fond de la photo composite */
    background-image: url('../images/Fond_Nicoleta_ombre.png');
    /*background-size: cover;       La photo couvre tout l'espace sans se déformer */
    width: 95%;
    height: auto;
    aspect-ratio: 9 / 5; /* Remplacez par le ratio de votre photo */
    background-size:100% 90%; /* Ou cover, l'image collera parfaitement au cadre */
    background-repeat: no-repeat;
    
    /* min-width: 96%;                  /* "Presque tout l'espace" */
    min-height: 90%;            /* Hauteur flexible */
    border-radius: 15px;         /* Optionnel : coins arrondis */
    box-shadow: 0 10px 30px rgba(3, 126, 3, 0.1);
    
    /* LE CŒUR DU FLEX : On centre le contenu à l'intérieur */
    display: flex;
    justify-content: center; 
    margin: 0 auto;    /* Centre horizontalement */
    align-self: center;         /* Centre verticalement     text-align: center; */
}

.hero-oldphoto-flottante {
    background-image: url('../images/Fond_Nicoleta_1700.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    /* On harmonise la largeur */
    width: 94%;           /* Largeur constante */
    max-width: 1400px;    /* Pour éviter qu'elle ne soit géante sur grand écran */
    margin: 0 auto;       /* FORCE LE CENTRAGE HORIZONTAL */
    
    aspect-ratio: 9 / 5; 
    
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(3, 126, 3, 0.1);

    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-rond {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    box-shadow: 10px 20px 40px black, 0 0 25px rgb(21, 95, 3), 0 0 5px rgba(87, 35, 5, 0.527);
}

.hero h1 {
    color: var(--blanc);
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .tagline {
    color: var(--vert-clair);
    font-size: 1.5em;
    font-style: italic;
    margin-bottom: 15px;
}

.hero p {
    color: var(--blanc);
    font-size: 1.7em;
    margin-bottom: 30px;
    /* Ombre multiple (effet de profondeur) */
    text-shadow: 3px 3px 3px rgb(72, 3, 3);/*, 0 0 25px rgb(55, 241, 9), 0 0 5px rgba(3, 82, 10, 0.527);*/
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 20px 40px;
    background: var(--vert-vif);
    color: var(--terre);
    text-decoration: none;
    opacity: 0.8;
    border: 1px solid;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3em;
    transition: transform 0.6s, box-shadow 0.6s;
    box-shadow: 5px 5px 5px rgba(33, 1, 1, 0.2); 
}

.btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(59, 0, 0, 0.4);
    color: var(--blanc);
}

.btn-secondary {
    background: var(--vert-fonce);
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.95em;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 50px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 70px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--orange-accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

.bg-white {
    background: var(--argile);
}

.bg-pale {
    background: var(--vert-pale);
}

/* ============================================
   GRILLE D'ARTICLES (Page d'accueil)
   ============================================ */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--creme-lin);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.article-card-image {
    height: 200px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-content {
    padding: 25px;
}

.article-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.85em;
    color: #888;
}

.article-card-category {
    background: var(--vert-clair);
    color: var(--vert-fonce);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.article-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-card h3 a {
    color: var(--vert-fonce);
}

.article-card h3 a:hover {
    color: var(--orange-accent);
}

.article-card p {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: var(--orange-accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

/* ============================================
   PAGE ARTICLE
   ============================================ */
.article-header {
    background: linear-gradient(rgba(85, 139, 47, 0.9), rgba(85, 139, 47, 0.95));
    padding: 60px 20px 60px;
    text-align: center;
    color: var(--blanc);
}

.article-header h1 {
    color: var(--blanc);
    font-size: 2.5em;
    max-width: 900px;
    margin: 0 auto 20px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0.9;
}

.article-body {
    background: var(--sable-doux);
    padding: 60px 20px;
}

.article-content {
    max-width: 1200px;
    margin: 0 auto;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.article-content h2 {
    margin: 40px 0 20px;
    font-size: 1.8em;
}

.article-content h3 {
    margin: 30px 0 15px;
    font-size: 1.4em;
}

.article-content ul, 
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

/* --- Images dans les articles --- */
.article-image {
    margin: 40px 0;
    text-align: center;
}

.article-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-image.full-width {
    margin-left: -20px;
    margin-right: -20px;
}

.article-image.full-width img {
    border-radius: 0;
    width: 100%;
}

.image-caption {
    margin-top: 10px;
    font-size: 0.9em;
    color: #888;
    font-style: italic;
}

/* --- Grille d'images 2 colonnes --- */
.images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.images-grid .article-image {
    margin: 0;
}

.images-grid .article-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.images-grid .image-caption {
    margin-top: 8px;
    font-size: 0.85em;
}

@media (max-width: 600px) {
    .images-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Galerie photos --- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.03);
}

/* --- Vidéos --- */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Citation / Mise en avant --- */
.highlight-box {
    background: var(--vert-pale);
    border-left: 4px solid var(--vert-principal);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.highlight-box p {
    margin: 0;
    font-style: italic;
}

blockquote {
    background: var(--sauge-pale);
    border-left: 4px solid var(--orange-accent);
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
}

/* ============================================
   SECTION À PROPOS
   ============================================ */
.about-grid {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center; */
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 50px;
    align-items: center ;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-centrer {
    align-items: center;
}
/* ============================================
   SECTION VALEURS
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--sable-ocre);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 5px 5px 5px rgba(56, 53, 48, 0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
}

/* ============================================
   SECTION CONTACT
   ============================================ */
.contact {
    background: linear-gradient(135deg, var(--vert-fonce) 0%, var(--terre) 100%);
    color: var(--blanc);
}

.contact .section-title {
    color: var(--blanc);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    color: var(--vert-clair);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item-icon {
    font-size: 1.5em;
}

.contact-item a {
    color: var(--blanc);
}

.partners {
    margin-top: 40px;
}

.partners h3 {
    color: var(--vert-clair);
    margin-bottom: 15px;
}

.partner-logos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-logo {
    background: var(--blanc);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    color: var(--vert-fonce);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #2e2e2e;
    color: var(--blanc);
    text-align: center;
    padding: 30px 20px;
}

footer p {
    opacity: 0.8;
    font-size: 0.9em;
}

footer a {
    color: var(--vert-clair);
}

/* ==================================
    MENTIONS LEGALES    Style du bouton d'ouverture 
    ================================= */
.btn-mentions {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: sans-serif;
}

/* L'arrière-plan sombre (caché par défaut) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; /* Cache la modale */
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* La fenêtre de contenu */
.modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

/* Le bouton de fermeture */
.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    text-decoration: none;
    color: #333;
}

/* Style pour le corps du texte à l'intérieur de la modale */
.modal-body {
    margin-top: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6; /* Améliore la lisibilité */
    color: #333;
    text-align: left; /* Aligne le texte à gauche pour plus de sérieux */
}

/* Optionnel : Style pour les titres à l'intérieur */
.modal-body h3 {
    margin-top: 15px;
    color: #000;
    font-size: 1.1em;
}

/* Astuce CSS : Affiche la modale quand l'ancre est active */
.modal-overlay:target {
    display: flex;
}

/* ============================================
   NAVIGATION ARTICLE (Précédent/Suivant)
   ============================================ */
.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.article-navigation a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--vert-fonce);
    font-weight: 600;
}

.article-navigation a:hover {
    color: var(--orange-accent);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.2em;
    }
    
    .article-header h1 {
        font-size: 2em;
    }
}

@media (max-width: 600px) {
    
    .hero h1 {
        font-size: 1.8em;
    }
    
    .hero .tagline {
        font-size: 1.1em;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .hero-logo {
        width: 140px;
        height: 140px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery {
        grid-template-columns: 1fr 1fr;
    }
}

/* ====================================SUPPORT VIDEOS=================================*/
 .video-hero {
            background: #1a1a1a;
            padding: 40px 20px;
            margin-top: 70px;
        }
        
        .video-hero .video-container {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
        }
        
        .video-hero .video-container iframe,
        .video-hero .video-container video {
            border-radius: 12px;
        }
        
        /* --- Info vidéo sous le player --- */
        .video-info {
            max-width: 900px;
            margin: 25px auto 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            color: #aaa;
            font-size: 0.9em;
        }
        
        .video-info-left {
            display: flex;
            gap: 20px;
        }
        
        .video-info-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .video-info-item-r {
            display: flex;
            align-items: right;
            gap: 6px;
        }
        
        .video-share {
            display: flex;
            gap: 10px;
        }
        
        .video-share a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: #333;
            color: #fff;
            border-radius: 50%;
            text-decoration: none;
            transition: background 0.3s;
        }
        
        .video-share a:hover {
            background: #7cb342;
        }
        
        /* --- Chapitres / Timestamps --- */
        .video-chapters {
            background: #f5f5f5;
            border-radius: 10px;
            padding: 25px 30px;
            margin: 30px 0;
        }
        
        .video-chapters h3 {
            margin-bottom: 15px;
            font-size: 1.2em;
        }
        
        .chapter-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .chapter-item {
            display: flex;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #e0e0e0;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .chapter-item:last-child {
            border-bottom: none;
        }
        
        .chapter-item:hover {
            background: #e8f5e9;
            margin: 0 -15px;
            padding-left: 15px;
            padding-right: 15px;
            border-radius: 5px;
        }
        
        .chapter-time {
            background: #7cb342;
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.85em;
            font-weight: 600;
            min-width: 55px;
            text-align: center;
            margin-right: 15px;
        }
        
        .chapter-title {
            flex: 1;
        }
        
        /* --- Playlist / Vidéos associées --- */
        .related-videos {
            margin: 40px 0;
        }
        
        .related-videos h3 {
            margin-bottom: 20px;
        }
        
        .related-videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .related-video-card {
            background: #f9f9f9;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .related-video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .related-video-thumb {
            position: relative;
            height: 160px;
            overflow: hidden;
        }
        
        .related-video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .related-video-thumb .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: rgba(124, 179, 66, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2em;
        }
        
        .related-video-content {
            padding: 15px;
        }
        
        .related-video-content h4 {
            font-size: 1em;
            margin-bottom: 5px;
            color: #333;
        }
        
        .related-video-content h4 a {
            color: inherit;
            text-decoration: none;
        }
        
        .related-video-content h4 a:hover {
            color: #7cb342;
        }
        
        .related-video-duration {
            font-size: 0.85em;
            color: #888;
        }
        
        /* --- Transcription --- */
        .transcription {
            background: #fafafa;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            margin: 30px 0;
        }
        
        .transcription-header {
            padding: 15px 20px;
            background: #f0f0f0;
            border-radius: 10px 10px 0 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .transcription-header h3 {
            margin: 0;
            font-size: 1.1em;
        }
        
        .transcription-toggle {
            font-size: 1.2em;
            transition: transform 0.3s;
        }
        
        .transcription-content {
            padding: 20px;
            max-height: 300px;
            overflow-y: auto;
            display: none;
        }
        
        .transcription-content.open {
            display: block;
        }
        
        .transcription-content p {
            margin-bottom: 15px;
            line-height: 1.8;
        }

        /* Style du conteneur Meteo */
#bloc-meteo-ferme {
    width: 22.22vw;   /* 1/3 de la largeur sur PC */
    height: 55vh;     /* 1/2 de la hauteur de page */
    padding: 10px;
    box-sizing: border-box;
}

.meteo-container {
    background: #ffffff;
    border-radius: 15px;
    border: 2px solid #8bc34a; /* Vert "Ferme" */
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow-y: auto; /* Permet de scroller si les prévisions dépassent */
}

.search-bar { display: flex; gap: 5px; margin-bottom: 15px; }
.search-bar input { flex: 1; padding: 8px; border: 1px solid #ccc; border-radius: 5px; }
.search-bar button { background: #8bc34a; border: none; border-radius: 5px; cursor: pointer; color: white; }

/* Responsive : Passage en colonne sur Smartphone */
@media (max-width: 768px) {
    #bloc-meteo-ferme {
        width: 100%;  /* Prend toute la largeur */
        height: auto; /* S'adapte au contenu */
    }
}