
/* REVIEW: présentation articles */
.presentation_article{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: transform .2s;
}
.presentation_article:hover{
    transform: scale(1.02);
}
.presentation_article:hover p{
    color:var(--bleu_profond);
}
@media screen and (max-width: 1024px){
    .presentation_article{
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 2px solid var(--bleu_profond);
        margin-bottom: 40px;
        color: var(--texte_principal);
        transition: transform .2s;
    }
}
div.conteneur_image{
    display: block;
    width: 30%;
}
@media screen and (max-width: 1024px){
    div.conteneur_image{
        display: block;
        width: 100%;
    }
}
div.conteneur_image img{
    max-width: 100%;
}
.presentation_article div:last-child{
    margin: 20px;
    width: 70%;
}

/* REVIEW: fin présentation articles */
/* REVIEW: article */
section.article{
  margin: auto;
  max-width: 65%;
}
section.article article{
  font-size: var(--taille_titre_h4);
}
section.article p.titre span{
  font-size: 15px;
  font-weight: normal;
  color: var(--texte_principal);
}
section.article p.titre span a{
  color: var(--bleu_lmdc);
  text-decoration: none;
}
section.article p.titre span a:hover{
  color: var(--bleu_lmdc);
  text-decoration: underline;
}
figure {
    border: thin #c0c0c0 solid;
    display: flex;
    flex-flow: column;
    padding: 5px;
    max-width: 220px;
    margin: auto;
}

figure img {
    max-width: 220px;
    max-height: 150px;
}

figcaption {
    background-color: #222;
    color: #fff;
    font: italic smaller sans-serif;
    padding: 3px;
    text-align: center;
}
aside{
  margin-left: 50px;
  margin-bottom: 10px;
  border-left:3px solid var(--bleu_lmdc);
  padding-left: 10px;
}
pre{
  background-color: #ccc;
  border-radius: 5px;
  padding: 15px;
  border:1px solid black;
  /*background: #f4f4f4;
  border: 1px solid #ddd;
  border-left: 3px solid #f2334c;
  color: #666;
  page-break-inside: avoid;
  font-family: monospace;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1em 1.5em;
  display: block;
  word-wrap: break-word;/*
}
/* REVIEW: fin article */
