/* ========================================
   COMMENT.CSS - MOBILE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .comment-section {
        padding: 0.8rem;
    }

    .comment-form {
        padding: 0.8rem;
    }

    .comment-form textarea {
        font-size: 0.75rem;
    }

    .comment {
        padding: 8px;
    }

    .comment-btn {
        font-size: 0.75rem;
    }

    #comment-content {
        font-size: 0.9rem;
    }

    .comment .user-icon {
        width: 35px;
        height: 35px;
    }
}

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

    .comment-form {
        padding: 0.5rem;
    }

    .comment-btn {
        font-size: 0.75rem;
    }

    .comment-form textarea {
        font-size: 0.75rem;
    }

    .comment {
        padding: 6px;
    }

    #comment-content {
        font-size: 0.85rem;
        padding-left: 60px;
    }

    .comment .user-icon {
        width: 30px;
        height: 30px;
    }
    .badge-overlay {
        top: -25px;
        right: -5px;
        width: 40px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .comment-section {
        padding: 0.3rem;
    }

    .comment-form {
        padding: 0.3rem;
    }

    .comment-btn {
        font-size: 0.75rem;
    }

    .comment-form textarea {
        font-size: 0.75rem;
    }

    .comment {
        padding: 4px;
    }

    #comment-content {
        font-size: 0.8rem;
        padding-left: 50px;
    }

    .comment .user-icon {
        width: 25px;
        height: 25px;
    }

    .comment-actions {
        flex-direction: column;
        gap: 0.3rem;
    }

    .show-all-btn {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    .badge-overlay {
        top: -25px;
        right: -5px;
        width: 40px;
        height: auto;
    }
}
