.donation-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    height: 180px;
}

.donation-bg {
    position: absolute;
    inset: 0;
    transition: none;
    z-index: 0;
}

.donation-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 59, 47, 0.7);
    transition: none;
    z-index: 1;
}

.donation-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.donation-text h6 {
    color: #4caf50;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.donation-text h3 {
    font-weight: 700;
    margin-bottom: 0;
}

.donation-icon {
    font-size: 3rem;
    color: #fff;
}

.donation-btn {
    background-color: #4caf50;
    border: none;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px 20px 0 auto;
    /* yarısı dışarıda görünsün */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: none;
    z-index: 3;
}

/* Ortak hover: kolon üzerine gelince hem kart hem buton etkilenir */
.col-card:hover .donation-bg {
    transform: none;
}

.col-card:hover .donation-overlay {
    background: rgba(15, 107, 79, 0.7);
}

.col-card:hover .donation-btn {
    background-color: #1b3b2f;
    transform: none;
}
.card-ayar{
    margin-top: 60px!important;
}
@media (max-width: 768px) {
    .donation-wrapper {
        height: auto;
        text-align: center;
        z-index: 0!important;
    }

    .donation-btn {
        margin-top: -30px;
            z-index: 0!important;
    }
    .card-ayar{
    margin-top: -20px!important;
    z-index: 1!important;
}

}

