/* ===================================================
LISADO COMMUNITY AI
=================================================== */

#lisado-community-ai{
padding:60px 20px;
background:#f8faf8;
}

.lisado-community-container{
max-width:1280px;
margin:0 auto;
}

/* ===================================================
HEADER
=================================================== */

.lisado-community-header{
display:flex;
justify-content:space-between;
gap:40px;
margin-bottom:40px;
}

.lisado-community-title{
flex:1;
}

.lisado-ai-badge{
display:inline-block;
padding:8px 14px;
background:#eaf8ef;
color:#1b8f46;
border-radius:30px;
font-size:13px;
font-weight:600;
margin-bottom:20px;
}

.lisado-community-title h2{
font-size:42px;
line-height:1.2;
font-weight:800;
color:#111827;
margin-bottom:15px;
}

.lisado-description{
font-size:18px;
color:#4b5563;
margin-bottom:20px;
}

.lisado-note{
background:#ffffff;
border-left:4px solid #22c55e;
padding:18px;
border-radius:12px;
color:#374151;
box-shadow:0 4px 15px rgba(0,0,0,.04);
}

/* ===================================================
STATS
=================================================== */

.lisado-stats{
display:flex;
gap:15px;
align-items:flex-start;
}

.stat-card{
background:#ffffff;
min-width:170px;
padding:25px 20px;
border-radius:16px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.stat-value{
font-size:28px;
font-weight:800;
color:#111827;
}

.stat-value.online{
color:#16a34a;
}

.stat-label{
margin-top:8px;
font-size:14px;
color:#6b7280;
}

/* ===================================================
CONTENT
=================================================== */

.lisado-community-content{
display:grid;
grid-template-columns:2fr 380px;
gap:30px;
}

/* ===================================================
QUESTIONS
=================================================== */

.lisado-questions-wrapper{
background:#ffffff;
border-radius:20px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.community-heading{
padding:25px;
border-bottom:1px solid #f1f5f9;
}

.community-heading h3{
margin:0;
font-size:22px;
}

.lisado-question-list{
max-height:700px;
overflow-y:auto;
}

.lisado-question-item{
padding:25px;
border-bottom:1px solid #f1f5f9;
}

.lisado-question-item:last-child{
border-bottom:none;
}

.question-author{
font-weight:700;
color:#111827;
margin-bottom:12px;
}

.question-text{
background:#eff6ff;
padding:15px;
border-radius:12px;
margin-bottom:15px;
line-height:1.7;
}

.answer-author{
font-weight:700;
color:#16a34a;
margin-bottom:12px;
}

.answer-text{
background:#f0fdf4;
padding:15px;
border-radius:12px;
line-height:1.7;
}

.lisado-loading{
padding:50px;
text-align:center;
}

/* ===================================================
SIDEBAR
=================================================== */

.sidebar-card{
background:#ffffff;
padding:30px;
border-radius:20px;
position:sticky;
top:120px;
box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.sidebar-icon{
font-size:48px;
margin-bottom:15px;
}

.sidebar-card h3{
margin-bottom:15px;
}

.sidebar-card p{
color:#6b7280;
line-height:1.8;
margin-bottom:25px;
}

.ask-question-btn{
width:100%;
border:none;
border-radius:14px;
background:#16a34a;
color:white;
font-size:16px;
font-weight:700;
padding:16px;
cursor:pointer;
transition:.3s;
}

.ask-question-btn:hover

/* ===================================================
POPUP
=================================================== */

.lisado-popup-overlay{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,.65);
z-index:999999;
}

.lisado-popup{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:95%;
max-width:550px;
background:#ffffff;
border-radius:20px;
padding:35px;
}

.lisado-popup-close{
position:absolute;
right:15px;
top:15px;
border:none;
background:none;
font-size:30px;
cursor:pointer;
}

.popup-header{
margin-bottom:25px;
}

.popup-header h3{
margin-bottom:10px;
}

.form-group{
margin-bottom:18px;
}

.form-group label{
display:block;
margin-bottom:8px;
font-weight:600;
}

.form-group input,
.form-group textarea{
width:100%;
border:1px solid #d1d5db;
border-radius:12px;
padding:14px;
font-size:15px;
}

.form-group textarea{
resize:vertical;
}

.submit-question-btn{
width:100%;
border:none;
background:#16a34a;
color:#ffffff;
font-weight:700;
border-radius:12px;
padding:15px;
cursor:pointer;
}

.submit-message{
margin-top:15px;
text-align:center;
}

.mobile-load-more{
display:none;
}

/* ===================================================
TABLET
=================================================== */

@media (max-width:991px){

```
.lisado-community-header{
    flex-direction:column;
}

.lisado-stats{
    width:100%;
    flex-wrap:wrap;
}

.lisado-community-content{
    grid-template-columns:1fr;
}

.sidebar-card{
    position:relative;
    top:auto;
}
```

}

/* ===================================================
MOBILE
=================================================== */

@media (max-width:767px){

```
#lisado-community-ai{
    padding:40px 15px;
}

.lisado-community-title h2{
    font-size:30px;
}

.lisado-description{
    font-size:16px;
}

.lisado-stats{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
}

.stat-card{
    width:100%;
}

.lisado-question-list{
    max-height:none;
}

.lisado-question-item{
    padding:18px;
}

.mobile-load-more{
    display:block;
    padding:20px;
}

.mobile-load-more button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:12px;
    background:#f3f4f6;
    font-weight:600;
}

.ask-question-btn{

    position:fixed;

    left:15px;
    right:15px;
    bottom:15px;

    z-index:9999;

    box-shadow:
    0 10px 30px rgba(0,0,0,.25);
}

.lisado-popup{
    width:92%;
    padding:25px;
}
```

}
