.blog__header{
    color: #fff;
    height: 20vh;
    text-align: center;
    display: flex;
    justify-content:center ;
    align-items: center;
    flex-direction: column;
    background-image: url("../img/blog_bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;

}

.blog__header::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000041;
    height: 100%;

}

.blog__header h1{
    color: #fff;
    z-index: 2;
}

.blog__header p{
    color: #fff;
    z-index: 2;
}

.article__detail{
    max-width: 900px;
    border-radius: 10px;
    border-top: 2px solid #65acff;
    background-color: #fff;
    padding: 20px;
    margin: auto;
}

.article__detail h1{
    text-align: center;
    font-size: 2em;
}

.article__section{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #F5F5F5;
}

.article__image{
    height: 500px;
    margin: 20px 0px;
    border-radius: 10px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.cat__and__date{
    display: flex;
    justify-content: space-between;
    font-size: 0.8em;
    font-weight: 500;
}
.article__body{
    margin: 30px auto;
    font-size: 1.2em;
    line-height: 20px;

}
.article__body p{
    line-height: 30px;
    color: #000;
}

.article__body img{
    width: 100%;
    margin: 20px 0px;
}
.article__body a{
   color: #2b76cd;
}

.article__body h1{
   font-size: 1em;
   line-height: 30px;
}

.article__body h2{
   font-size: 1em;
   line-height: 30px;
}

.article__body ol, .article__body ul{
    margin-left: 30px;
    line-height: 30px;
    font-size: 0.8em;
}

.article__comment{
    max-width: 900px;
    padding: 20px;
    margin: auto;
    background-color: #fff;
    border-top: 1px solid #e1e0e0;
}

.article__comment textarea{
    width: 100%;
    height: 100px;
    outline: none;
    border: 1px solid #728a8c;
    border-radius: 5px;
    padding: 5px;
    resize: none;
}

.comment__send__button{
    display: flex;
    justify-content: end;

}

.comment__send__button button{
    padding: 10px;
    border: none;
    outline: none;
    background-color: #65acff;
    color: white;
    font-size: 1.2em;
    border-radius: 5px;
}

.espace__commentaires .comment-item{
    margin:10px auto;
    display: flex;
}
.espace__commentaires .avatar{
    flex-basis: 70px;
}
.espace__commentaires .comment-info{
    margin: 0px 10px 20px 10px;
    margin-bottom: 0.5rem;
    flex-basis: auto;
}
.espace__commentaires .message{
    background: #e1e1e1;
    padding: 0.8rem;
    border-radius: 10px;
}

.date-comment{
    display: block;
    margin-top: 10px;
    font-size: small;
}








/* ------------------------------------------ */

.share {
    position: fixed;
    left: 0;
    margin-top: -120px;
    top: 50%;
}
.share a {
    color: #fff;
    display: block;
    font-size: 1.8em;
    line-height: 48px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: 0.2s;
    width: 48px;
}
.share a:hover {
    transform: scale(1.1);
    z-index: 1;
}
.share a.fa-facebook {
    background: #305991;
}
.share a.fa-twitter {
    background: #2da8d2;
}
.share a.fa-pinterest {
    background: #ca232a;
}
.share a.fa-google-plus {
    background: #dd4c39;
}
.share a.fa-envelope {
    background: #728a8c;
}
.share a.fa-linkedin {
    background: #2da8d2;
}

@media screen and (max-width:570px) {
    .article__detail h1{
        font-size: 1.5em;
    }
    .article__image{
        height: 200px;
    }
    .share {
        position: relative;
        display: flex;
        justify-content: center;
        text-align: center;
        margin: 50px auto;

    }
  }