/**
 * ==========================================================================
 * MultiPress Enterprise Comments
 * ==========================================================================
 */

.comments-area{
    margin:60px 0;
    padding:35px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.comments-title{
    margin-bottom:30px;
    font-size:2rem;
    font-weight:700;
}

.comment-list{
    list-style:none;
    padding:0;
    margin:0;
}

.comment{
    display:flex;
    gap:20px;
    margin-bottom:35px;
    padding-bottom:30px;
    border-bottom:1px solid #eee;
}

.comment-author img{
    border-radius:50%;
}

.comment-meta{
    font-size:14px;
    color:#777;
    margin-bottom:10px;
}

.comment-content{
    line-height:1.8;
}

.comment-form-wrap{
    margin-top:50px;
}

.comment-form textarea,
.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url]{
    width:100%;
    padding:14px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:8px;
}

.mp-btn,
.comment-form input[type=submit]{
    background:var(--primary-color,#d40000);
    color:#fff;
    border:0;
    padding:14px 28px;
    border-radius:8px;
    cursor:pointer;
    font-weight:700;
}

.comment-form input[type=submit]:hover{
    opacity:.9;
}

@media(max-width:768px){

.comment{
    flex-direction:column;
}

.comments-area{
    padding:20px;
}

}
