.post,
.post *{
    box-sizing: border-box;
}

.post__admin-message-wrapper{
    position: relative;
}
.post__admin-message{
    position: absolute;
    right: 20px; top: 20px;
    padding: 20px;
    background: #ff24248b;
}

.post__date{
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;


    margin-bottom: 44px;

    color: #888888;
}

.post-sidebar{
    /* display: flex; */
    flex-direction: column;
    /* box-shadow: 0 4px 8px 0 #3E10101A; */
    box-shadow: 0 4px 8px 0 var(--box-shadow-color);
    top: 200px;

    /* position: -webkit-sticky; */
    /* position: sticky; */
}

.post-sidebar__item{
    display: flex;
    align-items: center;

    padding: 12px;
    min-height: 44px;

    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;


    border-top: 1px solid #eeeeee;

    color: #333333;

    transition: 0.3s;

    cursor: pointer;
}

.post-sidebar__item.is--active,
.post-sidebar__item:hover{
    color: #990000;
    background: #FFE9E9;
}

.js-form-anchor-select{
    position: -webkit-sticky;
    position: sticky;
    align-self: flex-start;
    padding: 16px 0;
    margin-top: -16px;

    z-index: 6;
    background: #fff;
}

.post__content{
    color: #333333;
}

.post__content :is(h1, h2, h3, p):first-child{
    margin-top: 0;
}

.post__content h3{
    margin: 60px 0 24px;
    position: relative;
    padding-bottom: 8px;
    font-family: 'Opinion Pro', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 124%;

    text-transform: none;
}

.post__content h3:after{
    content: '';
    position: absolute;
    width: 70px;
    height:2px;
    background: #FF2424;
    left: 0;
    bottom: 0;
}

.post__content h4{
    margin: 24px 0 16px;
    position: relative;

    font-family: 'Opinion Pro', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 132%;

}

.post__content p{
    margin: 8px 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;

}

.post__content a{
    position: relative;
    color: #0F0BAB;
    text-decoration: none;
}
.post__content a:after{
    bottom: -3px;
    left: 0;
    position: absolute;
    content: '';
    width: 100%;
    height:1px;
    background: #0F0BAB;;
}


.post__content ul{
    margin: 16px 0;
    padding-left: 20px;
}

.post__content ul li{
    margin: 8px 0;

    font-size: 16px;
    line-height: 148%;
}

.post__content table{
    border: none;
}

.post__content table td{
    border: none;
    padding: 12px;
    vertical-align: top;

    font-weight: 400;
    font-size: 16px;
    line-height: 148%;

}

.post__content table thead td{
    font-weight: 700;
    font-size: 16px;
    line-height: 148%;

    color: #14191F;
}

.post__content table tr{
    border-bottom: 1px solid #E0E0E0;
}


@media (max-width: 980px){
    .post__date{
        margin-bottom: 24px;
    }
    
    .post__content h3{
        margin-top: 40px;
        font-weight: 700;
        font-size: 19px;
        line-height: 128%;
    }

    .post__content h4{
        font-weight: 700;
        font-size: 16px;
        line-height: 128%;
    }
}