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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin-top : 10px;
    margin-bottom: 50px;
}




@media screen and (max-width: 768px) {
    h1, h2, h3, h4, h5, H, .article-header, p {
        padding: 10px;
    }

}

/* ------------------------
   HEADER
------------------------- */
.div-header {
    margin-top: 20px;
}


/* ------------------------
   CONTENEUR DU SOMMAIRE
   => 3 colonnes en flex
------------------------- */
.div-menu {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Chaque colonne */
.colum-div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    margin-top: 10px;
}

/* ------------------------
   1ère COLONNE (col-1)
------------------------- */
.image-wrapper {
    position: relative;
}
.numero-img {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 6px;
    border-radius: 3px;
    font-weight: lighter;
    color: white;
    font-size: 1.8rem;
    background-color: transparent;
}

.numero-img2 {
    position: absolute;
    top: 125px;
    left: 95px;
    padding: 3px 6px;
    border-radius: 3px;
    font-weight: lighter;
    color: white;
    font-size: 1.8rem;
    background-color: transparent;
}

.numero-img3 {
    position: absolute;
    top: 163px;
    left: 160px;
    left: 164px;
    padding: 3px 6px;
    border-radius: 3px;
    font-weight: lighter;
    color: white;
    font-size: 1.8rem;
    background-color: transparent;
}


.top-right {
    align-self: flex-end;
}
.bottom-left {
    align-self: flex-start;
}
.top-right img {
    width: 150px;
    height: 180px;
    object-fit: cover;
}
.bottom-left img {
    width: 120px;
    height: 160px;
    object-fit: cover;
}

/* ------------------------
   2e COLONNE (col-2)
------------------------- */
.main-article {
    background-color: transparent;
    border: none;
    padding: 0;
}
/* Titres de section */
.section-title {
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: #000000;
}
/* Numéro + titre sur une même ligne */
.article-header {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.article-header .numero {
    font-weight: bold;
    color: #000000;
    font-size: 1rem;
}
.article-header h3 {
    font-size: 1.2rem;
    margin: 0;
    letter-spacing: 0.5px;
}
/* Espacement entre articles */
.main-article:not(:last-child) {
    margin-bottom: 1rem;
}
/* Lettrine */
.first-letter {
    float: left;
    font-size: 2rem;
    line-height: 1;
    margin-right: 8px;
    font-weight: bold;
    color: #000000;
}
/* Séparateur décoratif */
.section-separator {
    height: 2px;
    background: #ccc;
    margin: 20px 0;
}
/* Encart (blockquote) */
.encart {
    margin: 1rem 0;
    padding: 1rem;
    background-color: #fdfdfd;
    border-left: 4px solid #000000;
    font-style: italic;
}
.encart blockquote {
    margin: 0;
    line-height: 1.4;
}

/* ------------------------
   3e COLONNE (col-3)
------------------------- */
.image-center {
    text-align: center;
    margin-bottom: 1rem;
}
.image-block {
    display: inline-block;
    position: relative;
}
.image-block img {
    display: block;
    width: 220px;
    height: auto;
    object-fit: cover;
}
.image-block .numero-img {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 1.8rem;
    color: white;
    padding: 4px;
    border-radius: 3px;
    pointer-events: none;
    font-weight: lighter;
}

/* ------------------------
   MEDIA QUERIES
------------------------- */
@media screen and (max-width: 768px) {
    .div-menu {
        flex-direction: column;
        align-items: center;
    }
}

/* ------------------------
   EXEMPLE PLIURE (facultatif)
-------------------------
.fausse-pliure {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    #eee 0%,
    #eee 50%,
    #ccc 50%,
    #ccc 100%
  );
  box-shadow: -2px -2px 5px rgba(0,0,0,0.2);
  pointer-events: none;
}
*/


.image-center img {
    height: 230px;
}