/* ========================================
   CONTAINER GERAL
======================================== */

.pea-comments-wrapper {
    margin-top: 40px;
    font-size: 14px;
}

.pea-comment-message {
    border-radius: 10px;
    margin-bottom: 22px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
}

.pea-comment-message-success {
    background: #edf8f1;
    border: 1px solid #b8e4c7;
    color: #245c36;
}

/* ========================================
   TÍTULOS
======================================== */

.pea-comments-title,
.comment-reply-title {
    font-size: 24px;
    font-weight: 700;
    color: #173C42;
    margin-bottom: 25px;
}

/* ========================================
   CARD DO COMENTÁRIO
======================================== */

.pea-comment-item {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;

    box-shadow:
        0 2px 8px rgba(0,0,0,.04),
        0 8px 24px rgba(0,0,0,.04);

    transition: all .2s ease;
}

.pea-comment-item:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 16px rgba(0,0,0,.08),
        0 12px 32px rgba(0,0,0,.08);
}

.pea-comment-children {
    margin-left: 48px;
    padding-left: 18px;
    border-left: 3px solid rgba(252,148,84,.35);
}

.pea-comment-reply {
    margin-bottom: 20px;
}

.pea-comment-author {
    font-size: 15px;
    font-weight: 700;
    color: #173C42;
}

.pea-comment-date {
    font-size: 12px;
    color: #999;
    margin-top: 3px;
    margin-bottom: 12px;
}

.pea-comment-content {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

/* ========================================
   FORMULÁRIO
======================================== */

.comment-form {
    margin-top: 30px;
}

.comment-form p {
    margin-bottom: 18px;
}

.comment-notes,
.logged-in-as {
    font-size: 13px;
    color: #666;
}

.comment-form label {
    display: block;
    margin-bottom: 6px;

    font-size: 13px;
    font-weight: 600;

    color: #173C42;
}

/* ========================================
   INPUTS
======================================== */

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {

    width: 100%;
    padding: 3px 9px;

    border: 1px solid #d8d8d8;
    border-radius: 10px;

    background: #fff;

    font-size: 12px;

    transition: all .2s ease;

    box-sizing: border-box;
}

.comment-form textarea {
    min-height: 180px;
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {

    outline: none;

    border-color: #FC9454;

    box-shadow:
        0 0 0 3px rgba(252,148,84,.15);
}

/* ========================================
   CHECKBOX
======================================== */

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 13px;
}

/* ========================================
   BOTÃO
======================================== */

.comment-form .submit {

    background: #FC9454 !important;
    color: #fff !important;

    border: none !important;
    border-radius: 10px;

    padding: 3px 9px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all .2s ease;
}

.comment-form .submit:hover {

    background: #173C42 !important;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(23,60,66,.25);
}

/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 768px) {

    .pea-comments-title,
    .comment-reply-title {
        font-size: 22px;
    }

    .pea-comment-item {
        padding: 15px;
    }

    .pea-comment-children {
        margin-left: 18px;
        padding-left: 12px;
    }

    .comment-form input,
    .comment-form textarea {
        font-size: 16px;
    }
}


/* ========================================
   RESPONDER COMENTARIO
======================================== */
.pea-comment-actions {
    margin-top: 12px;
}

.pea-comment-actions a {
    color: #FC9454;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.pea-comment-actions a:hover {
    color: #173C42;
}
