.swish-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0 22px;
}

.swish-method {
    display: flex;
    min-width: 0;
    min-height: 390px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 20px;
    border: 1px solid rgba(215, 173, 92, .3);
    border-radius: 6px;
    background: rgba(255, 255, 255, .018);
}

.swish-method h3 {
    margin: 8px 0 16px;
    font-size: clamp(1.55rem, 2.7vw, 2.1rem);
}

.swish-method p {
    margin: 12px 0 18px;
    font-size: .86rem;
}

.swish-method-label {
    color: var(--gold);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.swish-qr-method .qr {
    width: min(220px, 100%);
    margin: 0 auto;
}

.swish-link-method {
    justify-content: flex-start;
    background: linear-gradient(145deg, rgba(215, 173, 92, .09), rgba(255, 255, 255, .018));
}

.swish-link-method .button {
    margin-top: auto;
}

.swish-launch-icon {
    display: grid;
    width: 196px;
    height: 196px;
    place-items: center;
    margin: 1px 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215, 173, 92, .12), transparent 68%);
}

.swish-launch-icon span {
    width: 92px;
    height: 92px;
    border: 14px solid var(--gold);
    border-right-color: #5cc1cf;
    border-bottom-color: #7b6bd5;
    border-radius: 50%;
    transform: rotate(-18deg);
    box-shadow: 0 0 38px rgba(215, 173, 92, .2);
}

.non-refundable-note {
    display: block;
    margin: 14px 0 0;
    color: #8f8980;
    font-size: .72rem;
}

.terms {
    display: block !important;
}

.terms input {
    margin-right: 8px;
}

@media (max-width: 620px) {
    .swish-choice-grid {
        grid-template-columns: 1fr;
    }

    .swish-method {
        min-height: 0;
    }

    .swish-link-method {
        grid-row: 1;
    }

    .swish-launch-icon {
        width: 150px;
        height: 150px;
    }
}
