.profile__paymentSection {
    margin-top: 48px;
}

.profile__paymentCard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 520px;
    min-height: 132px;
    padding: 22px 24px;
    border: 1px solid var(--secondary-light-grey);
    border-radius: 8px;
    background: var(--primary-white);
}

.profile__paymentCard-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 84px;
}

.profile__paymentCard-label,
.profile__paymentCard-meta,
.profile__paymentNotice {
    font-family: Maison Neue, sans-serif;
    font-size: 9px;
    line-height: 14px;
    color: var(--secondary-dark-grey);
}

.profile__paymentCard-number {
    font-family: GT America Trial, sans-serif;
    font-size: 22px;
    line-height: 24px;
    color: var(--primary-black);
    letter-spacing: 1px;
}

.profile__paymentCard-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 10px;
    border-radius: 12px;
    background: var(--brand-blue);
    color: var(--primary-white);
    font-family: Maison Neue, sans-serif;
    font-size: 9px;
    line-height: 14px;
}

.profile__paymentActions {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.profile__paymentMessage,
.profile__paymentNotice {
    display: block;
    max-width: 520px;
    margin-top: 14px;
    font-family: Maison Neue, sans-serif;
    font-size: 12px;
    line-height: 14px;
    color: var(--secondary-dark-grey);
}

.profile__paymentMessage {
    padding: 12px 14px;
    border-left: 3px solid var(--brand-blue);
    background: var(--secondary-white);
}

@media (max-width: 768px) {
    .profile__paymentCard {
        min-height: 120px;
        padding: 20px;
    }

    .profile__paymentCard-details {
        padding-right: 72px;
    }

    .profile__paymentCard-number {
        font-size: 20px;
        line-height: 22px;
    }

    .profile__paymentCard-badge {
        top: 18px;
        right: 18px;
    }
}
