/* ============================================================
   Academy Gamification — BuddyBoss Frontend Styles
   Scoped strictly to .academy-* selectors.
   Loaded via bp_enqueue_scripts — BuddyBoss pages only.
   No inline styles are used anywhere in the plugin.
   ============================================================ */

/* ── Profile Header Stats Block ──────────────────────────── */
.academy-profile-stats {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        margin-top: 8px;
        font-size: 0.88rem;
        flex-wrap: wrap;
}

.academy-level-badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #1e1e2d;
        color: #fff;
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 0.82rem;
        font-weight: 500;
        letter-spacing: .03em;
}

.academy-level-badge strong {
        font-size: 1rem;
        font-weight: 700;
}

.academy-currency-badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #f4f0e8;
        color: #6b4f1a;
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 0.82rem;
        font-weight: 500;
        border: 1px solid #d4b88a;
}

.academy-currency-badge strong {
        font-weight: 700;
}

/* ── XP Progress Bar ─────────────────────────────────────── */
.academy-xp-bar {
        width: 120px;
        height: 6px;
        background: #e4e4e4;
        border-radius: 3px;
        overflow: hidden;
        display: inline-block;
        vertical-align: middle;
}

.academy-xp-fill {
        height: 100%;
        background: linear-gradient(90deg, #4a90d9, #7b5ea7);
        border-radius: 3px;
        transition: width 0.4s ease;
        min-width: 2px;
}

/* ── Member Directory Level Badge ────────────────────────── */
.academy-dir-level-badge {
        display: inline-block;
        background: #1e1e2d;
        color: #fff;
        font-size: 0.72rem;
        font-weight: 600;
        padding: 2px 7px;
        border-radius: 12px;
        margin-left: 6px;
        vertical-align: middle;
        letter-spacing: .03em;
}

/* ── Phase 2A: Equipped title — profile header ───────────── */
.academy-equipped-title {
        display: block;
        width: 100%;
        font-size: 0.82rem;
        font-style: italic;
        color: #7b5ea7;
        font-weight: 500;
        letter-spacing: 0.02em;
        margin-bottom: 4px;
}

/* ── Phase 2A: Equipped title — member directory card ────── */
.academy-dir-title {
        display: inline-block;
        font-size: 0.72rem;
        font-style: italic;
        color: #7b5ea7;
        margin-left: 6px;
        vertical-align: middle;
}

/* ── Phase 2A: Pierres icon in profile header ────────────── */
.academy-icon-pierre-profile {
        width: 14px;
        height: 14px;
        object-fit: contain;
        vertical-align: middle;
}
