/* =========================================
   PC COMMENTS
   ========================================= */

.pc-comments-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 14px;
    border-bottom: 1px solid #292929;
}

.pc-comments-header h4 {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.pc-comments-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #00bfff, transparent);
}


/* =========================================
   COMMENT LIST
   ========================================= */

.pc-comments-thread {
    width: 100%;
}

.pc-comments-content {
    width: 100%;
}

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

.pc-comments-list li {
    margin: 0 0 18px;
    padding: 0;
}


/* =========================================
   COMMENT BOX
   ========================================= */

.pc-comments-list .comment-body {
    overflow: hidden;
    background: #181818;
    border: 1px solid #292929;
    border-radius: 10px;
}

.pc-comments-list .comment-meta {
    display: flex;
    align-items: center;
    min-height: 45px;
    padding: 0 15px;
    background: #202020;
    border-bottom: 1px solid #292929;
}


/* Author */

.pc-comments-list .comment-author {
    display: flex;
    align-items: center;
    gap: 9px;
}

.pc-comments-list .comment-author .fn {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


/* Avatar */

.pc-comments-list .comment-author .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}


/* Date */

.pc-comments-list .comment-metadata {
    margin-left: auto;
}

.pc-comments-list .comment-metadata a {
    color: #777;
    font-size: 11px;
    text-decoration: none;
}


/* Comment content */

.pc-comments-list .comment-content {
    padding: 15px 17px;
    color: #aaa;
    font-size: 13px;
    line-height: 1.7;
}

.pc-comments-list .comment-content p {
    margin: 0 0 10px;
}


/* =========================================
   REPLY
   ========================================= */

.pc-comments-list .reply {
    padding: 0 17px 15px;
}

.pc-comments-list .comment-reply-link {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 5px;
    background: #00aeea;
    color: #fff !important;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none !important;
}


/* =========================================
   COMMENT RULES
   ========================================= */

#pc-comments-message {
    margin: 25px 0;
    padding: 20px;
    background: #181818;
    border: 1px solid #292929;
    border-left: 3px solid #00bfff;
    border-radius: 8px;
    color: #999;
    font-size: 12px;
    line-height: 1.6;
}

#pc-comments-message > strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 13px;
}

.pc-comment-rule {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 8px;
}

.pc-comment-rule span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #00aeea;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.pc-comment-rule p {
    margin: 0;
}

.pc-comment-rule a {
    color: #00bfff;
    font-weight: 600;
    text-decoration: none;
}

.pc-comment-rule a:hover {
    color: #fff;
    text-decoration: underline;
}


/* =========================================
   COMMENT FORM
   ========================================= */

.pc-comments-form {
    padding: 20px;
    background: #161616;
    border: 1px solid #292929;
    border-radius: 10px;
}


/* Logged in text */

.pc-comments-form .logged-in-as {
    margin-bottom: 15px;
    color: #888;
    font-size: 12px;
}

.pc-comments-form .logged-in-as a {
    color: #00bfff;
    text-decoration: none;
}


/* Label */

.pc-comments-form .comment-form-comment label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
    font-size: 12px;
    font-weight: 600;
}

.pc-comments-form .comment-form-comment label:before {
    content: "✎ ";
    color: #00bfff;
}


/* Textarea */

.pc-comments-form .comment-form-comment textarea {
    display: block;
    width: 100%;
    min-height: 150px;
    padding: 14px 15px;
    box-sizing: border-box;

    background: #202020;
    border: 1px solid #333;
    border-radius: 7px;

    color: #eee;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.6;

    outline: none;
    resize: vertical;

    transition: .2s ease;
}

.pc-comments-form .comment-form-comment textarea:focus {
    border-color: #00bfff;
    box-shadow: 0 0 0 3px rgba(0, 191, 255, .08);
}


/* Required */

.pc-comments-form .required {
    color: #ff4d5a;
}


/* =========================================
   SUBMIT
   ========================================= */

.pc-comments-form .form-submit {
    margin-top: 15px !important;
}

.pc-comments-form .form-submit .submit {
    min-width: 150px;
    padding: 11px 22px;

    background: linear-gradient(
        135deg,
        #00bfff,
        #008fd4
    );

    border: 0;
    border-radius: 6px;

    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
    transition: .2s ease;
}

.pc-comments-form .form-submit .submit:hover {
    background: linear-gradient(
        135deg,
        #14c7ff,
        #009de8
    );

    transform: translateY(-1px);
}


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

@media (max-width: 600px) {

    .pc-comments-header {
        margin-bottom: 18px;
    }

    #pc-comments-message {
        padding: 15px;
    }

    .pc-comments-form {
        padding: 15px;
    }

    .pc-comments-form .comment-form-comment textarea {
        min-height: 130px;
    }

    .pc-comments-form .form-submit .submit {
        width: 100%;
    }
}
