/* Fundraiser Banner */
.fundraiser-banner {
    background: linear-gradient(90deg, #1a2742, #1f3a5f);
    border-top: 1px solid rgba(108, 228, 214, 0.3);
    border-bottom: 1px solid rgba(108, 228, 214, 0.3);
    padding: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    width: 100%;
    animation: fadeIn 0.8s ease;
}

.fundraiser-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.fundraiser-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(243, 200, 102, 0.5));
}

.fundraiser-text {
    flex: 1;
    min-width: 280px;
}

.fundraiser-text strong {
    display: block;
    color: var(--accent-2);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.fundraiser-text p {
    color: var(--text-main);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.fundraiser-button {
    background: linear-gradient(135deg, #6ce4d6, #4da3ff);
    color: #050c1f;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(108, 228, 214, 0.3);
}

.fundraiser-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 228, 214, 0.5);
    text-decoration: none;
    filter: brightness(1.1);
}

@media (max-width: 640px) {
    .fundraiser-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .fundraiser-text {
        min-width: auto;
    }
}
