/* CTA Cards Grid */
.elkifahcharity-cta-grid {
    display: grid;
    width: 100%;
}

.elkifahcharity-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* Space between card and button */
}

/* Card Container */
.elkifahcharity-cta-card {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align content to bottom */
    overflow: hidden;
}

/* Overlay */
.elkifahcharity-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* Default overlay */
    z-index: 1;
    transition: opacity 0.3s ease;
}

/* Content */
.elkifahcharity-cta-content {
    position: relative;
    z-index: 2;
    /* Bring content above overlay */
    padding: 2rem;
    color: #fff;
    text-align: left;
}

.elkifahcharity-cta-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.elkifahcharity-cta-description {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

/* Button */
.elkifahcharity-cta-button-wrapper {
    text-align: center;
    /* Center button below map */
}

.elkifahcharity-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background-color: #10b981;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.elkifahcharity-cta-button:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.elkifahcharity-cta-button i {
    transition: transform 0.3s ease;
}

.elkifahcharity-cta-button:hover i {
    transform: translateX(4px) rotate(-15deg);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .elkifahcharity-cta-grid {
        grid-template-columns: 1fr !important;
        /* Force single column on mobile */
        gap: 2rem !important;
    }

    .elkifahcharity-cta-card {
        min-height: 300px !important;
        /* Smaller height on mobile */
    }

    .elkifahcharity-cta-content {
        padding: 1.5rem;
    }

    .elkifahcharity-cta-button {
        width: 100%;
        /* Full width button on mobile */
    }
}