/* Comment List Styling */
.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
}

.comments-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.comment-item {
    background: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0d6efd;
    transition: all 0.3s ease;
}

.comment-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-author {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.comment-author::before {
    content: '👤';
    margin-right: 0.5rem;
}

.comment-date {
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.comment-date::before {
    content: '📅';
    margin-right: 0.4rem;
}

.comment-body {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.no-comments {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-style: italic;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.no-comments::before {
    content: '💬';
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.comment-moderation {
    padding: 1rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    color: #856404;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .comment-item {
        padding: 1rem;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-body {
        font-size: 0.9rem;
    }
}
