.page-block{
    --pb-mt: 0;
    --pb-mb: 30px;
    --pb-fs-title: 24px;
    --pb-mb-title: 18px;
    --pb-gap-title: 4px;

    position: relative;
    margin-top: var(--pb-mt);
}
.page-block:not(:last-child){
    margin-bottom: var(--pb-mb);
}

.page-block__informer{
    display: inline-flex;
    border-radius: 10px;
    padding: 2px 10px;
    background: #fdf99a;
    font-weight: 600;
    font-size: 12px;
    line-height: 150%;
    text-align: center;
    color: #333;
    position: relative;
    z-index: 100;
}
.page-block__title {
    display: flex;
    flex-direction: column-reverse;
    gap: var(--pb-gap-title);
    margin-bottom: var(--pb-mb-title);
}
.page-block__title__text{
    font-weight: 500;
    font-size: 20px;
    color: var(--dark-100);
}

.page-block__title__extra{
    display: flex;
    flex-wrap: nowrap;
    gap:4px;
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: rgba(45, 44, 56, 0.6);
}
.page-block__debug-box{
   display: none;
}
.admin-interface .page-block__debug-box{
    display: block;
    margin-top: 20px;
}
.page-block__debug-box{
    margin-top: 20px;
}

@media (min-width: 992px) {
    .page-block{
        --pb-mb: 60px;
        --pb-mb-title: 24px;
    }

    .page-block__title {
        flex-direction: row-reverse;
        gap: 20px;
        align-items: center;
        justify-content: flex-end;
    }
    .page-block__title:has(.page-block__title__extra) > *{
        width: 50%;
    }
    .page-block__title_post-title-var1{
        align-items: flex-end;
    }
    .page-block__title_post-title-var2{
        justify-content: space-between;
        gap: 100px;
    }

    .page-block__title_post-title-var2 .page-block__title__extra{
        width: 40%;
    }
    .page-block__title_post-title-var2 .page-block__title__extra + .page-block__title__text{
        width: 50%;
    }
    .page-block__title_big {
        font-size: 40px;
        line-height: 119%;
        margin-bottom: 40px;
    }
    .page-block__title__text{
        font-size: 32px;
    }
    .page-block__title__text,
    .page-block__title__extra{
        line-height: 1;
    }
    .page-block__title__extra{
        font-weight: 500;
        font-size: 18px;
        line-height: 120%;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0;
    }
    .page-block__title__extra__item{
        margin-bottom: 3px;
    }
}
@media (min-width: 1400px) {
    .page-block {
        /*--pb-mb: 120px;*/
        --pb-mb-title: 32px;
    }
    .page-block__title_big {
        font-size: 64px;
        line-height: 119%;
        --pb-mb: 60px;
    }
}