.block-wrapper.mkbh-block-article-inline-city-change-suggestions {
    display: flex;
    flex-direction: row;
    gap: 10px;

    padding: 0;
    margin: 30px 0;

    font-family: 'Montserrat', sans-serif;
    color: #303030;

    border-top: 1px solid #8A9DB0;
    border-bottom: 1px solid #80808094;
    background-color: #f6f6f6;

    h3, h4, h5, h6 {
        font-family: 'Montserrat', sans-serif;
        margin: 0!important;
        padding: 0!important;
    }

    .left {
        flex: 0 0 190px;
        padding: 15px;
        border-right: 1px solid #c3c3c370;

        display: grid;
        grid-template-rows: auto auto 1fr auto;
        align-items: end;
        grid-template-areas:
        "row1"
        "row2"
        "row3";

        .title {
            grid-area: row2;
            margin: 0 !important;
            font-size: 28px;
            font-weight: 900;
            color: #75afe5;

            &:before {
                display: block;
                font-family: "mkbh-icons", sans-serif !important;
                font-size: 23px;
                margin-left: -4px;
                margin-bottom: 3px;
                content: 'b' !important;
                color: #75afe5;
                font-style: normal !important;
                font-weight: 400 !important;
                font-variant: normal !important;
                text-transform: none !important;
            }

            small {
                display: block;
                margin: 0;

                font-family: 'Montserrat', sans-serif;
                font-size: 14px;
                font-weight: 400;
                letter-spacing: 0.075em;
            }
        }

        .logo {
            grid-area: row3;
            width: 64px;
            height: 16px;
            margin-bottom: 0;
        }
    }

    .right {
        position: relative;
        flex: 1 1 auto;
        padding: 30px 15px 0 15px;

        & > a {
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 0.075em;

            position: absolute;
            top: 8px;
            right: 15px;

        }

        ul {
            margin: 0!important;
            padding: 0!important;
            background: none!important;
            list-style: none none!important;

            li {
                margin-right: -25px!important;
                margin-left: -25px!important;
                padding: 12px 22px !important;

                &:not(:last-child) {
                    border-bottom: 1px solid #c3c3c370;
                }

                &:before {
                    display: none;
                    content: none;
                }

                h5 {
                    color: #666666;
                    font-weight: 300;
                    font-size: 14px;
                    margin-bottom: 5px !important;
                }

                h4, h4 > a {
                    color: #666666;
                    letter-spacing: 0.012em;
                    margin-bottom: 5px !important;
                }

                h6 {
                    font-size: 60px;
                    line-height: 60px;
                    font-weight: 900;
                    color: #75afe5;
                }

                p {
                    color: #666666;
                    font-weight: 300;
                    font-size: 14px;
                }
            }
        }
    }

    @media (max-width: 768px) {
        flex-direction: column;

        .left {
            row-gap: 15px;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            grid-template-areas:
                "row2 row1"
                "row3 row3";

            flex: 1;
            align-items: start;

            border-right: none;
            border-bottom: 1px solid #c3c3c370;

            .title {
                margin-bottom: 0!important;
            }

            .title {
                justify-self: start;
                text-align: left;
            }

            .logo {
                justify-self: start;
            }
        }
    }
}
