/* Extracted from functions.php on 2026-06-10 (Phase 5: enqueue instead of inline). */
.recent-comment-item {
        padding: 16px 20px;
        border-bottom: 1px solid #f0f0f0;
        transition: background-color 0.2s ease;
    }
    
    .recent-comment-item:last-child {
        border-bottom: none;
    }
    
    .recent-comment-item:hover {
        background-color: #f8f9fa;
    }
    
    .comment-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
        font-size: 13px;
    }
    
    .comment-time {
        color: #666;
        font-weight: 500;
    }
    
    .comment-author {
        color: #1a73e8;
        font-weight: 600;
        direction: rtl;
    }
    
    .comment-content {
        margin: 0;
    }
    
    .comment-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }
    
    .comment-content p {
        margin: 0;
        line-height: 1.5;
        color: #333;
        font-size: 14px;
        direction: rtl;
        text-align: right;
    }
    
    .comment-link:hover .comment-content p {
        color: #1a73e8;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .recent-comments-widget {
            max-width: 100%;
            margin: 10px;
            border-radius: 8px;
        }
        
        .recent-comment-item {
            padding: 12px 16px;
        }
        
        .comment-meta {
            font-size: 16px;
        }
        
        .comment-content p {
            font-size: 18px;
        }
    }
    
    @media (max-width: 480px) {
        .recent-comment-item {
            padding: 10px 14px;
        }
        
        .comment-meta {
            align-items: flex-start;
            gap: 4px;
        }
    }
