.article__block {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #0000001A;
    border-bottom: 1px solid #0000001A;
}

.article__block-inner {
    border-radius: 24px;
    row-gap: 20px;
    display: grid;
}

.article__block-inner_type_one {
    background-color: #B0B2E6;
}

.article__block-inner_type_two {
    background-color: #B1BCBF;
 }

.article__block-img {
    border-radius: 24px !important;
    background: none !important;
    object-fit: cover !important;
    width: 100%;
    height: 280px !important;
    margin: 0 !important;
}

.article__block-body {
    padding: 20px;
    display: grid;
    row-gap: 20px;
    justify-items: start;
}

.article__block-heading {
    font-family: "Halvar Breitschrift";
    font-size: 24px;
    line-height: 1.33;
    margin-bottom: 0 !important;
    color: #000;
}

.article__block-text {
    margin-bottom: 0 !important;
}

.article__block-link {
    color: #000;
    border-color: #000;
    font-weight: bold;
}

.article__block-link:hover {
    color: #444;
    border-color: #444;
}

@media screen and (min-width: 992px) {

    .article__block-inner_type_one {
        grid-template-columns: 394px 1fr;
        column-gap: 60px;
        height: 312px;
    }

    .article__block-img {
        height: 312px !important;
    }

    .article__block-inner_type_one .article__block-body {
        padding: 40px;
        row-gap: 40px;
        order: -1;
    }

}

/*Онлайн запись кнопка МВ внизу страницы*/
.footer-button-record-form {
    display: none;
}
@media screen and (max-width: 719px) {
    .footer-button-record-form{
        display: block;
        position: fixed;
        bottom: 50px;
        right: 20px;
        background-color: #C7AC23;
        color: white;
        border-radius: 50px;
        padding: 15px;
        font-family: 'Halvar Breitschrift';
        font-size: 12px;
        line-height: 1.33;
        z-index: 99;
    }
}