.user-comments-section {
    background-color: #1a1a1a;
    padding: 20px 20px 100px 20px;
    font-family: 'Inter', sans-serif;
    color: #fff;
}

.comments-container {
    max-width: 1100px;
    margin: 0 auto;
}

.comment-item {
    border-bottom: 1px solid #333;
    padding: 30px 0;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.user-stars {
    font-size: 18px;
    background: linear-gradient(119deg, #d0bf95, #a48446);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comment-date {
    font-size: 13px;
    color: #666;
}

.user-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.user-avatar-icon {
    width: 32px;
    height: 32px;
    color: #888;
}

.user-name {
    font-weight: 700;
    font-size: 15px;
}

.verified-badge {
    background-color: #242427;
    color: #d0bf95;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #3a3a3a;
    text-transform: uppercase;
}

.comment-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.comment-text {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
    margin: 0;
}

@media (max-width: 991px) {
    .user-comments-section {
        padding: 40px 0 60px 0;
    }

    .comments-container {
        padding: 0 20px;
    }

    .comment-item {
        padding: 25px 0;
    }

    .comment-title {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .user-comments-section {
        padding: 30px 0 40px 0;
    }

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

    .comment-date {
        font-size: 12px;
    }

    .user-row {
        gap: 8px;
        flex-wrap: wrap;
    }

    .comment-title {
        font-size: 16px;
    }

    .comment-text {
        font-size: 14px;
    }

    .verified-badge {
        font-size: 10px;
        padding: 2px 6px;
    }
}