.site-header {
    position: static !important;
}
body {
    background-color: #EBECEB;
}
.site-footer {
    background-color: #07090B;
}
.single-post-wrapper {
    padding-bottom: 5rem;
}
.single-post-wrapper .container {
    max-width: 61.6rem;
    margin: 0 auto;
}
.single-post-wrapper * {
    color: #5D605A;
}
.single-post-wrapper h1,
.single-post-wrapper .wp-block-heading {
    color: #07090B;
}
.single-post-wrapper h2 {
    font-size: 3.33rem;
}
.single-post-wrapper a {
    color: #07090B;
}
.single-post-wrapper .wp-block-heading {
    border-top: 1px solid #B7B9B3;
    margin-top: 2rem;
    padding-top: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.single-post-wrapper .post-thumbnail img {
    width: 100%;
}
.single-post-wrapper .post-thumbnail {
    position: relative;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}
.single-post-wrapper .post-thumbnail::before {
    position: absolute;
    content: '';
    width: 100vw;
    height:50000px;
    bottom: 50%;
    right: 50%;
    transform: translateX(50%);
    background-color:#DFE1DD;
    z-index: -1;
    pointer-events: none;
}

.back-link {
    position: relative;
    margin-bottom: 1rem;
}
.back-link::before {
    left: 0;
    content: '';
    position: absolute;
    width: 100%;
    border-top: 2px solid #B7B9B3;
    top:50%;
    transform: translateY(-50%);
}
.back-link a {
    background-color: #DFE1DD;
    display: inline-block;
    position: relative;
    padding-right: 1rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}
.post-category {
    font-size: 1.04rem;
    background-color: #CFD2CA;
    border-radius: 2rem;
    line-height: 1;
    color: #070C16;
    padding: 0.8rem 1.5rem;
}
.post-date {
    color: #070C16;
    font-size: 1.04rem;
}


.similar-articles {
    padding:3rem;
}
.similar-articles h2 {
    color: #07090B;
    margin-bottom: 2rem;
}
.similar-articles__row {
    display: flex;
    flex-wrap: wrap;
    margin:0 -1.5rem;
}
.similar-articles__col {
    max-width: 33.3%;
    flex-basis: 33.3%;
    padding: 0 1.5rem;
}
.similar-articles__title {
    font-size: 1.25rem;
    margin: 1rem 0;
    min-height: 3rem;
}
.similar-articles__title a {
    color: #070C16;
}
.similar-articles__img {
    transition: all .3s ease;
}
.similar-articles__img img {
    width: 100%;
}
.similar-articles__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.similar-articles__date {
    color: #070C16;
    font-size: 0.8rem;
}
.similar-articles__category {
    background-color: #CFD2CA;
    border-radius: 100px;
    color: #07090B;
    font-size: 1rem;
    line-height: 1;
    padding:0.8rem 1.5rem;
}
.similar-articles__img:hover {
    opacity: 0.6;
}

@media(max-width:767px){
    .single-post-wrapper h1, .single-post-wrapper .wp-block-heading{
        font-size: 2rem;
    }
    .post-date,
    .post-category {
        font-size: 1rem;
    }
    .post-content {
        font-size: 0.88rem;
    }
    .single-post-wrapper {
        padding-bottom: 2rem;
    }
    .similar-articles {
        padding: 2rem 0.88rem;
        display: none;
    }
}