/* ============================================================
   EducFind — Hero "Latest Mission" card
   Shortcode: [educfind_hero_mission]
   ============================================================ */

.ef-hero-mission-box {
    border-radius: 30px;
    display: flex;
    justify-content: center;
}

.ef-hero-mission-card {
    background: rgba(255, 255, 255, 0.82);;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(10, 14, 31, .08);
    padding: 28px 28px 24px;
    max-width: 460px;
    width: 100%;
}

/* ── Badge ──────────────────────────────────────────────────── */
.ef-hero-mission-badge {
    display: inline-block;
    background: #E8EEFD;
    color: #0165FE;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

/* ── Title + meta ───────────────────────────────────────────── */
.ef-hero-mission-title {
    font-size: 21px;
    font-weight: 700;
    color: #383841;
    margin: 0 0 6px;
    line-height: 1.3;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.ef-hero-mission-meta {
    font-size: 16px;
    color: #667085;
    margin: 0 0 18px;
}

/* ── Divider ────────────────────────────────────────────────── */
.ef-hero-mission-divider {
    border-top: 1px dashed #D0D5DD;
    margin: 0 0 14px;
}

/* ── Data rows ──────────────────────────────────────────────── */
.ef-hero-mission-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px dashed #E4E7EC;
    font-size: 16px;
}
.ef-hero-mission-row:last-of-type { border-bottom: none; }

.ef-hero-mission-label {
    color: #667085;
}

.ef-hero-mission-value {
    color: #383841;
    font-weight: 600;
    text-align: right;
}

.ef-hero-mission-salary {
    color: #383841;
    font-weight: 700;
}

/* Blurred Famille / Adresse values for guests & free-plan educators */
.ef-hero-mission-value.ef-hero-blur {
    filter: blur(4px);
    user-select: none;
    pointer-events: none;
    color: #98A2B3;
}

/* ── Unlock notice (locked state) ──────────────────────────── */
.ef-hero-mission-unlock {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #06122E;
    color: #F2F4F7;
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s ease;
}
.ef-hero-mission-unlock:hover { background: #16213A; color: #F2F4F7; }

.ef-hero-mission-unlock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F5A623;
    flex-shrink: 0;
    margin-top: 5px;
}

/* ── "View mission" link (unlocked state) ────────────────────── */
.ef-hero-mission-view {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1457FF;
    color: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 18px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s ease;
}
.ef-hero-mission-view:hover { color: #fff; }

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .ef-hero-mission-box  { padding: 0px}
    .ef-hero-mission-card { padding: 22px 20px 18px; }
    .ef-hero-mission-title { font-size: 18px; }
}
@media (max-width: 767px) {
    .ef-hero-mission-meta {
    margin: 0px;
    }
    .ef-hero-mission-row {  
        padding: 0px;   
    }
}