<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Charity Card Hover Animations */
.charity-card {
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
}

.charity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.charity-card .card-body {
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.charity-card:hover .card-body {
    background-color: var(--bs-gray-100);
}

.charity-card .description-text {
    flex-grow: 1;
    min-height: 180px;
}

.charity-card .btn-primary {
    transition: all 0.3s ease-in-out;
}

.charity-card:hover .btn-primary {
    transform: scale(1.05);
}</pre></body></html>