/* ===== Comment Section ===== */
.comments-section {
    margin-top: 40px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.comments-section h2 {
    margin-bottom: 20px;
    color: #1e293b;
}
.comment-card {
    border-bottom: 1px solid #f1f5f9;
    padding: 15px 0;
}
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.comment-header strong {
    color: #1e293b;
}
.comment-date {
    font-size: 0.85rem;
    color: #64748b;
}
.comment-body {
    line-height: 1.6;
    color: #334155;
}
.no-comments {
    color: #94a3b8;
    font-style: italic;
}

/* Form */
.comment-form-wrapper {
    margin-top: 30px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}
.comment-form-wrapper h3 {
    margin-bottom: 15px;
    color: #1e293b;
}
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.form-group {
    flex: 1;
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 5px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: inherit;
}
.form-group textarea {
    resize: vertical;
}
.captcha-group input {
    width: 100px;
    display: inline-block;
}
.char-count {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 4px;
}
#commentMessage {
    margin-top: 15px;
    font-weight: 500;
}
#commentMessage.success {
    color: #16a34a;
}
#commentMessage.error {
    color: #dc2626;
}
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}