.support-us-content {
    padding: 72px 0 78px;
    background: #f3f1ed;
}

.support-us-grid {
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.support-method-card {
    position: relative;
    min-height: 310px;
    padding: 38px 38px 34px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(8, 8, 8, .09);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .08);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.support-method-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 82px;
    height: 3px;
    background: #d71920;
}

.support-method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .12);
}

.support-method-card__logo {
    width: 220px;
    height: 92px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.support-method-card__logo-image {
    display: block;
    object-fit: contain;
    object-position: left center;
}

.support-method-card__logo-image--easyfundraising {
    width: 88px;
    height: 88px;
}

.support-method-card__logo-image--paypal {
    width: 210px;
    max-height: 72px;
}

.support-method-card__mark {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 2px solid #d71920;
    border-radius: 50%;
    color: #d71920;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 2rem;
    line-height: 1;
}

.support-method-card__body h2 {
    margin: 0 0 14px;
    color: #121212;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(2rem, 3vw, 2.65rem);
    font-weight: 400;
    line-height: 1;
}

.support-method-card__body p {
    max-width: 560px;
    margin: 0;
    color: #626262;
    font-size: .98rem;
    line-height: 1.68;
}

.support-method-card__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 30px;
    color: #d71920;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.support-method-card__action span {
    transition: transform .18s ease;
}

.support-method-card__action:hover span {
    transform: translate(3px, -3px);
}

.support-us-thanks {
    background: #fff;
    border-top: 1px solid #e1e1de;
}

.support-us-thanks__inner {
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
    padding: 48px 0 52px;
}

.support-us-thanks p {
    max-width: 900px;
    margin: 0;
    color: #121212;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.25;
}

@media (max-width: 760px) {
    .support-us-grid,
    .support-us-thanks__inner {
        width: min(100% - 32px, 1180px);
    }

    .support-us-content {
        padding: 44px 0 50px;
    }

    .support-us-grid {
        grid-template-columns: 1fr;
    }

    .support-method-card {
        min-height: 285px;
        padding: 30px 26px 28px;
    }

    .support-us-thanks__inner {
        padding: 38px 0 42px;
    }
}
