.root {
    display: flex;
    flex-direction: column;
}

.platform-group {
    display: flex;
    flex-direction: column;
}

.card_root {
    flex: 1 1 0;
    border-top: 1px solid var(--vkws_landings--color--raisin-black);
}

.platform-group:last-of-type  .card_root:last-of-type {
    border-bottom: 1px solid var(--vkws_landings--color--raisin-black);
}

.card_border {
    width: 100%;
    height: 100%;
}

.card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 30px;
}

.wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    margin-bottom: 20px;
}

.logo {
    box-sizing: content-box;
    background-color: var(--vkws_landings--color--raisin-black);
    border-radius: 13px;
    padding: 11.5px;
    width: 27px;
    height: 27px;
}

.title {
    color: var(--vkws_landings--color--white);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}

.button {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.button:not(:first-of-type) {
    margin-top: 12px;
}

@media screen and (min-width: 1024px) {
    .root {
        flex-direction: column-reverse;
    }

    .platform-group {
        flex-direction: row;
    }

    .card_root {
        border: none;
        padding-left: 20px;
        padding-right: 20px;
    }

    .card_root:last-of-type {
        border: none;
    }

    .card_border {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .border_top {
        border-top: 1px solid var(--vkws_landings--color--raisin-black);
    }

    .border_bottom {
        border-bottom: 1px solid var(--vkws_landings--color--raisin-black);
    }

    .border_left_right::before {
        position: absolute;
        content: '';
        width: 1px;
        height: 100%;
        top: 0;
        left: -20px;
        background-color: var(--vkws_landings--color--raisin-black);
    }

    .border_left_right::after {
        position: absolute;
        content: '';
        width: 1px;
        height: 100%;
        top: 0;
        right: -20px;
        background-color: var(--vkws_landings--color--raisin-black);
    }

    .card {
        padding-top: 36px;
        padding-bottom: 36px;
        position: relative;
    }

    .wrapper {
        flex-direction: column;
        column-gap: 0;
        row-gap: 32px;
        margin-bottom: 30px;
    }

    .logo {
        padding: 22px;
        width: 52px;
        height: 52px;
        border-radius: 24px;
    }

    .title {
        font-size: 28px;
        line-height: 32px;
    }
}

@media screen and (min-width: 1440px) {
    .title {
        font-size: 38px;
        line-height: 32px;
    }

    .button {
        height: unset;
        padding: 14px 30px;
        font-size: 22px;
        line-height: 28px;
    }

    .card {
        padding-bottom: 68px;
    }
}
