.member-card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.member-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.member-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover; /* applies when the avatar is a photo */
}

.member-name {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.25rem;
}

.member-location {
    color: #6c757d;
    font-size: 0.9rem;
}

.region-badge {
    background: #eef5fb;
    color: var(--secondary-blue);
}

.term-badge {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.continuing-text {
    color: var(--bs-success);
    font-weight: 600;
    font-style: italic;
    font-size: 0.8rem;
}
