/* --- FEUILLE DE STYLES POUR LA PAGE DE L'ARTICLE --- */

/* --- DÉBUT LIEN AVEC TYPOGRAPHIE ALL ROUND GOTHIC D'ADOBE FONTS --- */
@import url("https://use.typekit.net/ytp2lyt.css");
/* --- FIN LIEN AVEC TYPOGRAPHIE ALL ROUND GOTHIC D'ADOBE FONTS --- */

* {margin: 0;}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

/*[id] {
    /*scroll-margin-top: 150px;
    scroll-padding-top: 180px;*/

/* --- DÉBUT DU CORPS DE LA PAGE --- */
body {
    margin: 0;
    padding: 0;
    font-family: "all-round-gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #ffffff;
    color: #2d2d2d;
}

h1 {
    font-family: "all-round-gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-top: 64px;
    margin-bottom: 40px;
    color: #2d2d2d;
}

h2 {
    font-family: "all-round-gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d2d2d;
}

.orange {
    color: #ff7b00;
}

h3 {
    font-family: "all-round-gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d2d2d;
}

h4 {
    font-family: "all-round-gothic", sans-serif;
    opacity: 0.8;
}

p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.4;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

ul li {
    margin-bottom: 16px;
    font-size: 16px;
}

.biblio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 48px;
}

.biblio-block {
    background-color: #e7e7e7;
    padding: 32px 40px;
    border-radius: 24px;
    /*border: 2px solid #2d2d2d;*/

    height: auto;
    min-height: unset;
}

.biblio-block.full-width {
    grid-column: 1 / -1;
}


article {
    margin-top: 100px;
}

sup {
        font-size: 0.7em;
        line-height: 0;
        vertical-align: baseline;
        position: relative;
        top: -0.6em;
        color: #ff7b00;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
    
}

.marque {
    font-size: 0.7em;
    line-height: 0;
    vertical-align: baseline;
    position: relative;
    top: -0.6em;
    font-weight: 600;
    color: #2d2d2d;
}

/* --- FIN DU CORPS DE LA PAGE --- */

/* --- DÉBUT BARRE DE NAVIGATION --- */

.logo-rotating {
    position: fixed;
    bottom: 40px;
    right: 40px;
    max-width: 60px;
    height: 60px;
    transition: transform 0.1s linear;
    z-index: 1000;
}

.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    background: #fff;
    border: 2px solid #2d2d2d;
    border-radius: 100px;
    padding: 12px 32px;
    width: calc(100vw - 48px); 
    box-sizing: border-box;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* --- FIN BARRE DE NAVIGATION --- */

/* MENU DÉROULANT */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 3000;
    position: relative;

}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ff7b00;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* FIN MENU DÉROULANT */

/* --- DÉBUT DU TEXTE DU HEADER --- */

.hero {
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 72px;
    gap: 48px;
}

.hero-inner {
    max-width: 1136px;
    margin: 0 auto;
    padding: 0 72px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
    align-items: center;
}
.hero-text {
    grid-column: span 6;
    gap: 48px;
}

.hero-text h1 {
    font-size: 40px;
    margin-bottom: 16px;
    gap: 48px;
}

.hero-text .subtext {
    font-size: 18px;
    margin-bottom: 24px;
    color: #2d2d2d;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    grid-column: span 6;
}

.hero-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

/* --- FIN DU TEXTE DU HEADER --- */

/* --- DÉBUT BOUTONS --- */

.btn {
    padding: 6px 14px;
    background-color: #2d2d2d;
    color: #ffffff;
    border-radius: 0px;
    font-weight: 600;
    transition: 0.2s ease-in-out;
    border-radius: 100px;
}

.btn:hover {
    background-color: #ffffff;
    color: #2d2d2d;
    border: 2px solid #2d2d2d;
}

.btn3 {
    padding: 6px 14px;
    background-color: #ffffff;
    color: #2d2d2d;
    border-radius: 0px;
    font-weight: 600;
    transition: 0.2s ease-in-out;
    border-radius: 100px;
    border: 2px solid #2d2d2d;
    cursor: pointer;
    font-weight: 700;
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.btn3:hover {
    background-color: #2d2d2d;
    color: #ffffff;
}

.biblio-section {
    display: none;
}

.biblio-section.active {
    display: block;
}

.btn3.active {
    opacity: 1;
}

.btn2 {
    text-decoration: none;
    display: inline-block;
    background-color: transparent;
    color: #2d2d2d;
}

.btn2:hover {
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, #ff7b00, #a6df00, #74dfff, #ffa6db) 1;
    background-color: transparent;
    color: #2d2d2d;
}

.btn::after, .btn2::after {
    display: none !important;
    content: none !important;
}

.btn, .btn2 {
    text-decoration: none !important;
}

.btn:hover::after, .btn2:hover::after {
    display: none !important;
}

/* --- FIN BOUTONS --- */

/* Notes à gauche */

.article-with-notes {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
}

.article-with-notes .main-text {
    flex: 1;
}

.article-with-notes .footnotes {
    order: -1;  
    margin-top: 0;
    width: 250px;
    font-size: 16px;
    color: rgb(45, 45, 45);
    position: relative;
}

.article-with-notes .footnotes::after {
    content: '';
    position: absolute;
    top: 0;
    right: -28px;
    width: 2px;
    height: 100%;
    background-color: #2d2d2d;
    opacity: 0.1;
}
  
  .note-item {
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    display: inline-block;
    padding: 2px 4px;
    border-radius: 6px;
  }
  
  .footnotes li {
    transition: all 0.3s ease;
}

.footnotes li.bold-highlight {
    font-weight: 700;
}

.inline-image {
    width: 100%;
    margin: 32px 0;
    break-inside: avoid;
}

.inline-image img {
    max-width: 66%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.inline-image-article {
    display: table;
    width: 66%;
    margin: 32px 0;
    break-inside: avoid;
}

.inline-image-article img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.inline-image-article figcaption {
    display: table-caption;
    caption-side: bottom;
    margin-top: 16px;
    font-size: 16px;
    color: #2d2d2d;
    text-align: left;
}

.mimi-koloa {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.mimi-koloa img {
    width: auto;
    height: 66px;
    max-width: 66%;
    border-radius: 8px;
    object-fit: contain;
    border-radius: 8px;
    object-fit: contain;
}

.mimi-koloa figcaption {
    margin-left: 62px;
    width: calc(100% - 62px);
    text-align: left;
    font-size: 16px;
    color: #2d2d2d;
    line-height: 1.4;
    margin-top: 12px;
}

.image-center {
    grid-column: span 12;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 80px 0;
}

.image-center img {
    max-width: 66%;
    height: auto;
    display: block;
}

.image-center figcaption {
    width: 100%;
    max-width: 66%;
    margin-top: 16px;
    font-size: 16px;
    color: #555;
    text-align: left;
}

/* Fin notes à gauche */

details.notes summary {
    font-family: VT323;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #2d2d2d;
    list-style: none;
}

details.notes summary::-webkit-details-marker {
    display: none;
}

details.notes summary::after {
    content: "↓";
    font-size: 14px;
    margin-left: 8px;
    margin-top: 16px;
    display: inline-block;
    transition: transform 0.3s ease;
}

details.notes[open] summary::after {
    transform: rotate(-90deg);
}

/* --- DÉBUT INTERVIEW --- */

.avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    flex-shrink: 0;
    object-fit: contain;
}

.julie {
    color: #ff7b00;
}

.question {
    font-weight: 700;
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.question img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    max-width: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.reponse {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
    border-radius: 8px;
}

.reponse img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    max-width: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.reponse div {
    flex: 1;
}

.reponse strong {
    color: #2d2d2d;
    font-weight: 700;
    display: inline;
    margin-bottom: 0;
}

.reponse p {
    margin: 0;
}

/* --- FIN INTERVIEW --- */
article a {
    color: #2d2d2d;
    text-decoration: none;
    border-bottom : 2px solid #ff7b00;
    transition: border-color 0.3s ease;
}

article a:hover {
    border-bottom-color: transparent;
    color: #2d2d2d;
}

/* Liens dans la bibliographie */
.bibliographie a {
    color: #2d2d2d;
    text-decoration: none;
    border-bottom: 2px solid #ff7b00;
    transition: border-color 0.3s ease;
}

.bibliographie a:hover {
    border-bottom-color: transparent;
    color: #2d2d2d;
}
/* --- DÉBUT DES LIENS HYPERTEXTE --- */
article a {
    color: #2d2d2d;
    text-decoration: none;
    position: relative;
}

article a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #ff7b00;
    transition: opacity 0.3s ease;
    opacity: 1;
}

article a:hover::after {
    opacity: 0;
}

a {
    color: #2d2d2d;
    text-decoration: none;
    position: relative; 
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #ff7b00;
    transition: opacity 0.3s ease;
    opacity: 1;
}

a:hover::after {
    opacity: 0;
}

.dropdown-content a::after,
.nav-links a::after {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #ff7b00, #a6df00, #74dfff, #ffa6db);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.dropdown-content a::after {
    content: '';
    display: block;
    height: 2px;
    width: 60%;
    margin: 4px auto 0;
    background: linear-gradient(to right, #ff7b00, #a6df00, #74dfff, #ffa6db);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    opacity: 1 !important;
}

.nav-links a {
    position: relative;
}

.dropdown-content a:hover::after {
    transform: scaleX(1);
    opacity: 1 !important; /* <-- Ajout */
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 20%;
    top: 28px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 40%;
    height: 2px;
    background: linear-gradient(to right, #ff7b00, #a6df00, #74dfff, #ffa6db);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: translateX(-30%) scaleX(1);
}

/* --- FIN DES LIENS HYPERTEXTE --- */

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 2px solid #2d2d2d;
    border-radius: 25px;
    min-width: 160px;
    text-align: center;
    z-index: 9999;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    margin: 4px 0;
    border-radius: 12px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a::after {
    content: '';
    display: block;
    height: 2px;
    width: 60%;
    margin: 4px auto 0;
    background: linear-gradient(to right, #ff7b00, #a6df00, #74dfff, #ffa6db);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.dropdown-content a:hover::after {
    transform: scaleX(1);
}

.dropdown-content a:hover {
    background-color: transparent;
    color: #2d2d2d;
}

.nav-links a, 
.dropdown-content a {
    color: #2d2d2d !important;
    text-decoration: none;
}

.nav-links a:hover, 
.dropdown-content a:hover {
    color: #2d2d2d !important;
    background-color: transparent !important;
}

/* --- DÉBUT CONTENEUR PRINCIPAL --- */
.container {
    max-width: 1136px;
    margin: 0 auto;
    padding: 0 72px;
}

.grid-composition {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 48px;
    padding: 0;
    position: relative;
}
/* --- FIN CONTENEUR PRINCIPAL --- */


.note {
    text-decoration: none; 
    font-size: 12px;
    vertical-align: super;
    font-weight: 700;
    color: #ff7b00;
}

.decoupe {
    column-count: 2;
    column-gap: 48px;
}

.decoupe > h2,
.decoupe > ul {
    break-inside: avoid;
    display: block;
    margin-bottom: 16px;
}

p { 
    margin-bottom: 24px; 
    line-height: 1.4;
}

hr { 
    grid-column: span 12; 
    border: 0; 
    height: 2px;
    background-color: #ff7b00;
    width: 80%;
    /*margin: 80px auto 0 auto;*/
    margin: 0 auto 0 auto;
}
.decal {
    height: 80px;
}

.biblio-section ul {
    list-style: none;
    padding-left: 0;
}

.biblio-section ul li {
    position: relative;
    padding-left: 20px;
}

.biblio-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    transform: none;
    width: 10px;               
    height: 10px;              
    background-image: url('../img/puce.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
}


/* --- DÉBUT ÉLÉMENTS DE LA GRILLE DE COMPOSITION - GRILLE DE 12 COLONNES --- */
.item {
        padding: 0;
        position: relative;
        z-index: 5;
        /*overflow: hidden;*/
    }

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- DÉBUT LÉGENDE D'IMAGE --- */
.legende {
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.legende img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.legende figcaption {
    border-radius: 0 0 8px 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(255, 123, 0, 0.8);
    color: #eae3e0;
    padding: 8px;
    font-weight: 300;
    font-size: 16px; 
    text-align: center;
}
/* --- FIN LÉGENDE D'IMAGE --- */

/* --- DÉBUT ÉLÉMENTS DE LA GRILLE DE COMPOSITION - GRILLE DE 12 COLONNES --- */
.header { grid-column: span 12; text-align: center; }
.full-img { grid-column: span 12; height: 300px; padding: 0; border: none; }
.text-8col { grid-column: span 8; }
.text-6col { grid-column: span 6; }
.text-12col { grid-column: span 12; }
.side-img {     grid-column: span 6;
    width: 90%;
    padding: 0 24px;
    border: none;
    align-items: center;
    align-self: center; }

        .video-half {
            grid-column: span 6;
            padding: 0;
            overflow: hidden;
            border: none;
            background-color: transparent;
        }
        
        .video-half video {
            width: 100%;
            height: 100%;
        }

        .item.video-half {
            border: none;
            outline: none;
            box-shadow: none;
        }

        .text-half {
            grid-column: span 6;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0;
        }
.bottom-img { grid-column: span 4; padding: 0; border: none; height: 200px; }
.card { grid-column: span 4; }

.bibliographie.item {
    margin-top: 180px; 
}

.article-with-notes .footnotes.biblio-footnotes {
    position: -webkit-sticky; 
    position: sticky;
    top: 130px;
    align-self: flex-start;
    height: auto;
    z-index: 100;
    overflow: visible;
}

.grid-composition {
    overflow: visible !important;
}
/* --- FIN ÉLÉMENTS DE LA GRILLE DE COMPOSITION - GRILLE DE 12 COLONNES --- */

/* --- DÉBUT FOOTER --- */

.footer-section ul li a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #fff;
        font-size: 16px;
        padding-left: 0;
        margin: 0;
    }
    
.footer-section ul li a:hover {
        color: #ff7b00;
    }
    
.footer-section ul li a img {
        width: 24px;
        height: 24px;
    }

.footer-video {
        width: 100%;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }
    
.footer-video video {
        width: 100%;
        max-width: 1200px;
        height: auto;
        object-fit: cover;
        display: block;
    }
footer {
    background-color: #2d2d2d;
    padding: 40px 0;
    color: #ffffff;
}

.footer-container {
    max-width: 1136px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
}

.footer-section {     grid-column: span 4; }
.footer-section h4 {     padding-bottom: 8px;
    margin-bottom: 16px;
    color: #fff;
    background-image: linear-gradient(to right, #ff7b00, #a6df00, #74dfff, #ffa6db);
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: bottom;}

    footer a::after {
        display: none !important;
        content: none !important;
    }
    
    footer a {
        text-decoration: none !important;
    }
    footer a:hover::after {
        display: none !important;
    }
    
    footer a:hover {
        text-decoration: none !important;
    }


/* --- FIN FOOTER --- */

/* --- DÉBUT POINTS DE RUPTURE POUR MOBILE EN DESSOUS DE 768 PIXELS --- */
@media (max-width: 768px) {

    *,
*::before,
*::after {
    box-sizing: border-box;
}

    .bibliographie.item {
        padding-top: 180px !important;
        width: 100% !important;
    }

    .video-half, .inline-image-article, .image-center {
        width: 100% !important;
        grid-column: span 4 !important;
        margin: 20px 0 !important;
    }

    .inline-image-article img, .image-center img {
        max-width: 100% !important;
        width: 100% !important;
    }

    .image-center img,
    .image-center figcaption {
        max-width: 100%;
        width: 100%;
    }

    p {
        width: 100% !important;
        max-width: 100% !important;
    }

    .article-with-notes {
        display: block !important;
    }

    .article-with-notes .footnotes {
        width: 100% !important;
        max-width: 100% !important;
        order: 1;
        margin: 30px 0 !important;
        padding: 20px 0 !important;
        border-top: 2px solid #ff7b00;
        position: static !important;
    }

    .article-with-notes .footnotes::after {
        display: none !important;
    }

    .text-12col, .text-8col, .text-6col, .text-half, .main-text {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        padding: 0 !important;
        margin: 0 0 20px 0 !important;
    }

    .container { 
        width: 100% !important;
        padding: 0 24px !important;
        box-sizing: border-box !important;
        display: block !important;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-links {
        border: 2px solid #2d2d2d;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 12px 0;
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        border-radius: 16px;
        width: 80%;
        text-align: center;
        transition: max-height 0.3s ease-in-out;
        overflow: hidden;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links > a,
    .nav-links > .dropdown > a {
        font-weight: 700;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown .dropdown-content {
        display: none;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }

.dropdown-content.show {
        display: block;
    }

    .nav-links.active .dropdown .dropdown-content {
        border-radius: 0;
        margin: 0;          
        padding: 8px 0;          
        border: none;
    }
    .container, .hero-inner, .footer-container { 
        padding-left: 24px !important; 
        padding-right: 24px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .header, .full-img, .text-8col, .text-6col,.text-12col,.side-img, .video, .bottom-img, .card { grid-column: span 4; }
    .hero {
        min-height: auto;
        padding: 120px 0 40px;
    }
    
    .hero-inner {
        display: flex;
        flex-direction: column;
        padding: 0 24px !important;
        text-align: center;
    }

    .hero-text {
        grid-column: auto;
        padding: 0;
    }

    .hero-text h1 {
        font-size: 40px;
        line-height: 1;
    }

    .hero-text .subtext {
        font-size: 16px;
    }

    .hero-image {
        order: -1;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        font-size: 16px;
    }
    .logo { grid-column: span 4; text-align: center; font-size: 0;}
    .logo img {
        height: 30px;
    }
    .logo-rotating {
        position: fixed;
        bottom: 40px;
        right: 60px;
        width: 60px;
        height: 60px;
        z-index: 1000;
    }
    .btn-contact {
        display: none;
    }

    .decoupe { 
        column-count: 1 !important;
    }

.container { 
    width: 100% !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
    display: block !important;
}

    .grid-composition { 
        display: block !important;
        width: 100% !important;
    }

    .decoupe { column-count: 1; }

    .navbar {
        padding: 12px 16px !important;
    }
    
    .footer-container { 
        display: block !important;
        padding: 0 24px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .footer-section { grid-column: 8; }
    .logo-rotating {
        position: fixed;
        bottom: 30px;
        right: 30px;
        max-width: 60px;
        height: 60px;
        z-index: 1000;
    }

    .abstract-block {
        padding: 20px 24px !important;
        margin-bottom: 80px !important;
    }

    .biblio-grid {
        grid-template-columns: 1fr;
    }

    .biblio-block.full-width {
        grid-column: auto;
    }

    .saut_haut {
        margin-top: 160px !important;
    }

    h4 { margin-top: 24px;}
    hr { grid-column: span 4; border: 0; height: 1px; background-image: linear-gradient(to right, rgb(235,232,219), #ff7b00, rgb(235,232,219)); margin-top: 48px; }
    .audio_container { padding-left: 13px; }
    .audio_container figcaption { font-size: 12px; font-style: italic; padding: 8px 0 16px 12px; }
}/* --- FIN POINTS DE RUPTURE POUR MOBILE EN DESSOUS DE 768 PIXELS --- */