/* ================================================================
   WMT Membership Dues & Donations — Frontend Styles v2.0
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Shared Variables ─────────────────────────────────────────── */
:root {
    --wmt-font:         'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --wmt-white:        #FFFFFF;
    --wmt-bg:           #F8FAFC;
    --wmt-border:       #E2E8F0;
    --wmt-text:         #0F172A;
    --wmt-muted:        #64748B;
    --wmt-label:        #94A3B8;
    --wmt-red:          #EF4444;
    --wmt-red-light:    #FEF2F2;
    --wmt-red-border:   #FECACA;
    --wmt-blue:         #1D68E8;
    --wmt-blue-hover:   #1558CC;
    --wmt-green:        #16A34A;
    --wmt-green-light:  #F0FDF4;
    --wmt-green-border: #BBF7D0;
    --wmt-orange:       #F59E0B;
    --wmt-orange-light: #FFFBEB;
    --wmt-pending-bg:   #FFF1F2;
    --wmt-pending-text: #E11D48;
    --wmt-radius:       14px;
    --wmt-radius-sm:    9px;
    --wmt-shadow:       0 1px 3px rgba(0,0,0,.06),0 1px 2px rgba(0,0,0,.04);
    --wmt-shadow-md:    0 4px 20px rgba(0,0,0,.09);
}

/* ================================================================
   DUES DASHBOARD
   ================================================================ */

.wmt-wrap {
    font-family: var(--wmt-font);
    background: var(--wmt-bg);
    color: var(--wmt-text);
    max-width: 760px;
    margin: 0 auto;
    padding: 32px 20px 60px;
    box-sizing: border-box;
}
*, *::before, *::after { box-sizing: inherit; }

/* Notifications */
.wmt-notification {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 18px; border-radius: var(--wmt-radius-sm);
    margin-bottom: 20px; font-size: 14px; line-height: 1.5;
}
.wmt-notification--warning { background: var(--wmt-orange-light); border: 1px solid #FDE68A; color: #92400E; }
.wmt-notification--danger  { background: var(--wmt-red-light);    border: 1px solid var(--wmt-red-border); color: #991B1B; }
.wmt-notification__body strong { font-weight: 600; }

/* Header */
.wmt-header { margin-bottom: 24px; }
.wmt-title  { font-size: 24px; font-weight: 700; color: var(--wmt-text); margin: 0 0 6px; }
.wmt-subtitle { font-size: 14px; color: var(--wmt-muted); margin: 0; }

/* Payment Due Card */
.wmt-card {
    background: var(--wmt-white);
    border-radius: var(--wmt-radius); box-shadow: var(--wmt-shadow-md);
    border: 1px solid var(--wmt-border); margin-bottom: 36px;
    overflow: hidden; position: relative; display: flex;
}
.wmt-card--pending { border-left: none; }
.wmt-card__accent  { width: 4px; flex-shrink: 0; background: var(--wmt-red); }
.wmt-card__inner   { flex: 1; padding: 28px 28px 24px; }
.wmt-card__top     { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; gap: 16px; }
.wmt-card__title-row { display: flex; align-items: flex-start; gap: 14px; }
.wmt-card__icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--wmt-red-light); border: 1px solid var(--wmt-red-border);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wmt-card__icon--green { background: var(--wmt-green-light); border-color: var(--wmt-green-border); }
.wmt-card__heading h2 { font-size: 17px; font-weight: 700; color: var(--wmt-text); margin: 0 0 4px; }
.wmt-card__heading p  { font-size: 13px; color: var(--wmt-muted); margin: 0; line-height: 1.5; }

/* Badges */
.wmt-badge {
    display: inline-flex; align-items: center;
    padding: 4px 12px; border-radius: 100px;
    font-size: 12px; font-weight: 600; letter-spacing: .3px; white-space: nowrap;
}
.wmt-badge--pending { background: var(--wmt-pending-bg); color: var(--wmt-pending-text); }
.wmt-badge--overdue { background: #FEF2F2; color: #B91C1C; }
.wmt-badge--paid    { background: var(--wmt-green-light); color: var(--wmt-green); border: 1px solid var(--wmt-green-border); }

/* Card Meta */
.wmt-card__meta          { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 26px; }
.wmt-card__meta-item     { display: flex; flex-direction: column; gap: 4px; }
.wmt-card__meta-item--right { text-align: right; }
.wmt-label   { font-size: 12px; color: var(--wmt-label); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }
.wmt-amount  { font-size: 30px; font-weight: 700; color: var(--wmt-text); line-height: 1.1; letter-spacing: -.5px; }
.wmt-duedate { font-size: 17px; font-weight: 600; color: var(--wmt-text); }

/* Buttons */
.wmt-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--wmt-font); font-size: 15px; font-weight: 600;
    cursor: pointer; border: none; border-radius: 100px;
    transition: background .2s, transform .1s, opacity .2s;
}
.wmt-btn--pay {
    width: 100%; padding: 16px 24px; background: var(--wmt-blue); color: #fff;
    box-shadow: 0 2px 8px rgba(29,104,232,.35);
}
.wmt-btn--pay:hover    { background: var(--wmt-blue-hover); transform: translateY(-1px); }
.wmt-btn--pay:active   { transform: translateY(0); }
.wmt-btn--pay:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.wmt-btn--secondary    { padding: 12px 28px; background: var(--wmt-text); color: #fff; margin-top: 8px; }
.wmt-btn--secondary:hover { background: #334155; }

/* Mode Badge */
.wmt-mode-badge {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12px; font-weight: 500; color: #92400E;
    background: #FFFBEB; border: 1px solid #FDE68A;
    border-radius: 100px; padding: 5px 14px; margin-bottom: 28px;
}
.wmt-mode-badge__dot {
    width: 7px; height: 7px; background: var(--wmt-orange);
    border-radius: 50%; animation: wmt-pulse 1.8s ease-in-out infinite;
}

/* Section */
.wmt-section-title { font-size: 20px; font-weight: 700; color: var(--wmt-text); margin: 0 0 16px; }

/* Table */
.wmt-table-wrap {
    background: var(--wmt-white); border-radius: var(--wmt-radius);
    border: 1px solid var(--wmt-border); box-shadow: var(--wmt-shadow); overflow: hidden;
}
.wmt-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.wmt-table thead tr   { background: #F8FAFC; border-bottom: 1px solid var(--wmt-border); }
.wmt-table thead th   { padding: 14px 24px; text-align: left; font-size: 12px; font-weight: 600; color: var(--wmt-muted); text-transform: uppercase; letter-spacing: .5px; }
.wmt-table tbody tr   { border-bottom: 1px solid var(--wmt-border); transition: background .15s; }
.wmt-table tbody tr:last-child { border-bottom: none; }
.wmt-table tbody tr:hover      { background: #F8FAFC; }
.wmt-table tbody td   { padding: 18px 24px; vertical-align: middle; }
.wmt-col-month  { font-weight: 600; color: var(--wmt-text); }
.wmt-col-amount { font-weight: 600; color: var(--wmt-text); }
.wmt-late-tag   { display: inline-block; font-size: 11px; font-weight: 600; color: #9A3412; background: #FFF7ED; border: 1px solid #FED7AA; border-radius: 4px; padding: 1px 6px; margin-left: 8px; }
.wmt-empty      { text-align: center; color: var(--wmt-muted); padding: 40px !important; font-style: italic; }

/* Pagination */
.wmt-pagination {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; border-top: 1px solid var(--wmt-border); background: #F8FAFC;
}
.wmt-page-btn {
    font-family: var(--wmt-font); font-size: 13px; font-weight: 500;
    color: var(--wmt-text); background: var(--wmt-white);
    border: 1px solid var(--wmt-border); border-radius: var(--wmt-radius-sm);
    padding: 8px 18px; cursor: pointer; transition: all .15s;
}
.wmt-page-btn:hover:not(:disabled) { background: var(--wmt-text); color: #fff; border-color: var(--wmt-text); }
.wmt-page-btn:disabled { opacity: .4; cursor: not-allowed; }
.wmt-page-info { font-size: 13px; color: var(--wmt-muted); font-weight: 500; }

/* Slide animations */
.wmt-table-wrap.wmt-sliding       { opacity:0; transform:translateX(30px); transition:opacity .22s ease,transform .22s ease; }
.wmt-table-wrap.wmt-sliding-in    { opacity:1; transform:translateX(0);    transition:opacity .22s ease,transform .22s ease; }
.wmt-table-wrap.wmt-sliding-back  { opacity:0; transform:translateX(-30px);transition:opacity .22s ease,transform .22s ease; }

/* Login notice */
.wmt-login-notice { padding:20px; background:var(--wmt-white); border:1px solid var(--wmt-border); border-radius:var(--wmt-radius); text-align:center; color:var(--wmt-muted); }
.wmt-login-notice a { color:var(--wmt-blue); font-weight:600; text-decoration:none; }

/* Modal */
.wmt-modal { position:fixed; inset:0; z-index:99999; display:flex; align-items:center; justify-content:center; padding:20px; }
.wmt-modal__backdrop { position:absolute; inset:0; background:rgba(15,23,42,.55); backdrop-filter:blur(3px); }
.wmt-modal__box { position:relative; background:var(--wmt-white); border-radius:16px; padding:40px 36px; text-align:center; max-width:380px; width:100%; box-shadow:0 20px 60px rgba(0,0,0,.18); animation:wmt-modal-in .25s ease forwards; }
.wmt-modal__icon { width:72px; height:72px; border-radius:50%; margin:0 auto 20px; display:flex; align-items:center; justify-content:center; }
.wmt-modal__icon--success { background:var(--wmt-green-light); }
.wmt-modal__icon--error   { background:var(--wmt-red-light); }
.wmt-modal__box h3 { font-size:20px; font-weight:700; margin:0 0 10px; color:var(--wmt-text); }
.wmt-modal__box p  { font-size:14px; color:var(--wmt-muted); margin:0 0 24px; line-height:1.6; }


/* ================================================================
   DONATION STEP FORM
   ================================================================ */

.wmt-donate-wrap {
    font-family: var(--wmt-font);
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
}

/* Step indicators */
.wmt-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 28px;
}
.wmt-step         { display: flex; align-items: center; justify-content: center; }
.wmt-step__dot    { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.3); border: 2px solid rgba(255,255,255,.4); transition: all .3s; }
.wmt-step--active .wmt-step__dot { background: #fff; border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.2); }
.wmt-step__line   { width: 48px; height: 2px; background: rgba(255,255,255,.25); margin: 0 8px; }

/* Form steps */
.wmt-form-step          { display: block; }
.wmt-form-step--hidden  { display: none; }

/* Form title */
.wmt-form-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 28px;
    line-height: 1.3;
}

/* Field groups */
.wmt-field-group {
    margin-bottom: 22px;
}
.wmt-field-group--checkbox { margin-bottom: 28px; }

.wmt-field-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    margin-bottom: 9px;
    letter-spacing: .2px;
}

/* Inputs — pill shape, 56px, fully rounded */
.wmt-input {
    width: 100%;
    height: 56px;
    font-family: var(--wmt-font);
    font-size: 15px;
    color: rgba(255, 255, 255, .95);
    background: rgba(255, 255, 255, .12);
    border: 1.5px solid rgba(255, 255, 255, .28);
    border-radius: 100px !important;
    padding: 0 24px;
    outline: none;
    transition: background .2s, border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    line-height: 56px;
    display: block;
}
.wmt-input::placeholder { color: rgba(255, 255, 255, .38); }
.wmt-input:focus {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .6);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .08);
}
.wmt-input::-webkit-outer-spin-button,
.wmt-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Phone field */
.wmt-phone-wrap {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.wmt-phone-code {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .18);
    border: 1.5px solid rgba(255, 255, 255, .22);
    border-radius: 100px;
    padding: 0 18px;
    height: 56px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .95);
    cursor: pointer;
    white-space: nowrap;
    min-width: 108px;
    transition: background .2s;
    user-select: none;
    box-sizing: border-box;
}
.wmt-phone-code:hover { background: rgba(255,255,255,.25); }

.wmt-phone-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: rgba(30,30,40,.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    padding: 6px 0;
    z-index: 999;
    display: none;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.wmt-phone-dropdown.wmt-open { display: block; animation: wmt-drop-in .18s ease; }
.wmt-phone-option {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    cursor: pointer;
    transition: background .15s;
}
.wmt-phone-option:hover { background: rgba(255,255,255,.1); }

.wmt-input--phone { flex: 1; }

/* Amount field with GHS suffix */
.wmt-amount-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.wmt-input--amount { padding-right: 72px; }
.wmt-amount-suffix {
    position: absolute;
    right: 24px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,.7);
    pointer-events: none;
    letter-spacing: .5px;
    line-height: 56px;
}

/* Frequency selector — matches SVG exactly:
   outer pill = rgba(white, 0.3), selected = extra rgba(white, 0.3) layered on top */
.wmt-frequency-group {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    background: rgba(255, 255, 255, 0.3) !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 100px !important;
    padding: 4px !important;
    gap: 0 !important;
    height: 56px !important;
    box-sizing: border-box !important;
}

.wmt-freq-btn {
    font-family: var(--wmt-font) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 100px !important;
    padding: 0 12px !important;
    cursor: pointer;
    transition: color .18s, background .18s;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1;
    text-decoration: none !important;
}

.wmt-freq-btn:hover,
.wmt-freq-btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.wmt-freq-btn:hover:not(.wmt-freq-btn--active) {
    color: rgba(255, 255, 255, 0.95) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: none !important;
}

/* Selected: additional rgba(white,0.3) pill layered on the container's 0.3 → visually brighter */
.wmt-freq-btn--active,
.wmt-freq-btn.wmt-freq-btn--active {
    background: rgba(255, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 1) !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: none !important;
}

/* Checkbox */
.wmt-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}
.wmt-checkbox { display: none; }
.wmt-checkbox-custom {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 5px;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: all .2s;
    position: relative;
}
.wmt-checkbox:checked + .wmt-checkbox-custom {
    background: rgba(255,255,255,.9);
    border-color: rgba(255,255,255,.9);
}
.wmt-checkbox:checked + .wmt-checkbox-custom::after {
    content: '';
    width: 5px;
    height: 9px;
    border: 2px solid #0F172A;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
    display: block;
}
.wmt-checkbox-text {
    font-size: 13px;
    color: rgba(255,255,255,.75);
    line-height: 1.5;
}

/* Form Actions */
.wmt-form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 8px;
}
.wmt-form-actions__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Form Buttons */
.wmt-form-btn {
    font-family: var(--wmt-font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: 100px;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.wmt-form-btn--next,
.wmt-form-btn--donate {
    height: 56px;
    padding: 0 40px;
    background: rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .95);
    border: 1.5px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(6px);
}
.wmt-form-btn--next:hover,
.wmt-form-btn--donate:hover {
    background: rgba(255, 255, 255, .32);
    border-color: rgba(255, 255, 255, .5);
}
.wmt-form-btn--icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .9);
    border: 1.5px solid rgba(255, 255, 255, .25);
    padding: 0;
    justify-content: center;
    flex-shrink: 0;
}
.wmt-form-btn--icon:hover {
    background: rgba(255, 255, 255, .28);
}
.wmt-form-btn--back {
    height: 56px;
    padding: 0 22px;
    background: transparent;
    color: rgba(255, 255, 255, .6);
    border: 1.5px solid rgba(255, 255, 255, .22);
    font-size: 14px;
    border-radius: 100px;
}
.wmt-form-btn--back:hover { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.4); }

/* Field Errors */
.wmt-field-error {
    display: block;
    font-size: 12px;
    color: #FCA5A5;
    margin-top: 6px;
    min-height: 16px;
    padding-left: 4px;
}

/* Loading Overlay */
.wmt-donate-loading {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--wmt-radius);
    z-index: 10;
    gap: 16px;
}
.wmt-donate-loading p { color: #fff; font-size: 14px; margin: 0; }
.wmt-donate-spinner {
    width: 36px; height: 36px;
    border: 3px solid rgba(255,255,255,.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: wmt-spin .7s linear infinite;
}


/* ================================================================
   THANK YOU PAGE
   ================================================================ */

.wmt-ty-page {
    font-family: var(--wmt-font);
    background: #fff;
    min-height: 100vh;
    padding: 48px 24px 40px;
    text-align: center;
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Close button */
.wmt-ty-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    display: flex; align-items: center; justify-content: center;
    color: #64748B;
    text-decoration: none;
    transition: all .2s;
}
.wmt-ty-close:hover { background: #E2E8F0; color: #0F172A; }

/* Icon */
.wmt-ty-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: #1D68E8;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 8px 24px rgba(29,104,232,.35);
    animation: wmt-icon-pop .4s cubic-bezier(.34,1.56,.64,1) both;
}

/* Title */
.wmt-ty-title {
    font-size: 26px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 14px;
    letter-spacing: -.3px;
}

/* Subtitle */
.wmt-ty-subtitle {
    font-size: 15px;
    color: #64748B;
    line-height: 1.65;
    margin: 0 0 36px;
}

/* Donation Details */
.wmt-ty-details { text-align: left; }

.wmt-ty-details__heading {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 16px;
    text-align: center;
}

.wmt-ty-card {
    background: #EFF6FF;
    border-radius: 16px;
    padding: 6px 0;
    margin-bottom: 32px;
}

.wmt-ty-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(29,104,232,.1);
}
.wmt-ty-row:last-child { border-bottom: none; }

.wmt-ty-row__label {
    font-size: 14px;
    color: #64748B;
    font-weight: 400;
}
.wmt-ty-row__value {
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    text-align: right;
}

.wmt-ty-invalid {
    font-size: 14px;
    color: #64748B;
    text-align: center;
    padding: 24px;
    background: #F8FAFC;
    border-radius: 12px;
    margin: 24px 0;
}

/* Footer */
.wmt-ty-footer {
    font-size: 13px;
    color: #94A3B8;
    margin: 0;
    padding-top: 8px;
}


/* ================================================================
   ANIMATIONS
   ================================================================ */

@keyframes wmt-pulse    { 0%,100%{opacity:1} 50%{opacity:.4} }
@keyframes wmt-spin     { to{transform:rotate(360deg)} }
@keyframes wmt-modal-in { from{opacity:0;transform:scale(.9) translateY(12px)} to{opacity:1;transform:scale(1) translateY(0)} }
@keyframes wmt-icon-pop { from{opacity:0;transform:scale(.5)} to{opacity:1;transform:scale(1)} }
@keyframes wmt-drop-in  { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }

/* Step transitions */
.wmt-form-step { animation: wmt-step-in .25s ease both; }
@keyframes wmt-step-in { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:translateX(0)} }
.wmt-form-step--exit   { animation: wmt-step-out .2s ease both; }
@keyframes wmt-step-out { from{opacity:1;transform:translateX(0)} to{opacity:0;transform:translateX(-20px)} }


/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 520px) {
    .wmt-wrap         { padding:20px 14px 40px; }
    .wmt-card__inner  { padding:20px 18px; }
    .wmt-amount       { font-size:24px; }
    .wmt-table thead th,
    .wmt-table tbody td { padding:14px 16px; }

    .wmt-donate-wrap  { padding:0; }
    .wmt-form-title   { font-size:18px; }
    .wmt-frequency-group { gap:2px; }
    .wmt-freq-btn     { font-size:13px; padding:11px 6px; }

    .wmt-ty-page      { padding:40px 18px 32px; }
    .wmt-ty-title     { font-size:22px; }
    .wmt-ty-row       { padding:14px 18px; }
}
