/* Person Widget */
.elkifahcharity-person-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Card Container */
.elkifahcharity-person-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-person-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-person-content {
    position: relative;
    z-index: 2; /* Bring content above overlay */
    padding: 2rem;
    color: #fff;
    text-align: left;
}

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

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

/* Responsive adjustments */
@media (max-width: 767px) {
    .elkifahcharity-person-card {
        min-height: 300px !important;
    }

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