.nml-payment {
    padding: 32px 0;
    background: var(--color-bg);
}

/* ── Card ── */
.nml-payment__card {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 32px;
    padding: 16px 53px 16px 40px;
    border: 1px solid var(--color-line-blue);
    border-radius: 12px;
    background: var(--color-bg-secondary);
    box-shadow: 0px 1px 2px 0px #4C83F333;
    justify-content: space-between;
    position: relative;
}

/* ── Info ── */
.nml-payment__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 427px;
}

.nml-payment__title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: var(--color-text-primary);
}

.nml-payment__title span {
    color: var(--color-text-accent);
}

.nml-payment__subtext {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--color-text-secondary);
}

/* ── Arrow ── */
.nml-payment__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

/* ── Methods grid ── */
.nml-payment__methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 460px;
    position: relative;
    z-index: 1;
}

/* ── Pill ── */
.nml-payment__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--color-line-blue);
    border-radius: 8px;
    background: var(--color-bg);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--color-text-secondary);
    white-space: nowrap;
}

.nml-payment__pill img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    border: 0.92px solid var(--color-line);
    border-radius: 100%;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .nml-payment__card {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .nml-payment__arrow {
        rotate: 130deg;
        top: 115px;
    }

    .nml-payment__methods {
        justify-content: flex-start;
        padding-right: 50px;
    }
}

@media (max-width: 768px) {
    .nml-payment {
        padding: 40px 0;
        background: var(--color-bg);
    }

    .nml-payment__card {
        grid-template-columns: 1fr;
        padding: 24px;
        border-radius: 8px;
        gap: 20px;
    }

    .nml-payment__title {
        font-size: 18px;
        line-height: 26px;
    }

    .nml-payment__info {
        min-width: 100%;
        padding-right: 50px;
    }

    .nml-payment__pill img {
        width: 20px;
        height: 20px;
    }

    .nml-payment__pill {
        font-size: 14px;
        line-height: 20px;
    }
}
