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

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f5f0e8;
    line-height: 1.4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 60px 40px;
}

.title-section {
    position: relative;
    margin-bottom: 150px;
}

h1 {
    font-size: 2.8em;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    max-width: 900px;
    position: relative;
}

.bracket-left, .bracket-right {
    display: inline-block;
    color: #ff8c00;
    font-size: 1.2em;
    font-weight: bold;
}

.author-info {
    position: absolute;
    right: 0;
    bottom: -80px;
    text-align: right;
    font-size: 0.9em;
    margin: 5px 0;
    opacity: 0;
    animation: fadeIn 1.5s ease-in forwards;
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.nav-item {
    width: 100%;
    padding: 25px 40px;
    height: 75px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: black;
    font-weight: normal;
    font-size: 1.5em;
    text-transform: uppercase;
}

.nav-item:hover {
    opacity: 0.85;
}

.nav-item span {
    position: relative;
    z-index: 1;
}

.article {
    background-color: #ff8c00;
    position: relative;
}

.article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #ffb347 20%, transparent 20%);
    background-size: 30px 30px;
    background-position: 0 -5px;
    opacity: 1;
}

/* ✅ AJOUTEZ ICI */
/* Centrage des points pour la page Interview */
.interview-page .article::before {
    background-position: 0 0;  /* Testez cette valeur */
}

/* Centrage des points pour la page Étude de cas */
.etude-page .article::before {
    background-position: 0 0;  /* Testez cette valeur */
}

.article-page .article::before {
    background-position: 0 4px;
}

.interview {
    background-color: #4CAF50;
    position: relative;
}

.interview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 8px,
            #2d7a2f 8px,
            #2d7a2f 25px,
            transparent 25px,
            transparent 33px
        );
    opacity: 1;
}

.etude {
    background-color: #9575cd;
    position: relative;
}

.etude::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(to right, transparent 45%, #7559a3 45%, #7559a3 55%, transparent 55%),
        linear-gradient(to bottom, transparent 45%, #7559a3 45%, #7559a3 55%, transparent 55%);
    background-size: 40px 40px;
    opacity: 1;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    
    .container {
        padding: 40px 20px;
    }
    
    .nav-item {
        padding: 20px;
        font-size: 1em;
    }
}

/* STYLE DE L'ARTICLE */

.article-page {
    background-color: #f5f0e8;
}

.top-navigation {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.top-nav-item {
    width: 100%;
    padding: 20px 40px;
    height: 65px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: black;
    font-weight: normal;
    font-size: 1.5em;
    text-transform: uppercase;
}

.top-nav-item:hover {
    opacity: 0.85;
}

.top-nav-item span {
    position: relative;
    z-index: 1;
}

.article-container {
    width: 100%;
    margin: 60px 0;
    padding: 0 20px;
    position: relative;
}

.article-title {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 2.7em;
    text-align: left;
    line-height: 1.3;
    margin-bottom: 30px;
    margin-left: 30px;
    text-transform: uppercase;
    color: #000;
    max-width: 900px;
}

.abstract-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 100px;
    max-width: 750px;
    margin-right: 0;
    margin-left: auto;
    padding-right: 40px;
   margin-top: 80px;    
}

.abstract-label {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1em;
    text-transform: uppercase;
    color: #ff8c00;
    white-space: nowrap;
    margin: 0;
}

.introduction-section {
    max-width: 600px;
    margin-left: 20px;
    margin-right: auto;
    margin-bottom: 100px;
}

.intro-label {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1em;
    text-transform: uppercase;
    color: #ff8c00;
    margin-bottom: 15px;
}

.article-question {
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-size: 1.2em;
    font-style: italic;
    text-align: left;
    line-height: 1.5;
    color: #000;
    max-width: 600px;
    margin-top: -60px;
    margin-left: 20px;
    margin-right: auto;
    border-left: 4px solid #ff8c00;
    padding-left: 20px;
    padding-right: 20px;
}

.article-subtitle {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1.8em;
    text-transform: none;
    color: #000;
    margin-top: 80px;               /* ✅ Augmenté de 40px à 80px */
    margin-bottom: 40px;            /* ✅ Augmenté de 20px à 40px */
}

.article-subtitle .highlight {
    color: #f28500;
}

.article-block {
    position: relative;
    max-width: 900px;
    padding-left: 20px;
    margin-left: 20px;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.article-main {
    line-height: 1.4;
   text-align: justify;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.two-columns .article-intro {
    margin: 0;
    text-align: justify;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
    line-height: 1.4;
}

.article-intro {
    text-align: justify;
    line-height: 1.4;
}

.article-image {
    max-width: 900px;
    margin: 40px auto 0 auto;
    margin-left: 200px;
}

.article-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

.article-notes-right {
    position: absolute;
    right: 40px;
    top: 1450px;    
    width: 300px;
    border-left: 2px solid #ff8c00;
    padding-left: 15px;
    padding-right: 20px;
    font-size: 0.9em;
    line-height: 1.4;
    text-align: left;
    margin-left: 40px;
}

.article-notes-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-notes-right li {
    margin-bottom: 15px;
}

.article-notes-right sup {
    font-size: 0.8em;
    vertical-align: super;
}

.article-notes-right-2 {
    position: absolute;
    right: 40px;
    top: 2003px;
    width: 300px;
    border-left: 2px solid #ff8c00;
    padding-left: 15px;
    padding-right: 20px;
    font-size: 0.9em;
    line-height: 1.4;
    text-align: left;
    margin-left: 40px;
}

.article-notes-right-2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-notes-right-2 li {
    margin-bottom: 15px;
}

.article-notes-right-2 sup {
    font-size: 0.8em;
    vertical-align: super;
}

.article-notes-right-3 {
    position: absolute;
    right: 40px;
    top: 2130px;
    width: 300px;
    border-left: 2px solid #ff8c00;
    padding-left: 15px;
    padding-right: 20px;
    font-size: 0.9em;
    line-height: 1.4;
    text-align: left;
    margin-left: 40px;
}

.article-notes-right-3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-notes-right-3 li {
    margin-bottom: 15px;
}

.article-notes-right-3 sup {
    font-size: 0.8em;
    vertical-align: super;
}

.article-notes-right-4 {
    position: absolute;
    right: 40px;
    top: 3000px;
    width: 300px;
    border-left: 2px solid #ff8c00;
    padding-left: 15px;
    padding-right: 20px;
    font-size: 0.9em;
    line-height: 1.4;
    text-align: left;
    margin-left: 40px;
}

.article-notes-right-4 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-notes-right-4 li {
    margin-bottom: 15px;
}

.article-notes-right-4 sup {
    font-size: 0.8em;
    vertical-align: super;
}

.article-notes-right-5 {
    position: absolute;
    right: 40px;
    top: 3645px;
    width: 300px;
    border-left: 2px solid #ff8c00;
    padding-left: 15px;
    padding-right: 20px;
    font-size: 0.9em;
    line-height: 1.4;
    text-align: left;
    margin-left: 40px;
}

.article-notes-right-5 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-notes-right-5 li {
    margin-bottom: 15px;
}

.article-notes-right-5 sup {
    font-size: 0.8em;
    vertical-align: super;
}

.article-notes-right-6 {
    position: absolute;
    right: 40px;
    top: 3680px;
    width: 300px;
    border-left: 2px solid #ff8c00;
    padding-left: 15px;
    padding-right: 20px;
    font-size: 0.9em;
    line-height: 1.4;
    text-align: left;
    margin-left: 40px;
}

.article-notes-right-6 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-notes-right-6 li {
    margin-bottom: 15px;
}

.article-notes-right-6 sup {
    font-size: 0.8em;
    vertical-align: super;
}

.article-intro sup,
.article-main sup {
    font-size: 0.7em;
}

.article-intro sup {
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 2px 4px;
    border-radius: 3px;
}

.article-intro sup:hover {
    background-color: #ffb347;
}

.text-block sup {
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 2px 4px;
    border-radius: 3px;
}

.text-block sup:hover {
    background-color: #ffb347;
}

.note-ref {
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 2px 4px;
    border-radius: 3px;
}

.note-ref:hover {
    background-color: #ffb347;
}

.article-statement {
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-size: 1.2em;
    font-style: italic;
    text-align: left;
    line-height: 1.5;
    color: #000;
    max-width: 600px;
    margin-top: 150px;              /* ✅ Ajoutez cette ligne */
    margin-bottom: 100px;           /* ✅ Ajoutez cette ligne */
    margin-left: 40px;
    margin-right: auto;
    border-left: 4px solid #ff8c00;
    padding-left: 20px;
    padding-right: 20px;
}


.content-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0;
    padding-left: 20px;
    margin-left: 20px;
    margin-top: 20px;
}

.text-block {
    flex: 1;
    max-width: 400px;
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.4;
    text-align: justify;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 20px;
}

.img-container {
    display: flex;
    flex-direction: column;
    width: 350px;
    flex-shrink: 0;
    gap: 10px;
    height: 600px;
    overflow: hidden;
    margin-left: 0;
    margin-top: 0;
}

.img-container img {
    flex: 1;
    min-height: 0;
    object-fit: cover;
    transition: flex 0.5s ease;
    cursor: pointer;
    border-radius: 5px;
}

.img-container img:hover {
    flex: 5;
}

.article-image-carousel {
    max-width: 900px;
    margin-top: -20px;              /* ✅ Séparé pour remonter l'image */
    margin-bottom: 20px;
    margin-left: 20px;
    padding-left: 22px;
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 600px;
    overflow: hidden;
    border-radius: 5px;
    background-color: #f5f0e8;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-dots {
    text-align: center;
    margin-top: -20px;                /* ✅ Positif, pas négatif */
    width: 100%;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #ff8c00;
}

.question-graphisme {
  text-align: left;
  font-style: italic;
  padding-left: 40px;   /* ← au lieu de margin-left */
  font-size: 1.2rem;
  line-height: 1.4;
  text-decoration-line: underline;
  text-decoration-color: orange;
}

.conclusion-section {
    max-width: 600px;
    margin-left: 40px;
    margin-right: auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

.conclusion-label {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1em;
    text-transform: uppercase;
    color: #ff8c00;
    margin-bottom: 15px;
}

.article-conclusion {
    text-align: justify;
    line-height: 1.4;
}

/* BOUTON BIBLIOGRAPHIE */
.bibliography-button {
    position: relative;
    margin: 100px auto 0 auto;
    width: 350px;
    background-color: #ff8c00;
    color: #000;
    padding: 20px 40px;
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-size: 1.3em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: transform 0.5s ease;
}

.bibliography-button.active {
    transform: translateY(-500px);
}

/* CONTENEUR BIBLIOGRAPHIE */
.bibliography-container {
    position: relative;
    margin: 100px 0 0 auto;  /* ✅ Changé de "auto 0 auto" à "0 0 auto" */
    margin-right: 40px;  
    width: 350px;
}

/* BOUTON BIBLIOGRAPHIE */
.bibliography-button {
    position: relative;
    width: 100%;
    background-color: #ff8c00;
    color: #000;
    padding: 20px 40px;
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-size: 1.3em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: transform 0.5s ease;
}

.bibliography-button.active {
    transform: translateY(-500px);
}

/* CARTE BIBLIOGRAPHIE */
.bibliography-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #fffef0;
    border-radius: 10px 10px 0 0;
    padding: 0 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    z-index: 1;
    transition: height 0.5s ease, padding 0.5s ease;
}

.bibliography-card.active {
    height: 500px;
    padding: 20px 30px 30px 30px;
}

.bibliography-section {
    opacity: 0;
    transition: opacity 0.3s ease 0.3s;
}

.bibliography-card.active .bibliography-section {
    opacity: 1;
}

.bibliography-category {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1em;
    color: #000;
    margin-top: 15px;
    margin-bottom: 8px;
    text-decoration: underline;
}

.bibliography-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.bibliography-list li {
    margin-bottom: 8px;
    line-height: 1.4;
    text-align: left;
    font-size: 0.85em;
}

.bibliography-text {
    line-height: 1.4;
    text-align: left;
    margin-bottom: 15px;
    font-size: 0.85em;
}

.bibliography-list a,
.bibliography-text a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bibliography-list a:hover,
.bibliography-text a:hover {
    color: #ff8c00;
    text-decoration: underline;
}

.bibliography-list cite {
    font-style: italic;
}
/* STYLE DE L'ÉTUDE DE CAS */

.etude-page {
    background-color: #f5f0e8;
}

.etude-container {
    width: 100%;
    max-width: 1200px;
    margin: 60px 0;
    padding: 0 40px;
}

.etude-title {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 2.7em;
    text-align: left;
    line-height: 1.3;
    margin-bottom: 40px;
    margin-left: 0px;
    text-transform: uppercase;
    color: #000;
    max-width: 900px;
}

.etude-content {
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.4;
    color: #000;
}

.etude-content p {
    margin-bottom: 25px;
    text-align: justify;
}

/* CARROUSEL KIT ÉTUDE DE CAS */

.kit-carousel {
    max-width: 900px;
    margin: 60px auto 40px auto;
    margin-left: 20px;
    padding-left: 22px;
    position: relative;
}

.kit-carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 600px;
    overflow: hidden;
    border-radius: 5px;
    background-color: #f5f0e8;
}

.kit-carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;              /* ✅ Cover au lieu de contain */
    object-position: center;        /* ✅ Centre l'image */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.kit-carousel-slide.active {
    opacity: 1;
}

/* STYLE DE L'INTERVIEW */

.interview-page {
    background-color: #f5f0e8;
}

.interview-container {
  position: relative; 
    width: 100%;
    max-width: 1500px;          /* ✅ Plus large pour permettre l'alignement à droite */
    margin: 60px 0;             /* ✅ Enlevé "auto" qui centre */
    padding: 0 20px;
}

.interview-title {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 2.7em;
    text-align: left;
    line-height: 1.3;
    margin-bottom: 40px;
    margin-left: 20px;
    text-transform: uppercase;
    color: #000;
    max-width: 900px;
}

.interview-intro {
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 100px;
    color: #000;
    max-width: 750px;
    margin-right: 40px;         /* ✅ Marge droite au lieu de 0 */
    margin-left: 930px;
    padding-right: 0;           /* ✅ Enlevé le padding-right */
}

.interview-intro-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 100px;
    max-width: 750px;
    margin-right: 0;
    margin-left: auto;
    padding-right: 40px;
}

.interview-label {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1em;
    text-transform: uppercase;
    color: #4CAF50;
    white-space: nowrap;
    margin: 0;
}

.interview-intro {
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6;
    text-align: justify;
    color: #000;
    margin: 0;
    flex: 1;
}

/* Questions avec ligne orange à gauche */
.interview-question {
    margin: 40px 0 20px 0;
    display: flex;
    gap: 20px;
    max-width: 1000px;           /* ✅ Limitez la largeur */
    margin-left: 40px;          /* ✅ Ajoutez une marge gauche */
}
.question-marker {
    border-left: 4px solid #4CAF50;
    padding-left: 15px;
}

.interviewer-name {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    color: #4CAF50;
}

.question-content {
    flex: 1;
}

.question-content p {
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
    color: #000;
}

/* Réponses */
.interview-answer {
    margin: 20px 0 40px 40px;
    max-width: 800px;           /* ✅ Limitez la largeur */
}
.answer-name {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    color: #000;
    display: block;
    margin-bottom: 10px;
}

.interview-answer p {
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 15px;
    color: #000;
}

/* Image Aurélie positionnée sous la présentation */
.interview-image {
    position: absolute;         /* ✅ Absolute au lieu de fixed */
    right: 80px;
    top: 250px;                 /* ✅ Ajustez selon la hauteur du titre */
    width: 200px;
    z-index: 10;
    animation: sway 3s ease-in-out infinite;
}

.interview-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Animation de balancement */
@keyframes sway {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(-10px) rotate(-2deg);
    }
    75% {
        transform: translateX(10px) rotate(2deg);
    }
}


/* ========== RESPONSIVE DESIGN ========== */

/* TABLETTES (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 80px 30px 40px 30px;
    }
    
    h1 {
        font-size: 2.2em;
    }
    
    .article-title,
    .interview-title,
    .etude-title {
        font-size: 2em;
        margin-left: 20px;
    }
    
    /* Navigation */
    .nav-item,
    .top-nav-item {
        font-size: 1.2em;
        padding: 20px 30px;
    }
    
    /* Notes de bas de page - cache sur tablette */
    .article-notes-right,
    .article-notes-right-2,
    .article-notes-right-3,
    .article-notes-right-4,
    .article-notes-right-5,
    .article-notes-right-6 {
        display: none;
    }
    
    /* Flex content - passe en colonne */
    .content-flex {
        flex-direction: column;
        gap: 20px;
        margin-left: 0;
        padding-left: 20px;
    }
    
    .text-block {
        max-width: 100%;
    }
    
    .img-container {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    /* Carrousels */
    .article-image-carousel,
    .kit-carousel {
        margin-left: 0;
        padding-left: 20px;
    }
    
    .carousel-container,
    .kit-carousel-container {
        max-width: 100%;
        height: 400px;
    }
    
    /* Interview - image fixe */
    .interview-image {
        position: static;
        width: 150px;
        margin: 20px auto;
    }
    
    /* Bibliographie */
    .bibliography-container {
        margin-right: 20px;
        width: 300px;
    }
}

/* MOBILE (max 768px) */
@media (max-width: 768px) {
    /* Typographie */
    h1 {
        font-size: 1.8em;
    }
    
    .article-title,
    .interview-title,
    .etude-title {
        font-size: 1.5em;
        margin-left: 10px;
        max-width: 100%;
    }
    
    /* Container */
    .container {
        padding: 60px 20px 40px 20px;
    }
    
    .article-container,
    .interview-container,
    .etude-container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .nav-item,
    .top-nav-item {
        font-size: 1em;
        padding: 15px 20px;
        height: auto;
    }
    
    /* Abstract / Présentation */
    .abstract-section,
    .interview-intro-section {
        flex-direction: column;
        max-width: 100%;
        padding-right: 0;
        margin-left: 0;
        gap: 10px;
    }
    
    .abstract-label,
    .interview-label {
        font-size: 0.9em;
    }
    
    /* Introduction / Conclusion */
    .introduction-section,
    .conclusion-section {
        max-width: 100%;
        margin-left: 0;
    }
    
    /* Article blocks */
    .article-block {
        max-width: 100%;
        padding-left: 10px;
        margin-left: 10px;
    }
    
    /* Two columns - passe en 1 colonne */
    .two-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Questions / Statements */
    .article-question,
    .article-statement {
        max-width: 100%;
        margin-left: 20px;
        font-size: 1em;
        padding-left: 15px;
    }
    
    /* Notes - cachées sur mobile */
    .article-notes-right,
    .article-notes-right-2,
    .article-notes-right-3,
    .article-notes-right-4,
    .article-notes-right-5,
    .article-notes-right-6 {
        display: none;
    }
    
    /* Images */
    .article-image {
        margin-left: 0;
        max-width: 100%;
    }
    
    .article-image img {
        max-width: 100%;
    }
    
    /* Flex content */
    .content-flex {
        flex-direction: column;
        margin-left: 0;
        padding-left: 10px;
    }
    
    .text-block {
        max-width: 100%;
    }
    
    .img-container {
        width: 100%;
        height: auto;
        flex-direction: row;
        overflow-x: auto;
    }
    
    .img-container img {
        min-width: 150px;
    }
    
    /* Carrousels */
    .article-image-carousel,
    .kit-carousel {
        margin-left: 0;
        padding-left: 10px;
        max-width: 100%;
    }
    
    .carousel-container,
    .kit-carousel-container {
        max-width: 100%;
        height: 300px;
    }
    
    /* Interview */
    .interview-question {
        flex-direction: column;
        gap: 10px;
        margin-left: 20px;
        max-width: 100%;
    }
    
    .interview-answer {
        margin-left: 20px;
        max-width: 100%;
    }
    
    .interview-image {
        position: static;
        width: 120px;
        margin: 20px auto;
        right: auto;
        top: auto;
    }
    
    /* Bibliographie - pleine largeur */
    .bibliography-container {
        width: 90%;
        margin: 60px auto 0 auto;
        margin-right: 5%;
    }
    
    .bibliography-button {
        padding: 15px 25px;
        font-size: 1em;
    }
    
    .bibliography-card.active {
        height: 400px;
    }
    
    /* Étude de cas */
    .etude-content p {
        font-size: 0.95em;
    }
}

/* TRÈS PETIT MOBILE (max 480px) */
@media (max-width: 480px) {
    h1,
    .article-title,
    .interview-title,
    .etude-title {
        font-size: 1.3em;
    }
    
    .nav-item,
    .top-nav-item {
        font-size: 0.9em;
        padding: 12px 15px;
    }
    
    .article-subtitle {
        font-size: 1.3em;
    }
    
    .carousel-container,
    .kit-carousel-container {
        height: 250px;
    }
    
    .bibliography-container {
        width: 95%;
    }
}