/* 

BLOG

*/


/* Résumé */



@media screen and (min-width: 1024px){


}

.actualite{
    margin-bottom: 30px;

}
.actualite .content{
    padding: 30px;

}
.actualite .articleContent{
    height: 100%;
}
.articleContent .chapoPicture {
    position: relative;
}
.articleContent .chapoPicture a{
    background-color: var(--color-primary);
    display: block;
    position: relative;
}
.articleContent:hover .chapoPicture a img {
    opacity: .2;
}
.articleContent .chapoPicture a::before{
    content: '';
    position: absolute;
    z-index: 1;
    opacity: 0;
    top: 0;
    left: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/themes/mediapilote/img/charte/picto-diversite.svg);
    background-size: 10% auto;
    background-repeat: no-repeat;
    background-position: center;

    -webkit-animation: rotating 2s linear infinite;

            animation: rotating 2s linear infinite;
}

@-webkit-keyframes rotating {
    from {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }

@keyframes rotating {
    from {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
.articleContent:hover .chapoPicture a:before{
    opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

}