/* ----------------------------- */
/* Donation Section */
/* ----------------------------- */
.donation {
    padding: 5rem 1rem;
    background: linear-gradient(160deg,
            rgba(216, 101, 56, 0.08),
            rgba(130, 231, 221, 0.12));
}

.donation-container {
    max-width: 1400px;
    margin: auto;
}

/* Grid */
.donation-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
}

/* Content */
.donation-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.donation-content p {
    margin-bottom: 1rem;
    max-width: 540px;
}

.donation-points {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.donation-points li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Trust */
.donation-trust {
    padding-left: 1rem;
    border-left: 3px solid var(--primary);
    max-width: 520px;
}

/* Donation Box */
.donation-box {
    background: var(--white);
    padding: 2rem 1.8rem;
    border-radius: 18px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.donation-box h3 {
    margin-bottom: 1rem;
}

/* Amounts */
/* ----------------------------- */
/* Donation Amount Select */
/* ----------------------------- */
.donation-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.donation-option {
    position: relative;
    cursor: pointer;
}

.donation-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.donation-option span {
    display: block;
    padding: 0.75rem;
    text-align: center;
    border-radius: 10px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    transition: all 0.25s ease;
}

/* Hover */
.donation-option:hover span {
    background: rgba(216, 101, 56, 0.08);
}

/* Selected */
.donation-option input:checked+span {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(216, 101, 56, 0.35);
}

/* Donate CTA */
.btn-donate {
    width: 100%;
    padding: 0.9rem;
    font-size: 1.05rem;
}

/* Note */
.donation-note {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    opacity: 0.75;
    text-align: center;
}

/* ----------------------------- */
/* Responsive */
/* ----------------------------- */
@media (max-width: 900px) {
    .donation-grid {
        grid-template-columns: 1fr;
    }

    .donation-box {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .donation-amounts {
        grid-template-columns: 1fr;
    }
}
