.wallet__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 160px 0;
}

.wallet__header {
    padding-right: 60px;
    position: relative;
    isolation: isolate;
}

.wallet__header h2 {
    color: var(--Tokens-Text-Text-Hi-Contrast, #010203);

    /* Heading S semibold */
    font-family: "PPNV";
    font-size: 32px;
    font-style: normal;
    font-weight: 550;
    line-height: 34px;
    /* 106.25% */
    letter-spacing: 0.64px;
    margin-bottom: 60px;
}

.wallet__header p {
    color: var(--Tokens-Text-Text-Mid-Contrast, #4D565C);

    /* Text 18 */
    font-family: "PPNV";
    font-size: 18px;
    font-style: normal;
    font-weight: 375;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.36px;
}

.wallet__buttons {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 0;
}

ol.wallet__pros {
    padding: 0;
    margin: 0;
    counter-reset: wp;
}

.wallet__pros li {
    display: flex;
    gap: 20px;
    padding: 20px 30px 60px 0;
    color: var(--Tokens-Text-Text-Mid-Contrast, #4D565C);
    border-top: 1px solid var(--Primitives-Slate-Slate-6, #DFE3E6);

    /* Text 16 */
    font-family: "PPNV";
    font-size: 16px;
    font-style: normal;
    font-weight: 375;
    line-height: 22px;
    /* 137.5% */
    letter-spacing: 0.48px;
}

.wallet__pros li:last-child {
    padding-bottom: 0;
}

.wallet__pros li::before {
    counter-increment: wp;
    content: counter(wp);
    display: block;
    flex: 0 0 80px;

    color: var(--Tokens-Text-Text-Hi-Contrast, #010203);
    font-family: "PPNV";
    font-size: 64px;
    font-style: normal;
    font-weight: 550;
    line-height: 100%;
    /* 64px */
    letter-spacing: 1.28px;
}

@media (max-width: 992px) {
    .wallet__grid {
        padding: 80px 0;
        grid-template-columns: 1fr;
    }

    .wallet__header {
        margin-bottom: 40px;
        padding-right: 0;
    }

    .wallet__header h2 {
        color: var(--Tokens-Text-Text-Hi-Contrast, #010203);

        /* Text 18 semibold */
        font-family: "PPNV";
        font-size: 18px;
        font-style: normal;
        font-weight: 550;
        line-height: 24px;
        /* 133.333% */
        letter-spacing: 0.36px;
        margin-bottom: 20px;
    }

    .wallet__header p {
        color: var(--Tokens-Text-Text-Mid-Contrast, #4D565C);

        /* Text 16 */
        font-family: "PPNV";
        font-size: 16px;
        font-style: normal;
        font-weight: 375;
        line-height: 22px;
        /* 137.5% */
        letter-spacing: 0.48px;
        margin-bottom: 40px;
    }

    .wallet__buttons {
        position: relative;
        flex-wrap: wrap;
    }

    .wallet__pros li {
        padding-bottom: 40px;
    }
}