.single-post-header{
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.single-post-header::before {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0,0,0,.25);
    content: '';
}

.single-post-header__content{
    position: relative;
    z-index: 2;
}

.single-post-header__title{
    color: #FFF;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 30px;
}

.single-post-header__meta{
    font-size: 14px;
    font-style: italic;
    font-weight: bold;
    color: var(--e-global-color-primary);
}

.single-post-header__meta > * + *::before{
    content:'•';
    display: inline-block;
}

.share-button__container{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.share-button{
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFF;
    padding: 8px 20px;
}

.share-button span{
    margin-left: 8px;
}

.share-button-icon{
    font-size: 16px;
}

.share-button-twitter{
    background-color: var(--tw-blue);
}

.share-button-facebook{
    background-color: var(--fb-blue);
}

.share-button-linkedin{
    background-color: var(--in-blue);
}

@media screen and (max-width: 768px) {
    .single-post-header {
        padding-top: 75px;
        padding-bottom: 75px;
    }
    .share-button__container {
        flex-wrap: wrap;
    }
    .single-post-header__content {
        padding: 0 10px;
    }
}