/* Les auteurs (sur le modèle de [articles actifs] --style.article.css) */
.menu{
    max-width: 65.5rem;
    margin: auto;
}

.menu a{
    color: black;
    text-decoration: none;
}

.menu a:hover{
    color: #3BB2BE;
    text-decoration: none;
}

.aside {
    background-color: #0202021a;
    border-top: 6px solid #999;
}

.sub_formulaire{
    margin-bottom: 75px;
}

.menu{
    padding-bottom: 16px;
}

.pagination{
    margin: 0;
}


.auteur-parent {
  padding: 0;
  padding-top: 16px;
  margin: 0;
  list-style: none;
  
  display: flex;
  
  flex-flow: row wrap;
  justify-content: space-between;
  padding-bottom:20px;
}

.auteur-child {
  background: white;
  box-shadow: 0 2px 4px grey;
  padding: 5px;
  width: 200px;
  height: 70px;
  margin-bottom: 10px;
  transition: box-shadow 0.3s,
}

.auteur-text .title {
    color: black;
    font-size: 14px;
    text-align: center;
    transition: color 0.3s;
    margin: 0;
}

.auteur-text {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-family: Montserrat;
}

.auteur-text p {
    font-size: 12px;
    font-weight: normal;
}

.auteur-parent a{
    color: black;
    text-decoration: none;
}


.auteur-child:hover{
    box-shadow: 0 5px 10px grey;
}

.auteur-child:hover .title{
    color: #3BB2BE;
    text-decoration: none;
}