.share {
    margin: 30px 0;
    display: flex;
    align-items: center;
}
.share__title {
    margin-right: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #aeaeae;
}

.news-detail .news-date-time {
    font-size: 14px;
    font-family: "Roboto Slab",serif;
    text-transform: uppercase;
    color: #aeaeae;
    margin: 0 0 10px;
    display: block;
}
.news-detail .image-left {
    float: left;
    max-width: 50%;
    margin: 5px 15px 15px 0;
}
.detail-back a {
    text-decoration: none;
    color: #404d92;
    display: inline-flex;
    align-items: center;
    font-family: "Roboto",sans-serif;
    font-size: 16px;
}
.detail-back a:after {
    content:'\2192';
    font-size: 140%;
    margin-left: 5px;
    
}
.detail-back a:hover {
    color: #e8324b !important;
}
.container__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 800px) {
    .container__footer {
        flex-direction: column;
    }
    .container__footer .detail-back {
        display: flex;
        justify-content: flex-end;
        margin-top: 15px;
    }
    .news-detail .image-left {
        float: none;
        max-width: inherit;
        margin: 0 auto 15px;
    }
}