
.lfcrm-portal{
    max-width:1200px;
    margin:30px auto;
    display:grid;
    grid-template-columns:240px 1fr;
    gap:22px;
    font-family:inherit;
}
.lfcrm-sidebar{
    background:#143d5d;
    color:#fff;
    border-radius:24px;
    padding:22px;
    position:sticky;
    top:20px;
    align-self:start;
}
.lfcrm-sidebar h3{
    margin-top:0;
    font-size:22px;
}
.lfcrm-sidebar a{
    display:block;
    color:#fff;
    text-decoration:none;
    padding:10px 12px;
    margin:6px 0;
    border-radius:12px;
    background:rgba(255,255,255,.08);
    font-weight:700;
}
.lfcrm-sidebar a:hover{
    background:rgba(255,255,255,.18);
}
.lfcrm-main{
    min-width:0;
}
.lfcrm-hero{
    background:#fff7ed;
    border:1px solid #fed7aa;
    border-radius:28px;
    padding:28px;
    margin-bottom:20px;
}
.lfcrm-hero h1{
    margin:0 0 8px;
    color:#143d5d;
    font-size:34px;
}
.lfcrm-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:14px;
    margin-bottom:20px;
}
.lfcrm-front-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:18px;
    box-shadow:0 8px 24px rgba(0,0,0,.05);
}
.lfcrm-front-card strong{
    display:block;
    color:#143d5d;
    font-size:26px;
    margin-bottom:4px;
}
.lfcrm-front-card span{
    display:block;
    font-weight:800;
}
.lfcrm-front-card small{
    color:#64748b;
}
.lfcrm-panel{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:22px;
    margin-bottom:20px;
    box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.lfcrm-panel h2{
    color:#143d5d;
    margin-top:0;
}
.lfcrm-doc-list{
    display:grid;
    gap:10px;
}
.lfcrm-doc-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:14px;
}
.lfcrm-doc-row a{
    background:#143d5d;
    color:#fff;
    border-radius:999px;
    padding:8px 12px;
    text-decoration:none;
    font-weight:800;
}
.lfcrm-doc-row span{
    color:#64748b;
}
.lfcrm-session-box{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:16px;
    margin:12px 0;
}
.lfcrm-session-box h3{
    margin-top:0;
    color:#143d5d;
}
@media(max-width:800px){
    .lfcrm-portal{
        grid-template-columns:1fr;
        margin:15px;
    }
    .lfcrm-sidebar{
        position:relative;
        top:auto;
    }
    .lfcrm-doc-row{
        flex-direction:column;
        align-items:flex-start;
    }
}
