/* ==========================================================================
   Feuille de style principale pour le projet SES
   VERSION COMPACTE - 17/08/2025
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}
/* --- BLOC 1 : VARIABLES DE COULEURS ET STYLES GÉNÉRAUX --- */
:root {
    --color-primary: #003366;
    --color-secondary: #ff6f61; 
    --color-success: #00c100;
    --color-bg: #f4f4f9;
    --color-text: #333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 2rem;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

/* --- BLOC 2 : STRUCTURE PRINCIPALE ET EN-TÊTE --- */
#app {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    gap: 1rem;
}

h1, h2 {
    color: var(--color-primary);
    border-bottom: none;
    padding-bottom: 0;
}

.header-info { display: flex; align-items: center; gap: 1.5rem; }
#score-global, #global-progress-counter { font-size: 1.2rem; font-weight: bold; color: var(--color-primary); margin: 0; padding: 0; white-space: nowrap; }
#score-global { color: var(--color-secondary); }
#user-session-info { display: flex; align-items: center; gap: 1rem; }
#logout-btn { padding: 0.4rem 0.8rem; border: none; background-color: var(--color-secondary); color: white; cursor: pointer; border-radius: 5px; font-size: 0.8rem; }

/* --- BLOC 3 : TABLEAU DE BORD (POINTS DU PROGRAMME, BADGES) --- */
/* === MODIFICATIONS POUR UN AFFICHAGE COMPACT === */
#liste_points_programme { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    list-style: none; 
    padding: 0; 
}
.competency-item { 
    padding: 0.75rem;
    font-size: 0.9rem;
    border-radius: 5px; 
    cursor: pointer; 
    transition: all 0.2s ease-in-out; 
    text-align: center; 
    font-weight: 500; 
    color: var(--color-text); 
    border: 1px solid #ccc; 
    position: relative; 
    z-index: 1; 
    overflow: hidden; 
	margin-bottom: 0.5rem; /* <--- pour tableau bord */
}
.competency-item::before { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: var(--progress, 0%); background-color: var(--color-success); opacity: 0.4; z-index: -1; transition: width 0.5s ease-in-out; }
.competency-item:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); }
.competency-progress { font-weight: normal; color: #555; margin-left: 0.5rem; }

#badges-conteneur { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1rem; padding: 1rem 0; }

/* --- BLOC 4 : SECTION DES EXERCICES (MENU ET BOUTONS) --- */
#test-container { margin-top: 2rem; padding: 1rem; border: none; border-radius: 8px; background-color: #f8f9fa; }
.test-menu-list { list-style: none; padding: 0; margin: 0; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.test-menu-item { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 1.25rem; background: white; border-bottom: 1px solid #f0f0f0; transition: all 0.2s ease-in-out; }
.test-menu-item:last-child { border-bottom: none; }
.test-menu-item:hover { transform: scale(1.02); box-shadow: 0 4px 15px rgba(0,0,0,0.1); z-index: 10; position: relative; }
.test-info { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; }
.check-icon { width: 24px; height: 24px; color: #ccc; transition: color 0.3s, transform 0.3s; }
.test-menu-item.completed { background-color: #f0fff0; }
.test-menu-item.completed .test-info { color: #555; }
.test-menu-item.completed .check-icon { color: var(--color-success); transform: scale(1.1); }

/* --- STYLES UNIFIÉS POUR LES BOUTONS --- */
#test-container button, .button-secondary {
    padding: 0.5rem 1rem;
    border: 2px solid var(--color-primary);
    background-color: var(--color-primary);
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.2s, color 0.2s;
    margin-top: 1rem;
}

.test-menu-item button { margin-top: 0; }

#test-container button:hover, .button-secondary:hover {
    background-color: #002346;
    border-color: #002346;
}

/* Style pour les boutons secondaires (Refaire, Retour...) */
.test-menu-item.completed button, .button-secondary {
    background-color: transparent;
    border: 2px solid var(--color-success);
    color: var(--color-success);
}

.test-menu-item.completed button:hover, .button-secondary:hover {
    background-color: var(--color-success);
    color: white;
}

/* --- BLOC 5 : AUTHENTIFICATION, POPUPS ET STYLES DE JEUX --- */
#auth-container { max-width: 450px; margin: 5rem auto; padding: 2rem; background: white; border-radius: 8px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); text-align: center; }
#auth-container h1 { margin-bottom: 2rem; }
.auth-form input { display: block; width: 90%; padding: 0.75rem; margin: 1rem auto; font-size: 1rem; border: 1px solid #ccc; border-radius: 5px; }
.auth-form input::placeholder { color: #888; opacity: 1; }
.auth-form button { width: 95%; padding: 0.75rem; border: none; border-radius: 5px; background-color: var(--color-primary); color: white; font-size: 1.1rem; cursor: pointer; margin-top: 1rem; }
.auth-form button:hover { opacity: 0.9; }
.auth-form p { margin-top: 1.5rem; font-size: 0.9rem; }
.auth-form a { color: var(--color-secondary); text-decoration: none; font-weight: bold; }
#guest-login-btn { background-color: var(--color-success); margin-top: 0.5rem; }

#popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 999; background: transparent; pointer-events: none; }
#popup-overlay.hidden #popup-box { transform: translateY(-150%); opacity: 0; }
#popup-box { position: fixed; top: 20px; right: 20px; z-index: 1000; width: 90%; max-width: 380px; background: white; border-radius: 8px; border-top: 5px solid var(--color-primary); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); padding: 1.5rem; text-align: center; transform: translateY(0); opacity: 1; transition: transform 0.4s ease-out, opacity 0.4s ease-out; pointer-events: auto; }
#popup-message { font-size: 1.1rem; margin: 0 0 1rem 0; }
#popup-close-btn { padding: 0.6rem 1.5rem; border: none; background-color: var(--color-primary); color: white; border-radius: 5px; cursor: pointer; font-size: 1rem; }
#popup-box.success { border-top-color: var(--color-success); }
#popup-box.error { border-top-color: var(--color-secondary); background-color: #fff0f0; }

#chrono-conteneur { font-weight: bold; font-size: 1.1rem; color: var(--color-primary); text-align: right; margin-bottom: 1rem; }

/* .qcm-options { list-style: none; padding: 0; }
.qcm-options li { margin: 0.5rem 0; padding: 0.75rem; border: 1px solid #ccc; border-radius: 5px; cursor: pointer; transition: background-color 0.2s; }
.qcm-options li:hover { background-color: #f0f8ff; } */

.dnd-container { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.dnd-items, .dnd-categories { flex: 1; min-width: 200px; padding: 1rem; background-color: var(--color-bg); border-radius: 8px; }
.dnd-items h4, .dnd-categories h4 { margin-top: 0; color: var(--color-primary); text-align: center; }
.drag-item { padding: 0.75rem; margin: 0.5rem 0; background-color: white; border: 1px solid #ccc; border-radius: 5px; cursor: grab; user-select: none; }
.drag-item:active { cursor: grabbing; }
.drop-zone { margin-top: 1rem; padding: 1rem; min-height: 80px; border: 2px dashed #ccc; border-radius: 5px; transition: background-color 0.3s; }
.drop-zone.drag-over { background-color: #e0f7fa; }
.drag-item.placed { background-color: #f0fff0; border-color: var(--color-success); cursor: not-allowed; }

.texte-a-trous-container { font-size: 1.2rem; line-height: 2; padding: 1rem; background: #f9f9f9; border-radius: 8px; margin-bottom: 1rem; }
.texte-a-trous-container .trou { font-size: 1.1rem; padding: 0.25rem 0.5rem; border: 2px solid #ccc; border-radius: 5px; margin: 0 0.25rem; }

/* .cartes-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 1.5rem; perspective: 1000px; } */
/* .carte { height: 180px; position: relative; cursor: pointer; transform-style: preserve-3d; transition: transform 0.6s, box-shadow 0.3s; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); } */

.cartes-container {
    display: grid;
    /* MODIFIÉ : On réduit la largeur minimale pour mieux s'adapter aux petits écrans */
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    /* MODIFIÉ : On utilise des espacements distincts pour les colonnes et les lignes */
    column-gap: 1.2rem; /* Espace horizontal entre les cartes */
    row-gap: 2rem;    /* Espace vertical (lignes) augmenté comme demandé */
    perspective: 1000px;
}

.carte {
    /* MODIFIÉ : Hauteur légèrement réduite pour un ratio plus harmonieux avec la nouvelle largeur */
    height: 140px; 
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.6s, box-shadow 0.3s;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.carte.retournee { transform: rotateY(180deg); }
/* .carte-face { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 10px; display: flex; justify-content: center; align-items: center; text-align: center; padding: 0.75rem; } */
/* Fichier : styles_projetSES.css */

.carte-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.75rem;
    /* AJOUTEZ CETTE LIGNE CI-DESSOUS */
    pointer-events: none; /* Rend les faces "transparentes" aux clics */
}
.carte-dos { background-color: var(--color-primary); color: white; font-size: 3rem; }
/* .carte-recto { background-color: #ffffff; color: var(--color-text); transform: rotateY(180deg); border: 1px solid #ddd; font-size: 1.1rem; font-weight: 500; } */
/* Fichier : styles_projetSES.css */
.carte-recto {
    background-color: #ffffff;
    color: var(--color-text);
    transform: rotateY(180deg);
    border: 1px solid #ddd;
    font-size: 1.1rem;
    font-weight: 500;
    /* AJOUTÉ : Pour forcer le retour à la ligne si un mot est trop long */
    overflow-wrap: break-word;
}

.carte.trouvee { cursor: default; transform: rotateY(180deg); box-shadow: 0 0 15px 3px var(--color-success); }

.sortable-list { list-style: none; padding: 0.5rem; border: 1px solid #ddd; border-radius: 8px; background: var(--color-bg); }
.sortable-item { padding: 1rem; margin: 0.5rem; background-color: white; border: 1px solid #ccc; border-radius: 5px; cursor: grab; user-select: none; }
.sortable-item.dragging { opacity: 0.5; }

.matching-container { display: flex; gap: 2rem; justify-content: space-around; flex-wrap: wrap; }
.matching-column { flex: 1; min-width: 220px; }
.matching-source.dragging { opacity: 0.5; }
.matching-cible { padding: 1rem; border: 2px dashed #ccc; border-radius: 5px; margin-bottom: 0.5rem; min-height: 40px; }
.matching-cible.drag-over { background-color: #e0f7fa; }
.matching-cible.matched { background-color: #f0fff0; border-style: solid; border-color: var(--color-success); }

.hidden { display: none !important; }

/* ==========================================================================
   BLOC 6 : DESIGN DES BADGES "PRESTIGE"
   ========================================================================== */
.badge-item {
    perspective: 800px;
    transition: all 0.3s ease-out;
    width: 160px;
    text-align: center;
}

.badge-item svg {
    width: 100%;
    height: auto;
    cursor: default; /* Curseur par défaut si non cliquable */
    transform: rotateY(-15deg) rotateZ(-3deg);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.banniere-haut, .ruban-bas { fill: #b0b0b0; transition: fill 0.3s ease; }
.medaille-fond { fill: #f0f0f0; }
.medaille-liseret { fill: none; stroke: #dcdcdc; stroke-width: 8; }
.medaille-texte {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 24px;
    font-weight: 600;
    fill: #a0a0a0;
    text-anchor: middle;
    dominant-baseline: middle;
}

.badge-coche { display: none; }
.badge-titre { font-weight: bold; margin-top: 0.5rem; color: #a0a0a0; transition: color 0.3s ease; }

/* --- ÉTAT DÉBLOQUÉ --- */
.badge-item.debloque svg { cursor: pointer; } /* Le SVG devient cliquable */
.badge-item.debloque .medaille-liseret { stroke: url(#liseret-or); }
.badge-item.debloque .medaille-fond { fill: #ffffff; }
.badge-item.debloque .medaille-texte { fill: var(--color-primary); }
.badge-item.debloque .badge-coche { display: block; }
.badge-item.debloque .badge-titre { color: #333; }

.badge-item.debloque:hover svg {
    transform: translateY(-12px) rotateY(10deg) rotateZ(2deg) scale(1.1);
    filter: url(#ombre-portee-renforcee);
}

/* Couleurs par niveau */
.badge-item.debloque.badge-ruban-novice .banniere-haut,
.badge-item.debloque.badge-ruban-novice .ruban-bas { fill: #1E90FF; }

.badge-item.debloque.badge-ruban-apprenti .banniere-haut,
.badge-item.debloque.badge-ruban-apprenti .ruban-bas { fill: #32CD32; }

.badge-item.debloque.badge-ruban-maitre .banniere-haut,
.badge-item.debloque.badge-ruban-maitre .ruban-bas { fill: #FF4500; }

.badge-item.debloque.badge-ruban-grand-maitre .banniere-haut,
.badge-item.debloque.badge-ruban-grand-maitre .ruban-bas { fill: #BA55D3; }

/* ==========================================================================
   BLOC 7 : VUE CERTIFICATION
   ========================================================================== */
.dashboard-header, .certification-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.domaine-groupe { margin-bottom: 2rem; }
.domaine-groupe h3 { color: var(--color-secondary); border-bottom: 2px solid #eee; padding-bottom: 0.5rem; }
.point-programme { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; margin-bottom: 1rem; padding: 1rem; }
.point-header { display: flex; justify-content: space-between; font-weight: bold; margin-bottom: 0.75rem; }
.progress-bar { width: 100%; height: 8px; background-color: #e0e0e0; border-radius: 4px; margin-bottom: 1rem; }
.progress-bar::before { content: ''; display: block; width: var(--progress, 0%); height: 100%; background-color: var(--color-success); border-radius: 4px; transition: width 0.5s ease; }
.point-exercices { list-style: none; padding-left: 0; }
.point-exercices li { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-top: 1px solid #f0f0f0; }
.point-exercices li.completed { color: #888; text-decoration: line-through; }
.point-exercices button { margin-top: 0; padding: 0.3rem 0.8rem; font-size: 0.8rem; }

/* ==========================================================================
   BLOC 8 : LIEN ADMINISTRATION
   ========================================================================== */
.admin-link-button {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background-color: #6c757d; /* Gris neutre */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.8rem;
    transition: background-color 0.2s;
}

.admin-link-button:hover {
    background-color: #5a6268;
}

/* BLOC 9 : CORRECTIF POUR LES QCM */

/* Style de base pour chaque option de réponse */
.qcm-option {
    margin: 0.5rem 0 0.5rem 5%;
    max-width: 90%;
    padding: 0.75rem;
    border: 2px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    list-style: none; /* Ajouté pour remplacer l'ancien bloc */
}

.qcm-option:hover {
    border-color: var(--color-primary);
    background-color: #f0f8ff;
    transform: translateX(5px);
}

/* Style pour la réponse correcte */
.qcm-option.correct {
    background-color: #dcfce7;
    border-color: #22c55e;
    color: #15803d;
    font-weight: bold;
    transform: scale(1.02);
    cursor: default;
}

/* Style pour la réponse incorrecte */
.qcm-option.incorrect {
    background-color: #fee2e2;
    border-color: #ef4444;
    color: #b91c1c;
    font-weight: bold;
    transform: scale(1.02);
    cursor: default;
}

/* Style pour les options désactivées */
.qcm-option.disabled {
    opacity: 0.6;
    pointer-events: none;
    cursor: default;
}
/* styles_projetSES.css */


.help-link {
    display: block;
    text-align: center;
    /* On ajuste les marges pour un espacement parfait */
    margin-top: 0.5rem; 
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.help-link:hover {
    text-decoration: underline;
}

#help-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#help-modal-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#help-modal-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.help-item {
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 6px;
    background-color: #f9f9f9;
}

.help-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.help-item p {
    margin-bottom: 0.5rem;
}

/* --- CORRECTIF POUR L'EXERCICE D'ORDONNANCEMENT --- */

/* 1. On initialise le compteur sur la liste parente (inchangé). */
.sortable-list {
    counter-reset: ordered-list;
    padding-left: 0;
    list-style-type: none;
}

/* 2. On DÉPLACE l'incrémentation sur l'élément de liste LUI-MÊME. */
/* C'est le changement clé pour que la numérotation fonctionne. */
.sortable-item {
    counter-increment: ordered-list; /* << LA CORRECTION EST ICI */
}

/* 3. Le pseudo-élément ::before ne fait plus qu'AFFICHER le compteur. */
.sortable-item::before {
    /* La ligne "counter-increment" a été retirée d'ici. */
    content: counter(ordered-list) ".";
    
    /* Le style reste le même */
    margin-right: 0.8rem;
    font-weight: bold;
    color: var(--color-primary);
    min-width: 20px;
    display: inline-block;
    text-align: right;
}

/* --- BLOC 10 : STYLE POUR LES IMAGES DANS LES QCM/QUIZ --- */
.qcm-image-container {
    margin-bottom: 1.5rem;
    text-align: center;
}

.qcm-image-container img {
    max-width: 100%;
    max-height: 300px; /* Empêche les images d'être trop grandes */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    object-fit: contain; /* Assure que l'image n'est pas déformée */
}
/* --- BLOC 11 : CONTENEUR PUBLICITAIRE --- */
.ad-container {
    margin: 1.5rem 0;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.ad-container img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Rend le lien du titre non stylé par défaut */
#home-link {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   BLOC 12 : CORRECTIF POUR L'EXERCICE DE CLASSEMENT SUR AXE
   ========================================================================== */

/* Conteneur principal qui aligne les items à classer et l'axe */
.classement-axe-container {
    display: flex;
    gap: 20px;
    align-items: flex-start; /* Aligne les deux blocs en haut */
}

/* Zone de départ pour les items */
.classement-axe-container .dnd-items {
    flex-basis: 30%; /* La zone prend 30% de la largeur */
    min-height: 200px;
    border: 1px dashed #ccc;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

/* Conteneur pour l'axe (labels + ligne + zones) */
.axe-container {
    flex-basis: 70%; /* Le conteneur de l'axe prend 70% */
    display: flex;
    flex-direction: column;
}

/* Étiquettes "min" et "max" de l'axe */
.axe-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    font-weight: bold;
    color: var(--color-primary);
}

/* La ligne noire qui représente l'axe */
.axe-line {
    width: 100%;
    height: 4px;
    background-color: #333;
    margin: 10px 0;
    border-radius: 2px;
}

/* Conteneur pour les zones de dépôt */
.axe-zones {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    width: 100%;
}

/* Style des zones où l'on doit déposer les items */
.drop-zone-axe {
    flex: 1; /* Chaque zone prend une part égale de l'espace */
    min-height: 150px; /* Hauteur minimale pour pouvoir déposer */
    border: 2px dashed #007bff;
    background-color: #f0f8ff;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

/* Style visuel quand on survole une zone de dépôt */
.drop-zone-axe.drag-over {
    background-color: #d0e8ff;
}

/* Style de l'item en cours de déplacement */
.drag-item.dragging {
    opacity: 0.5;
}

/* Feedback visuel pour la validation */
.drag-item.correct {
    border-color: var(--color-success);
    background-color: #e8f5e9;
}
.drag-item.incorrect {
    border-color: var(--color-secondary);
    background-color: #ffebee;
}


/* --- BLOC FINAL POUR LA GRILLE DES CHAPITRES --- */

.chapitre-titre {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-primary);
    cursor: pointer;
    padding: 0.5rem;
    margin-top: 1rem;
    border-bottom: 2px solid #eee; 
}

/* Style de base pour la liste (mobile en premier) */
#liste_points_programme {
    list-style: none;
    padding: 0;
}

/* On ajoute un espace vertical entre les blocs pour la vue mobile */
.chapitre-groupe {
    margin-bottom: 1.5rem; 
}

/* On applique la grille à 2 colonnes uniquement sur les écrans larges */
@media (min-width: 992px) {
    #liste_points_programme {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem; /* Gère l'espace vertical ET horizontal */
    }

    /* On enlève la marge du bas sur grand écran pour éviter un double espacement,
       car la propriété 'gap' s'en occupe déjà. */
    .chapitre-groupe {
        margin-bottom: 0;
    }
}