/* =============================================
   COMMENTS
   ============================================= */
.comments-area {
    color: #ddd;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.comment-author.vcard {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comments-area h2,
.comments-area h3,
.comments-area h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 16px;
}

.comments-title {
    position: relative;
    padding-left: 12px;
}

.comments-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 3px;
    background: #ff6b00;
    border-radius: 3px;
}

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

.comment-list .comment {
    background: #1b2433;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 3px solid rgba(255, 107, 0, .2);
    transition: border-color .3s, box-shadow .3s;
}

.comment-list .comment:hover {
    border-left-color: #ff6b00;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .2);
}

.comment-list .comment-body {
    position: relative;
}

.comment-list .comment-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.comment-list .comment-meta img {
    border-radius: 50%;
    border: 1px solid rgba(255, 107, 0, .3);
    transition: border-color .3s;
}

.comment-list .comment:hover .comment-meta img {
    border-color: #ff6b00;
}

.comment-list .fn {
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    font-style: normal;
}

.comment-list .fn a {
    color: #fff;
    transition: color .3s;
}

.comment-list .fn a:hover {
    color: #ff6b00;
}

.comment-list .comment-metadata {
    color: #666;
    font-size: 11px;
    width: 100%;
}

.comment-list .comment-metadata a {
    color: #666;
    transition: color .3s;
}

.comment-list .comment-metadata a:hover {
    color: #ff6b00;
}

.comment-list .comment-content {
    color: #ccc;
    line-height: 1.6;
    font-size: 12px;
}

.comment-list .comment-content p {
    color: #ccc;
    margin-bottom: 6px;
}

.comment-list .comment-content p:last-child {
    margin-bottom: 0;
}

.comment-list .reply {
    margin-top: 8px;
}

.comment-list .reply a {
    color: #ff6b00;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
    transition: color .3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.comment-list .reply a:hover {
    color: #ff8c33;
}

.comment-list .reply a::before {
    content: '↩';
    font-size: 11px;
}

.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin: 16px 0;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.comment-navigation a {
    color: #ff6b00;
    font-weight: 600;
    font-size: 12px;
    transition: color .3s;
}

.comment-navigation a:hover {
    color: #ff8c33;
}

.no-comments {
    color: #666;
    text-align: center;
    padding: 10px;
    font-style: italic;
    font-size: 12px;
}

/* --- Comment Form --- */
.comment-respond {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.comment-respond .comment-reply-title {
    font-size: 14px;
    margin-bottom: 4px;
    position: relative;
    padding-left: 12px;
}

.comment-respond .comment-reply-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 3px;
    background: #ff6b00;
    border-radius: 3px;
}

.comment-respond .comment-reply-title a {
    color: #ff6b00;
    font-size: 11px;
    font-weight: 400;
    margin-left: 6px;
    transition: color .3s;
}

.comment-respond .comment-reply-title a:hover {
    color: #ff8c33;
}

.comment-respond .comment-notes {
    color: #666;
    font-size: 11px;
    margin-bottom: 14px;
}

.comment-respond .logged-in-as {
    color: #666;
    font-size: 12px;
    margin-bottom: 12px;
}

.comment-respond .logged-in-as a {
    color: #ff6b00;
    font-weight: 600;
    transition: color .3s;
}

.comment-respond .logged-in-as a:hover {
    color: #ff8c33;
}

.comment-respond label {
    color: #fff;
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 500;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    padding: 10px 14px;
    background: #0f1724;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    outline: none;
    margin-bottom: 12px;
    transition: border-color .3s, box-shadow .3s, background .3s;
}

.comment-respond input::placeholder,
.comment-respond textarea::placeholder {
    color: #555;
}

.comment-respond input:hover,
.comment-respond textarea:hover {
    border-color: rgba(255, 255, 255, .2);
    background: #131e2e;
}

.comment-respond input:focus,
.comment-respond textarea:focus {
    border-color: #ff6b00;
    box-shadow: 0 0 0 2px rgba(255, 107, 0, .1);
    background: #0f1724;
}

.comment-respond textarea {
    resize: vertical;
    min-height: 80px;
}

.comment-respond .form-submit {
    margin-top: 0;
}

.comment-respond .submit {
    padding: 10px 26px;
    background: #ff6b00;
    border-radius: 50px;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .35s ease;
    line-height: 1;
    display: inline-block;
}

.comment-respond .submit:hover {
    background: #ff8c33;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, .3);
}

.comment-respond .submit:active {
    transform: scale(.96);
}

.comment-respond .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 12px;
}

.comment-respond .comment-form-cookies-consent input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #ff6b00;
    width: auto;
}

.comment-respond .comment-form-cookies-consent label {
    color: #888;
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 0;
}

/* --- Nested comments --- */
.comment-list .children {
    list-style: none;
    padding: 0 0 0 16px;
    margin: 10px 0 0;
}

.comment-list .children .comment {
    background: #161f30;
}

.comment-list .children .comment .comment {
    background: #131e2e;
}

.comment-list .children .comment .comment .comment {
    background: #0f1724;
}

.comment-list .children .comment .comment .comment .comment {
    background: #0d141f;
}