#slideshow {
    width: 300px;
    height: 200px;
    overflow: hidden;
    margin: 20px auto;
    border: 2px solid #444;
}

  .lien-gros {
    font-size: 24px; /* taille du texte */
  }

#slideshow img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.carre {
    width: 600px;
    height: 200px;
    background-color: lightgray; /* juste pour visualiser */
  }
.grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* DIV1 et DIV8 prennent toute la largeur */
.div1, .div8{
    grid-column: 1 / 3;
    background: #ccc;
    height: 40px;
}

/* DIV2 a DIV5 */
.div2, .div3, .div4, .div5 {
    background: #eee;
    height: 200px;
}

/* DIV6 a DIV7 */
.div6, .div7 {
    background: #eee;
    height: 200px;
}

.grid1 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
/* DIV9 */
.div9 {
    background: #eee;
    height: 20px;
}
/* DIV10 */
.div10 {
    background: #eee;
    height: 700px;
}


.item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* --- RESPONSIVE --- */
/* Sur mobile : 1 seule colonne */
@media (max-width: 500px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .div1, .div8 {
        grid-column: 1;
    }
}
