.news-article article {
        background-color: #F9F9FA !important;
}
.post__header {
    background-color: #F9F9FA; /* rgba(67, 67, 94, 0.03) */;
    padding: 100px var(--global-sides-margin) 97px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.post__header-half {
    width: 50%;
}
.post__header #breadcrumbs {
    position: absolute;
    top: 50px;
    left: calc( 40px + var(--global-sides-margin) );
}

.header__content {
    width: 90%;
    margin: 0 auto;
}
.header__socials-sharer {
    position: fixed;
    top: 170px;
    left: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2;
}
.header__socials-sharer a {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #43435E;
    margin-bottom: 10px;
    transform: scale(1);
    will-change: transform;
    transition: transform 400ms ease-in-out;
}
.header__socials-sharer a:hover {
    transform: scale(0.9);
}

.header__socials-sharer a svg {
    width: 50%;
}

.header__tag-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
}

.header__time {
    margin-top: 10px;
}
.header__reading-time {
    margin-left: 10px;
}
.header__reading-time svg {
    margin-right: 2px;
}
.header__title {
    font-size: 56px;
    line-height: 56px;
    margin-bottom: 20px;
}

.header__img-container {
    height: 55vh;
    width: 90%;
    overflow: hidden;
    border-radius: 40px;
    filter: drop-shadow(0px 0px 50px rgba(67, 67, 93, 0.3));
}
.header__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.news__sharer {
    display: flex;
    padding: 80px var(--global-sides-margin);
}
.news__sharer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #F1EEF5;
    padding: 25px 40px;
    border-radius: 20px;
}
.news__sharer-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 15px;
}
.news__sharer-list a {
    margin-right: 20px;
    transform: scale(1);
    will-change: transform;
    transition: transform 400ms ease-in-out;
}
.news__sharer-list a:hover {
    transform: scale(1.1);
}
.news__sharer-container svg {
    fill: #43435E;
}

@media screen and (max-width: 1200px) {
    .header__img-container {
        height: 55vh;
        width: 40vw;
    }
    .header__img  {
        align-items: flex-end;
    }
     .header__title {
        font-size: 46px;
        line-height: 46px;
    }
}

@media screen and (max-width: 991px) {
    .post__header {
        flex-direction: column;
        padding: 100px var(--global-sides-margin) 70px; /*100px 6% 70px*/
    }
    .post__header-half {
        width: 100%;
    }
    .half-img {
        width: 100%;
        margin-top: 40px;
        align-items: center;
    }
    .header__img-container {
        height: 55vh;
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
     .post__header {
        flex-direction: column;
        padding: 40px 6% 70px;
    }
    .post__header #breadcrumbs {
        position: relative;
        top: inherit;
        left: 0px;
    }
    
    .header__socials-sharer {
        position: relative;
        top: inherit;
        left: inherit;
        display: flex;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    .header__socials-sharer a {
        margin-top: 15px;
        margin-left: 10px;
    }
    .header__socials-sharer a:first-child {
        margin-left: 0;
    }
    
    .header__content {
        width: 100%;
    }
    .header__title {
        font-size: 36px;
        line-height: 36px;
    }
    .header-img-container {
        height: 35vh;
        width: 100%;
    }
    .news__sharer {
        padding: 40px 5% ;
    }
}

.post-content > h1,
.post-content > h2,
.post-content > h3,
.post-content > h4,
.post-content > h5,
.post-content > h6,
.post-content > p {
    padding: 0 var(--global-sides-margin);
}