/* v4.4.4 — Home categories first + lesson/exam/chat fixes */

.felah-home-categories-first{
    max-width:1180px;
    margin:24px auto;
    padding:0 18px;
}
.felah-home-categories-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:12px;
    margin-bottom:14px;
}
.felah-home-categories-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}
.felah-home-category-card{
    background:var(--card,#082818);
    border:1px solid var(--border,rgba(232,248,235,.14));
    border-radius:24px;
    padding:18px;
    color:inherit;
    display:grid;
    gap:12px;
}
.felah-home-category-card h3{
    margin:0;
    font-size:21px;
}
.felah-home-stats{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}
.felah-home-stat{
    min-height:32px;
    padding:0 10px;
    border-radius:999px;
    background:rgba(255,255,255,.06);
    display:inline-flex;
    align-items:center;
    font-size:13px;
}
.felah-home-alert{
    border-radius:16px;
    padding:10px 12px;
    background:rgba(30,117,73,.16);
    font-size:14px;
}
.lesson-complete-section{
    border-color:rgba(30,117,73,.40) !important;
}
html[data-theme="light"] .felah-home-category-card{
    background:#ffffff !important;
    color:#173d28 !important;
    border-color:rgba(23,61,40,.14) !important;
}
html[data-theme="light"] .felah-home-stat{
    background:#f4f0e6 !important;
}
html[data-theme="light"] .felah-home-alert{
    background:#eef5ef !important;
}
@media(max-width:900px){
    .felah-home-categories-grid{
        grid-template-columns:1fr;
    }
    .felah-home-categories-first{
        margin:18px auto;
    }
}
