/* ========= AGORA Memories ========= */

:root{
    --main:#2f6f43;
    --main2:#3b8452;
    --border:#e5e5e5;
}

.agora-wrapper{
    max-width:850px;
    margin:auto;
}

.agora-header{
    margin-bottom:20px;
}

.agora-header h2{
    margin-bottom:5px;
}

#agora-memory-form{

    background:#fff;

    border:1px solid var(--border);

    border-radius:12px;

    padding:14px;

    margin-bottom:25px;

}

.agora-field{

    margin-bottom:10px;

}

.agora-field label{

    display:block;

    font-weight:600;

    margin-bottom:5px;

    font-size:14px;

}

.agora-field input,
.agora-field textarea{

    width:100%;

    padding:10px 12px;

    border:1px solid #d8d8d8;

    border-radius:8px;

    font-size:15px;

    box-sizing:border-box;

}

.agora-field textarea{

    min-height:90px;

    resize:vertical;

}

.agora-counter{

    text-align:right;

    font-size:11px;

    color:#888;

}

#agora-memory-form button{

    background:var(--main);

    color:#fff;

    border:none;

    border-radius:8px;

    padding:10px 20px;

    font-size:15px;

    cursor:pointer;

}

#agora-memory-form button:hover{

    background:var(--main2);

}

.agora-card{

    display:flex;

    gap:18px;

    align-items:flex-start;

    border:1px solid var(--border);

    border-radius:12px;

    padding:15px;

    margin-bottom:10px;

    transition:.2s;

}

.agora-card:hover{

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.agora-avatar{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

    flex-shrink:0;

}

.agora-content{

    flex:1;

}

.agora-content h3{

    margin:0;

    font-size:18px;

}

.agora-date{

    font-size:12px;

    color:#888;

    margin-bottom:10px;

}

.agora-like{

    margin-top:10px;

    border:1px solid #ddd;

    background:#fff;

    border-radius:20px;

    padding:6px 14px;

    cursor:pointer;

}

.agora-like:hover{

    background:#f5f5f5;

}

.agora-pagination{

    text-align:center;

    margin-top:25px;

}

.agora-pagination .page-numbers{

    display:inline-block;

    padding:8px 12px;

    margin:3px;

    border:1px solid #ddd;

    border-radius:6px;

    text-decoration:none;

}

.current{

    background:var(--main);

    color:#fff !important;

}

/* v1.0.1 compact */
#agora-memory-form textarea{
    min-height:90px !important;
}
#agora-memory-form{
    padding:14px !important;
}
.agora-card{
    background:#fff !important;
}


/* Mobile fix */
@media (max-width:768px){

.agora-card{
    display:block !important;
    overflow:visible !important;
    height:auto !important;
}

.agora-content{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    overflow:visible !important;
    height:auto !important;
    max-height:none !important;
    white-space:normal !important;
}

.agora-avatar{
    float:left;
    margin:0 12px 8px 0;
}

}
