/* --------------------
   Global
-------------------- */
body {
 background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

/* --------------------
   Article Noir
-------------------- */
.article-noir {
  background-color: #000;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.contenu-article {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-grow: 1;
  flex-wrap: wrap;
}

.contenu-article img {
  width: 40%;
  height: auto;
  border-radius: 8px;
  max-width: 100%;
}

.texte-article {
  flex: 1;
}

/* --------------------
   Bas de l'article
-------------------- */
.bas-article {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}


/* --------------------
   Responsive (Tablettes et Mobiles)
-------------------- */
@media screen and (max-width: 768px) {
  .contenu-article {
    flex-direction: column;
    align-items: flex-start;
  }

  .contenu-article img {
    width: 100%;
    margin-bottom: 15px;
  }

  .texte-article {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .article-noir {
    padding: 15px;
  }

  .bas-article {
    font-size: 0.9rem;
  }
}

    }