.payment-sections {
    display: grid;
    gap: 2rem;
}

.payment-sections__item {
    min-width: 0;
}

.payment-sections__title {
    margin: 0 0 2rem;
    color: var(--color-header-panel);
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 2.5vw, 2.4rem);
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
}

.payment-sections__rows {
    margin: 0;
    padding: 0;
    border: var(--border-1);
    list-style: none;
}

.payment-sections__row {
    padding: 1.25rem 2rem;
    font-size: 1rem;
    line-height: 1.35;
}

.payment-sections__row + .payment-sections__row {
    border-top: var(--border-1);
}

.payment-sections__note {
    margin-top: 1.75rem;
    font-size: 1rem;
    line-height: 1.35;
}

.payment-sections__note > :last-child {
    margin-bottom: 0;
}

@media (max-width: 48rem) {
    .payment-sections__title {
        margin-bottom: 1.5rem;
    }

    .payment-sections__row {
        padding: 1rem;
    }
}
