/* ---------------------------------------
   Comments Section
----------------------------------------*/

.comments-area {
    margin-top: 60px;
    padding: 40px;
    background: #f9fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

/* Title */
.comment-reply-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #111827;
}

/* Logged-in text */
.logged-in-as {
    font-size: 14px;
    margin-bottom: 20px;
    color: #6b7280;
}

.logged-in-as a {
    color: #111827;
    text-decoration: none;
    font-weight: 500;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

/* Labels */
.comment-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #374151;
}

/* Textarea */
.comment-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    min-height: 140px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.comment-form textarea:focus {
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
    outline: none;
}

/* Submit Button */
.form-submit {
    margin-top: 20px;
}

.comment-form .submit {
    background: #111827;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form .submit:hover {
    background: #1f2937;
    transform: translateY(-2px);
}

/* Cancel Reply */
#cancel-comment-reply-link {
    font-size: 13px;
    margin-left: 10px;
    color: #6b7280;
    text-decoration: none;
}

#cancel-comment-reply-link:hover {
    text-decoration: underline;
}

/* ---------------------------------------
   Responsive
----------------------------------------*/

@media (max-width: 768px) {
    .comments-area {
        padding: 25px;
    }

    .comment-reply-title {
        font-size: 20px;
    }

    .comment-form .submit {
        width: 100%;
    }
}
