main {
    width: 1024px;
    margin: 60px auto 100px auto;
    @media (max-width: 700px) {
        width: 100%;
        margin-top: 30px;
        padding-inline: 25px;
    }
    h1 {
        font-size: 32px;
        color: var(--secondary-text);
        font-family: "VTB Group Demi Bold", sans-serif;
        margin-bottom: 44px;
        @media (max-width: 700px) {
            margin-bottom: 20px;
            font-size: 24px;
        }
    }
    .summary {
        background: #fff;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow-light);
        padding: 30px 40px 10px 40px;
        display: flex;
        gap: 10px;
        margin-bottom: 80px;
        position: relative;
        @media (max-width: 700px) {
            flex-direction: column;
            overflow: hidden;
            margin-bottom: 50px;
        }
        .text {
            position: relative;
            z-index: 2;
            h3 {
                font-size: 20px;
                color: var(--secondary-text);
                font-family: "VTB Group Demi Bold", sans-serif;
                margin-bottom: 20px;
                @media (max-width: 700px) {
                    font-size: 16px;
                    color: var(--primary-text);
                }
            }
            p {
                font-size: 16px;
                color: var(--secondary-text);
                margin-bottom: 20px;
                @media (max-width: 700px) {
                    font-size: 14px;
                }
            }
            .button {
                display: inline-block;
                padding: 14px 35px;
                border-radius: var(--border-radius);
                @media (max-width: 700px) {
                    font-size: 14px;
                    width: 100%;
                    text-align: center;
                    margin-top: 50px;
                }
            }
        }
        .icon {
            flex-shrink: 0;
            flex-basis: 200px;
            height: 200px;
            @media (max-width: 700px) {
                position: absolute;
                bottom: -75px;
                left: 0;
                right: 0;
                width: 200px;
                margin: auto;
            }
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }
        }
    }
    h2 {
        font-size: 30px;
        color: var(--secondary-text);
        font-family: "VTB Group Demi Bold", sans-serif;
        @media (max-width: 700px) {
            font-size: 24px;
        }
    }
    .table {
        display: grid;
        grid-template-columns: repeat(var(--columns, 4), 1fr);
        margin: 60px 0 20px 0;
        @media (max-width: 700px) {
            grid-template-columns: 1fr 1fr;
            grid-auto-flow: column;
            margin-top: 40px;
        }
        &.nbsp {
            * {
                white-space: nowrap;
            }
        }
        .thead, .tcell {
            padding: 20px 20px 20px 0;
            border-bottom: 2px solid var(--placeholder-gray);
        }
        .thead {
            font-family: "VTB Group Demi Bold", sans-serif;
            font-size: 18px;
            @media (max-width: 700px) {
                grid-column-start: 1;
            }
        }
        .tcell {
            font-size: 18px;
            color: var(--secondary-text);
            @media (max-width: 700px) {
                grid-column-start: 2;
            }
            &.col_span_all {
                grid-column: 1 / -1;
            }
        }
        .table {
            margin: -20px 0;
            .tcell {
                border: none;
            }
        }
        span {
            &.lower {
                font-size: 0.75em;
            }
        }
    }
    p {
        font-size: 16px;
        color: var(--secondary-text);
        margin-bottom: 20px;
        @media (max-width: 700px) {
            text-align: center;
            font-size: 12px;
        }
        strong {
            color: var(--primary-text);
        }
    }
}