.make-payment {
    padding: var(--section-pad-y) var(--section-pad-x) 0;
    background-color: transparent;

    & .make-payment__inner {
        max-width: var(--container-max-width);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    /* Page title
       ====================================================================== */

    & .make-payment__title {
        font-family: 'Domine', serif;
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        font-weight: 700;
        color: var(--color-navy);
        margin: 0;
        line-height: 1.2;
        text-align: center;
    }

    /* Body: stacked column
       ====================================================================== */

    & .make-payment__body {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    /* Opaque content card
       ====================================================================== */

    & .make-payment__card {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(12.5px);
        -webkit-backdrop-filter: blur(12.5px);
        border-radius: 25px;
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        width: 100%;
        max-width: 680px;
    }

    & .make-payment__card-header {
        font-family: 'Domine', serif;
        font-size: clamp(1.25rem, 2vw, 1.6rem);
        font-weight: 700;
        color: var(--color-navy);
        margin: 0;
        line-height: 1.2;
        text-align: center;
    }

    & .make-payment__card-content {
        font-size: 1rem;
        line-height: 1.75;
        color: #444;

        & p:first-child { margin-top: 0; }
        & p:last-child  { margin-bottom: 0; }

        & a {
            color: var(--color-navy);
            text-decoration: underline;

            &:hover { color: var(--color-gold); }
        }
    }

    /* CTA block — below the card, centered
       ====================================================================== */

    & .make-payment__cta {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
        text-align: center;
        margin-top: 2rem;

        @media (min-width: 768px) {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }
    }

    & .make-payment__cta-header {
        font-family: 'Domine', serif;
        font-size: clamp(1.25rem, 2vw, 1.6rem);
        font-weight: 700;
        color: var(--color-navy);
        margin: 0;
        line-height: 1.2;
    }

    & .make-payment__cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 32px;
        min-width: 120px;
        background-color: var(--color-gold);
        color: var(--color-white);
        font-family: 'Domine', serif;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 50px;
        transition: background-color 0.2s ease, color 0.2s ease;

        & svg {
            flex-shrink: 0;
            transition: transform 0.2s ease;
        }

        &:hover {
            background-color: var(--color-navy);
            color: var(--color-white);

            & svg {
                transform: translateX(4px);
            }
        }
    }
}
