.xd-other-fundraisers {
    width: 100%;
    padding: clamp(52px, 5.5vw, 84px) clamp(24px, 4vw, 50px) clamp(70px, 6.5vw, 96px);
    box-sizing: border-box;
    background: #ffffff;
}

.xd-other-fundraisers__heading {
    margin: 0 0 clamp(30px, 3.5vw, 46px);
    color: #1e1d1d;
    text-align: center;
    font-size: clamp(4rem, 4.4vw, 4.9rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.xd-other-fundraisers__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    max-width: 1304px;
    margin: 0 auto;
}

.xd-other-fundraisers__card {
    padding: 36px 48px 19px;
    border: 3px solid #592b8a;
    border-radius: 16px;
    box-sizing: border-box;
}

.xd-other-fundraisers__title {
    margin: 0 0 18px;
    color: #241139;
    font-size: clamp(3rem, 2.1vw, 2.95rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.xd-other-fundraisers__image {
    display: block;
    width: 100%;
    height: 290px;
    margin-bottom: 18px;
    border-radius: 16px;
    object-fit: cover;
}

.xd-other-fundraisers__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.xd-other-fundraisers__amount {
    color: #241139;
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
}

.xd-other-fundraisers__goal {
    color: #241139;
    font-size: 1.8rem;
    line-height: 1.2;
}

.xd-other-fundraisers__progress {
    height: 8px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: #efeaf4;
    overflow: hidden;
}

.xd-other-fundraisers__progress-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: #592b8a;
}

.xd-other-fundraisers__button,
.xd-other-fundraisers__button:visited {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 4px;
    background: #ffb92a;
    color: #150a22;
    font-size: 19px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
}

.xd-other-fundraisers__button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(45deg, #FFB92A, #Fbd179);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.xd-other-fundraisers__button:hover,
.xd-other-fundraisers__button:focus-visible {
    color: #150a22;
    text-decoration: none;
}

.xd-other-fundraisers__button:hover::after,
.xd-other-fundraisers__button:focus-visible::after {
    opacity: 1;
}

@media (max-width: 767px) {
    .xd-other-fundraisers {
        padding: 48px 20px 68px;
    }

    .xd-other-fundraisers__grid {
        grid-template-columns: 1fr;
    }
    .xd-other-fundraisers__grid {
    gap: 20px;
    }

    .xd-other-fundraisers__card {
        padding: 22px;
    }

    .xd-other-fundraisers__image {
        height: 220px;
        border-radius: 14px;
    }

    .xd-other-fundraisers__meta {
        flex-direction: row;
        align-items: flex-start;
        gap: 6px;
    }
    .xd-other-fundraisers__amount {
    font-size: 2.2rem;
    }
    .xd-other-fundraisers__goal {
    font-size: 1.6rem;
    }

    .xd-other-fundraisers__title {
        line-height: 1.2;
    }
}
